Adds connection pooling

This commit is contained in:
Karl Southern 2015-11-14 20:04:16 +00:00
parent 4994cd810b
commit 362e9ad0a0
7 changed files with 73 additions and 32 deletions

1
.gitignore vendored
View File

@ -2,4 +2,3 @@
Gemfile.lock Gemfile.lock
Gemfile.bak Gemfile.bak
.bundle .bundle
vendor

View File

@ -0,0 +1,5 @@
# encoding: utf-8
require 'logstash/environment'
root_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
LogStash::Environment.load_runtime_jars! File.join(root_dir, "vendor")

View File

@ -3,6 +3,7 @@ require "logstash/outputs/base"
require "logstash/namespace" require "logstash/namespace"
require "stud/buffer" require "stud/buffer"
require "java" require "java"
require "logstash-output-jdbc_jars"
class LogStash::Outputs::Jdbc < LogStash::Outputs::Base class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
# Adds buffer support # Adds buffer support
@ -10,15 +11,31 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
config_name "jdbc" config_name "jdbc"
# Driver class # Driver class - No longer required
config :driver_class, :validate => :string config :driver_class, :obsolete => true
# connection string # Where to find the jar
# Defaults to not required, and to the original behaviour
config :driver_jar_path, :validate => :string, :required => false
# jdbc connection string
config :connection_string, :validate => :string, :required => true config :connection_string, :validate => :string, :required => true
# jdbc username - optional, maybe in the connection string
config :username, :validate => :string, :required => false
# jdbc password - optional, maybe in the connection string
config :password, :validate => :string, :required => false
# [ "insert into table (message) values(?)", "%{message}" ] # [ "insert into table (message) values(?)", "%{message}" ]
config :statement, :validate => :array, :required => true config :statement, :validate => :array, :required => true
# Number of connections in the pool to maintain
config :max_pool_size, :validate => :number, :default => 5
# Connection timeout
config :connection_timeout, :validate => :number, :default => 2800
# We buffer a certain number of events before flushing that out to SQL. # We buffer a certain number of events before flushing that out to SQL.
# This setting controls how many events will be buffered before sending a # This setting controls how many events will be buffered before sending a
# batch of events. # batch of events.
@ -40,7 +57,7 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
# Maximum number of repeating (sequential) exceptions, before we stop retrying # Maximum number of repeating (sequential) exceptions, before we stop retrying
# If set to < 1, then it will infinitely retry. # If set to < 1, then it will infinitely retry.
config :max_repeat_exceptions, :validate => :number, :default => 5 config :max_repeat_exceptions, :validate => :number, :default => 4
# The max number of seconds since the last exception, before we consider it # The max number of seconds since the last exception, before we consider it
# a different cause. # a different cause.
@ -49,34 +66,21 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
public public
def register def register
@logger.info("JDBC - Starting up") @logger.info("JDBC - Starting up")
if ENV['LOGSTASH_HOME'] load_jar_files!
jarpath = File.join(ENV['LOGSTASH_HOME'], "/vendor/jar/jdbc/*.jar")
else
jarpath = File.join(File.dirname(__FILE__), "../../../vendor/jar/jdbc/*.jar")
end
@logger.debug("JDBC - jarpath", path: jarpath) @pool = Java::ComZaxxerHikari::HikariDataSource.new
@pool.setJdbcUrl(@connection_string)
jars = Dir[jarpath] @pool.setUsername(@username) if @username
raise Exception.new("JDBC - No jars found in jarpath. Have you read the README?") if jars.empty? @pool.setPassword(@password) if @password
jars.each do |jar| @pool.setMaximumPoolSize(@max_pool_size)
@logger.debug("JDBC - Loaded jar", :jar => jar) @pool.setConnectionTimeout(@connection_timeout)
require jar
end
import @driver_class
driver = Object.const_get(@driver_class[@driver_class.rindex('.') + 1, @driver_class.length]).new
@connection = driver.connect(@connection_string, java.util.Properties.new)
@logger.debug("JDBC - Created connection", :driver => driver, :connection => @connection)
if (@flush_size > 1000) if (@flush_size > 1000)
@logger.warn("JDBC - Flush size is set to > 1000. May have performance penalties, depending on your SQL engine.") @logger.warn("JDBC - Flush size is set to > 1000")
end end
@repeat_exception_count = 0 @repeat_exception_count = 0
@ -101,7 +105,9 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
end end
def flush(events, teardown=false) def flush(events, teardown=false)
statement = @connection.prepareStatement(@statement[0]) connection = @pool.getConnection()
statement = connection.prepareStatement(@statement[0])
events.each do |event| events.each do |event|
next if @statement.length < 2 next if @statement.length < 2
@ -132,6 +138,7 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
begin begin
@logger.debug("JDBC - Sending SQL", :sql => statement.toString()) @logger.debug("JDBC - Sending SQL", :sql => statement.toString())
statement.executeBatch() statement.executeBatch()
statement.close()
rescue => e rescue => e
# Raising an exception will incur a retry from Stud::Buffer. # Raising an exception will incur a retry from Stud::Buffer.
# Since the exceutebatch failed this should mean any events failed to be # Since the exceutebatch failed this should mean any events failed to be
@ -140,9 +147,9 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
if e.getNextException() != nil if e.getNextException() != nil
@logger.warn("JDBC - Exception. Will automatically retry", :exception => e.getNextException()) @logger.warn("JDBC - Exception. Will automatically retry", :exception => e.getNextException())
end end
ensure
connection.close();
end end
statement.close()
end end
def on_flush_error(e) def on_flush_error(e)
@ -165,8 +172,36 @@ class LogStash::Outputs::Jdbc < LogStash::Outputs::Base
def teardown def teardown
buffer_flush(:final => true) buffer_flush(:final => true)
@connection.close() @pool.close()
super super
end end
private
def load_jar_files!
# Load jar from driver path
unless @driver_jar_path.nil?
raise Exception.new("JDBC - Could not find jar file at given path. Check config.") unless File.exists? @driver_jar_path
require @driver_jar_path
return
end
# Revert original behaviour of loading from vendor directory
# if no path given
if ENV['LOGSTASH_HOME']
jarpath = File.join(ENV['LOGSTASH_HOME'], "/vendor/jar/jdbc/*.jar")
else
jarpath = File.join(File.dirname(__FILE__), "../../../vendor/jar/jdbc/*.jar")
end
@logger.debug("JDBC - jarpath", path: jarpath)
jars = Dir[jarpath]
raise Exception.new("JDBC - No jars found in jarpath. Have you read the README?") if jars.empty?
jars.each do |jar|
@logger.debug("JDBC - Loaded jar", :jar => jar)
require jar
end
end
end # class LogStash::Outputs::jdbc end # class LogStash::Outputs::jdbc

View File

@ -1,6 +1,6 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = 'logstash-output-jdbc' s.name = 'logstash-output-jdbc'
s.version = "0.1.4" s.version = "0.2.0-rc.1"
s.licenses = [ "Apache License (2.0)" ] s.licenses = [ "Apache License (2.0)" ]
s.summary = "This plugin allows you to output to SQL, via JDBC" s.summary = "This plugin allows you to output to SQL, via JDBC"
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program" s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
@ -19,6 +19,8 @@ Gem::Specification.new do |s|
# Gem dependencies # Gem dependencies
s.add_runtime_dependency "logstash-core", ">= 2.0.0.beta2", "< 3.0.0" s.add_runtime_dependency "logstash-core", ">= 2.0.0.beta2", "< 3.0.0"
s.add_runtime_dependency 'stud'
s.add_runtime_dependency "logstash-codec-plain" s.add_runtime_dependency "logstash-codec-plain"
s.add_development_dependency "logstash-devutils" s.add_development_dependency "logstash-devutils"
end end

Binary file not shown.

Binary file not shown.

Binary file not shown.