logstash-output-kinesis 2.0.1-java → 2.1.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
- NWYxZmNmMWM3MjYxNjczM2JiMjRjZTQ3MDZlOTJkMWU1MzcyYzVmMw==
4
+ N2E1OTI0M2E4ODlmNjNmMDRhYWRjOThhNmZkMzI2M2NjOGU2Njc5YQ==
5
5
  data.tar.gz: !binary |-
6
- NzczNzJlMzQ3NTU2Y2YxNTI4MDY5OWU3YWVlY2QyYmYxZjQ3OTZjOQ==
6
+ YzczY2JjZWVjMzc0OThkYmNjYzAyZDk5NzUyYTQzMWE5NTgwZWNkNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDUwNTBjZDFjNmM5NjI3NjBhZjRmYWUxMDVmMWExMWY2ODAxZDc2ODljYzBl
10
- MzA0Njc5Mzc4NDY5ZTI3MjFiOTU1ODRkMDBiODNkYTFiYzFhMjZhNjEzNGMy
11
- NTMyZWU4MTU1MzQxMjE3NWVhMjgyNTQ0YmUwNjFhZGQ4ODk4Yzc=
9
+ YzI4Mzk3ZWQxZTdjZDBlNDhjMTk4YWY1ZmM0NDA4ODdkYmFhNmVjMTEzYzZm
10
+ YjI4NjIyYjE2NjQ5MzkyNmUxMmYwMjRmMzAwZGMxZTNjZWZjYjUzNDU1Yjgz
11
+ ZTA3OTQyYWI2OGRkYTRhNDRlODZhYWMzYzMwNmE1OTIzZTJjMjA=
12
12
  data.tar.gz: !binary |-
13
- NWE4NDA2NzZkN2NjNTUzMzc3MmE2NDJhMTNmZmFhZmY3MGE4ZGJlNGU4MjBm
14
- MTM2ODE0Mzg1NGY1OGMxZDcxMzE5YWU0OWM4NWZkMTMyNDE3NmFlZGUzMjM5
15
- NTA2ODYzNWExZmFhMWZlMWU2NGMxMzVhZjhmNzZhZjFhMWY2ZWY=
13
+ ZTJjODczYTVmOGRlNDk2MzkwZDI4MDIzODY5ZmQzOGMyN2IxOTQ3YmQ4OGFm
14
+ MjRmZWY4MmExYzljZGM2OWJhYzVjYjJhNGM5OTlhNDc2MWJiNzYzMTQ0Y2Yy
15
+ MWQxNDI0M2ZlYmNhYTdkNjE0YjBiZTZhZDg2NWJlZTViOGZhNTI=
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 = "2.0.1"
2
+ VERSION = "2.1.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
@@ -190,6 +193,13 @@ class LogStash::Outputs::Kinesis < LogStash::Outputs::Base
190
193
  rescue => e
191
194
  @logger.warn("Error writing event to Kinesis", :exception => e)
192
195
  end
196
+
197
+ num = @producer.getOutstandingRecordsCount()
198
+ if num > @max_pending_records
199
+ @logger.warn("Kinesis is too busy - blocking until things have cleared up")
200
+ @producer.flushSync()
201
+ @logger.info("Okay - I've stopped blocking now")
202
+ end
193
203
  end
194
204
  end
195
205
 
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: 2.0.1
4
+ version: 2.1.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