You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jdbc_static filter: configure connection pool (#187)
* jdbc_static filter: configure connection pool
By increasing the size of the connection pool from the Sequel-default 4 to 16,
we increase the parallelism of pipelines that are using this filter by four-
fold, reducing the situations where a pipeline's total throughput is
constrained by this plugin's connection pool to the internal Derby DB.
We also increase the pool timeout from the Sequel-default 5 seconds to 30
seconds, so that failures to immediately acquire a connection don't result in
failed lookups.
* Update CHANGELOG.md with link to PR
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
## 5.6.1
2
+
- Fixes an issue where the `jdbc_static` filter's throughput was artificially limited to 4 concurrent queries, causing the plugin to become a bottleneck in pipelines with more than 4 workers. Each instance of the plugin is now limited to 16 concurrent queries, with increased timeouts to eliminate enrichment failures [#187](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/187)
3
+
1
4
## 5.6.0
2
5
- Support other rufus scheduling options in JDBC Input [#183](https://github.com/logstash-plugins/logstash-integration-jdbc/pull/183)
Copy file name to clipboardExpand all lines: logstash-integration-jdbc.gemspec
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Gem::Specification.newdo |s|
2
2
s.name='logstash-integration-jdbc'
3
-
s.version='5.6.0'
3
+
s.version='5.6.1'
4
4
s.licenses=['Apache License (2.0)']
5
5
s.summary="Integration with JDBC - input and filter plugins"
6
6
s.description="This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
0 commit comments