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
This commit deprecated `http_compression` in favor of `compression_level`. http_compression `false` mapped to compression_level `0`, and `true` mapped to `1`. The default setting has changed from disabling compression to enabling compression at level 1 (best speed) Co-authored-by: Edmo Vamerlatti Costa <11836452+edmocosta@users.noreply.github.com>
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
+
## 11.17.0
2
+
- Added support to http compression level. Deprecated `http_compression` in favour of `compression_level` and enabled compression level 1 by default. [#1148](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1148)
3
+
1
4
## 11.16.0
2
5
- Added support to Serverless Elasticsearch [#1445](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1145)
Copy file name to clipboardExpand all lines: docs/index.asciidoc
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -277,9 +277,9 @@ not reevaluate its DNS value while the keepalive is in effect.
277
277
==== HTTP Compression
278
278
279
279
This plugin always reads compressed responses from {es}.
280
-
It _can be configured_ to send compressed bulk requests to {es}.
280
+
By default, it sends compressed bulk requests to {es}.
281
281
282
-
If you are concerned about bandwidth, you can enable <<plugins-{type}s-{plugin}-http_compression>> to trade a small amount of CPU capacity for a significant reduction in network IO.
282
+
If you are concerned about bandwidth, you can set a higher <<plugins-{type}s-{plugin}-compression_level>> to trade CPU capacity for a reduction in network IO.
283
283
284
284
==== Authentication
285
285
@@ -310,6 +310,7 @@ This plugin supports the following configuration options plus the
Copy file name to clipboardExpand all lines: logstash-output-elasticsearch.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-output-elasticsearch'
3
-
s.version='11.16.0'
3
+
s.version='11.17.0'
4
4
s.licenses=['apache-2.0']
5
5
s.summary="Stores logs in Elasticsearch"
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