logstash-input-redis 3.7.0 → 3.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0be6dfe6d1465214b44d17ae4a45482ba364735abb7032fa26e37660845aaba8
4
- data.tar.gz: d68f634cac89442c536f8f57713354af640f61dc0cc72561ba0972503c9b2d10
3
+ metadata.gz: 1a4a6ff31319272301133c28c4d64af5e146c457465f00e323b5146bacfb3283
4
+ data.tar.gz: c3fc86c94903ecdd46cdbc7b9de16f47dac61b6b3f4fee1ff6e63b32f8875087
5
5
  SHA512:
6
- metadata.gz: 7c662434d97dc7d4811f062ef9dfd3c0d6fe1eec8083f27b7f0a0638e35e5ad7ef10a5b322439ed5df5bf45acaa9fff645bf9592cd5a481b9c8a9d753cd022c6
7
- data.tar.gz: f96f01c43dfaaa0843645fb737af52408709c27b962231b10781353951c849aa8b83bad85dc4a92fc2b76c5731bca1d01bb5e1998aa2e79799744078b64b8c42
6
+ metadata.gz: 9a807f70fae04f7b2663d94b296e440804b0cdbea7ed92768bbf10adc81355f130da7405a7e55006adc5c1beaabeedc322dd76b7a3ae0247159b8b55f9fed680
7
+ data.tar.gz: d666556e4ddb9e4d46dc8598c29cff4c7681973a07c33190e5972d1c2134105cb4933a4866d168f45f191ae7785040a175e04f773254a4f83b65fe83a6f2d513
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.7.1
2
+ - Add documentation to "threads" option [#95](https://github.com/logstash-plugins/logstash-input-redis/pull/95)
3
+
1
4
  ## 3.7.0
2
5
  - Fix: better (Redis) exception handling [#89](https://github.com/logstash-plugins/logstash-input-redis/pull/89)
3
6
  - Test: start running integration specs on CI
data/docs/index.asciidoc CHANGED
@@ -156,7 +156,10 @@ Enable SSL support.
156
156
  * Value type is <<number,number>>
157
157
  * Default value is `1`
158
158
 
159
+ Number of instances of the input to start, each on its own thread.
160
+ Increase from one to improve concurrency in consuming messages from Redis.
159
161
 
162
+ NOTE: Increasing the number of threads when consuming from a channel will result in duplicate messages since a `SUBSCRIBE` delivers each message to all subscribers.
160
163
 
161
164
  [id="plugins-{type}s-{plugin}-timeout"]
162
165
  ===== `timeout`
@@ -169,4 +172,4 @@ Initial connection timeout in seconds.
169
172
  [id="plugins-{type}s-{plugin}-common-options"]
170
173
  include::{include_path}/{type}.asciidoc[]
171
174
 
172
- :default_codec!:
175
+ :default_codec!:
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-redis'
4
- s.version = '3.7.0'
4
+ s.version = '3.7.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Reads events from a Redis instance"
7
7
  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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.0
4
+ version: 3.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-04 00:00:00.000000000 Z
11
+ date: 2024-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -117,8 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  requirements: []
120
- rubyforge_project:
121
- rubygems_version: 2.6.13
120
+ rubygems_version: 3.2.33
122
121
  signing_key:
123
122
  specification_version: 4
124
123
  summary: Reads events from a Redis instance