Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 904 Bytes

File metadata and controls

29 lines (25 loc) · 904 Bytes
date 2020-07-13
title The `elasticsearch` sink `compression` option now defaults to `none`
description Compression is not supported by all Elasticsearch service providers
authors
binarylogic
hide_on_release_notes false
pr_numbers
2219
release 0.9.0
badges
type domains sinks
breaking change
sinks
elasticsearch

To optimize throughput we originally defaulted the elasticsearch sink compression option to gzip. It is our philosophy that Vector's defaults should optimize performance and throughput, but not at the expense of causing errors. Unfortunately, AWS-hosted Elasticsearch does not support compression, and therefore we've made this feature opt-in.

Upgrade Guide

Upgrading is easy. Add the following if you want to enabled Gzip compression:

 [sinks.es]
   type = "elasticsearch"
+  compression = "gzip"