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
I am trying to setup filebeat (6.2) with kafka output using lz4 compression, but always getting error as ERR Invalid kafka configuration: kafka: invalid configuration (lz4 compression requires Version >= V0_10_0_0)
I have tried giving the version config both with and without quotes. Both resulted in same error.
Filebeat version: 6.2.1
Kafka Version: 0.11.0.0
I have tried with putting version as 0.10
In this case putting version without quote as version: 0.10
yielded an error Exiting: error initializing publisher: unknown/unsupported kafka version '0.1' accessing 'output.kafka' (source:'filebeat.yml')
If I use with quotes as version: "0.10"
gives the original error as ERR Invalid kafka configuration: kafka: invalid configuration (lz4 compression requires Version >= V0_10_0_0)
I had a look at kafka.go file at gihub and noticed the change in sarama version mapping from "0.10.2.1" onwards.
After looking up at sarama codebase tried using version as "0.10.2.0" still same error.
Looks like it is a bug of version mapping or bug at sarama library in the function IsAtLeast
The text was updated successfully, but these errors were encountered:
I am trying to setup filebeat (6.2) with kafka output using lz4 compression, but always getting error as
ERR Invalid kafka configuration: kafka: invalid configuration (lz4 compression requires Version >= V0_10_0_0)
My output configuration is:
I have tried giving the version config both with and without quotes. Both resulted in same error.
Filebeat version: 6.2.1
Kafka Version: 0.11.0.0
I have tried with putting version as 0.10
In this case putting version without quote as
version: 0.10
yielded an error
Exiting: error initializing publisher: unknown/unsupported kafka version '0.1' accessing 'output.kafka' (source:'filebeat.yml')
If I use with quotes as
version: "0.10"
gives the original error as
ERR Invalid kafka configuration: kafka: invalid configuration (lz4 compression requires Version >= V0_10_0_0)
I had a look at kafka.go file at gihub and noticed the change in sarama version mapping from "0.10.2.1" onwards.
After looking up at sarama codebase tried using version as "0.10.2.0" still same error.
Looks like it is a bug of version mapping or bug at sarama library in the function IsAtLeast
The text was updated successfully, but these errors were encountered: