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
queue.max_bytes.number and queue.max_bytes.units, which are not valid logstash pipeline settings, and generate the following warnings when logstash starts up:
{"level":"WARN","loggerName":"logstash.configmanagement.elasticsearchsource","timeMillis":1692039467779,"thread":"Agent thread","logEvent":{"message":"Ignoring unsupported or unknown pipeline settings 'queue.max_bytes.number'"}}
{"level":"WARN","loggerName":"logstash.configmanagement.elasticsearchsource","timeMillis":1692039467779,"thread":"Agent thread","logEvent":{"message":"Ignoring unsupported or unknown pipeline settings 'queue.max_bytes.units'"}}
Additionally, the correct value of queue.max_bytes - which is a concatenated version of the two values (eg 1024mb) is not serialized, meaning that the disk queue cannot be set using this method
The text was updated successfully, but these errors were encountered:
Java API client version
All versions of 8.x, since at least 7.15
Java version
Any
Elasticsearch Version
All versions of 8.x, since at least 7.15
Problem description
The logstash builder has methods
queueMaxBytesNumber
andqueueMaxBytesUnits
, which serializes ashttps://github.com/elastic/elasticsearch-java/blob/main/java-client/src/main/java/co/elastic/clients/elasticsearch/logstash/PipelineSettings.java#L159-L163
queue.max_bytes.number
andqueue.max_bytes.units
, which are not valid logstash pipeline settings, and generate the following warnings when logstash starts up:Additionally, the correct value of
queue.max_bytes
- which is a concatenated version of the two values (eg 1024mb) is not serialized, meaning that the disk queue cannot be set using this methodThe text was updated successfully, but these errors were encountered: