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 +8 -8
- data/README.md +13 -0
- data/lib/logstash-output-kinesis/version.rb +1 -1
- data/lib/logstash/outputs/kinesis.rb +10 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
N2E1OTI0M2E4ODlmNjNmMDRhYWRjOThhNmZkMzI2M2NjOGU2Njc5YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YzczY2JjZWVjMzc0OThkYmNjYzAyZDk5NzUyYTQzMWE5NTgwZWNkNw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzI4Mzk3ZWQxZTdjZDBlNDhjMTk4YWY1ZmM0NDA4ODdkYmFhNmVjMTEzYzZm
|
10
|
+
YjI4NjIyYjE2NjQ5MzkyNmUxMmYwMjRmMzAwZGMxZTNjZWZjYjUzNDU1Yjgz
|
11
|
+
ZTA3OTQyYWI2OGRkYTRhNDRlODZhYWMzYzMwNmE1OTIzZTJjMjA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
|
@@ -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
|
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
|
+
date: 2015-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstash-core
|