logstash-output-kinesis 1.5.1-java → 1.6.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDE4OTkzNDRlNzYzN2FiYThkMDZkYTgwZWViYTdmY2UxZDkzN2Y5ZQ==
4
+ NjhjNTE1ZmU1ZmFhNjQ5MmFhYzU4YmRlNDlmOTRlMmQxYmM2MDBjYQ==
5
5
  data.tar.gz: !binary |-
6
- MWFmYjg5NjdiNGMyOTEzODIzNTExMjAzNGYwOGY5MTE0OGJkMGI4Yg==
6
+ OTc0YzRmMzM0YzZiMDJlNDFhM2UwMTMzOGE2ODk5ODg4MzM2MDNmMQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ODNjZmFhMjllNjhmMjI2MDcwNDNiZGUxY2JiNjc1YWMzNTI1YzdlNzhjODg5
10
- MzgyYzdhYjllNzNlMzQ5OGY1ZjViOGVhMzczZWE4YjQ5NDI1ZjMyYTU0MDYx
11
- OGFlNTI0YTFlZjkwODFkMzM1NDQ4YjkzNjAyMGQzMTYyYzRiNWU=
9
+ M2VjMjNjMWFjMTJjOTBkNDgzYTQyYTE4YjAwM2I5MjhiMGNkODdjOWRmMTRi
10
+ ZmFlZGRjODBlNTk2NmIxMTBjMDYzZjg1NTliODhlMjkwODRhZjI4MmU2N2My
11
+ MTg5YjMwZWQ1NzRlYmE4ZDJmZmNhMDExOTZkZmYyNDg5NjdlZjY=
12
12
  data.tar.gz: !binary |-
13
- MzhlNWFhYzk3MGQyNjc3YjQ3OGEwYWNkYmUyMGFiNjM4MGM1MWY1Nzk3OGQ5
14
- OTdhMTliNzRlYTE3MzUxMzBkM2I0MDlmMTYzYzk0ZWU1ZGQ0YWE0NDhjMGFj
15
- MWExMGNiZGM2MzMwMDE0ZTc5YWNmOWY4ZGVlNTMzMTg2MzBlZjA=
13
+ NDU0ZGFlZjE4YzJjZjBiNGQzOTAyYWFmZDEwM2RhMTA0YmVlMzg5NGE4Mjkx
14
+ MWYzZWU4MTFhYWU0YjNjZTlmYzVjZTk2Mzc1NmZmNjljYWQzMWFkNmEzMDg0
15
+ MTA0MzhlNGUxN2MxYmFkNTUwM2ViNDc0NmI2NmY4N2ZhOGJkMjM=
data/README.md CHANGED
@@ -132,6 +132,19 @@ output {
132
132
  }
133
133
  ```
134
134
 
135
+ ### Backpressure
136
+
137
+ The KPL library does not force any backpressure. This means if Kinesis is unavailable or throttling, KPL will happily accept records until it chews up all available memory on your machine. This plugin has a default backpressure mechanism - if there's more than 1000 pending records to be written to Kinesis, then further log records will block. This will cause Logstash to block further processing until everything is flushed out to Kinesis. I know that sounds lame, but it's better than the Linux OOM killer stepping in and breaking all your shit, no?
138
+
139
+ Anyway, if you want to throw more memory / CPU cycles at buffering lots of stuff before it makes it to Kinesis, you can control the high-watermark:
140
+
141
+ ```nginx
142
+ output {
143
+ kinesis {
144
+ max_pending_records => 10000 # I sure as hell hope you know what you're doing.
145
+ }
146
+ }
147
+ ```
135
148
 
136
149
  ## Known Issues
137
150
 
@@ -1,3 +1,3 @@
1
1
  module LogstashOutputKinesis
2
- VERSION = "1.5.1"
2
+ VERSION = "1.6.0"
3
3
  end
@@ -20,6 +20,9 @@ class LogStash::Outputs::Kinesis < LogStash::Outputs::Base
20
20
  config :event_partition_keys, :validate => :array, :default => []
21
21
  # If true, a random partition key will be assigned to each log record
22
22
  config :randomized_partition_key, :validate => :boolean, :default => false
23
+ # If the number of records pending being written to Kinesis exceeds this number, then block
24
+ # Logstash processing until they're all written.
25
+ config :max_pending_records, :validate => :number, :default => 1000
23
26
 
24
27
  # An AWS access key to use for authentication to Kinesis and CloudWatch
25
28
  config :access_key, :validate => :string
@@ -191,6 +194,13 @@ class LogStash::Outputs::Kinesis < LogStash::Outputs::Base
191
194
  rescue => e
192
195
  @logger.warn("Error writing event to Kinesis", :exception => e)
193
196
  end
197
+
198
+ num = @producer.getOutstandingRecordsCount()
199
+ if num > @max_pending_records
200
+ @logger.warn("Kinesis is too busy - blocking until things have cleared up")
201
+ @producer.flushSync()
202
+ @logger.info("Okay - I've stopped blocking now")
203
+ end
194
204
  end
195
205
  end
196
206
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-kinesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.6.0
5
5
  platform: java
6
6
  authors:
7
7
  - Sam Day
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-06 00:00:00.000000000 Z
11
+ date: 2015-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core