I'm setting up a StreamConsumer and I'm doing:
let consumer : StreamConsumer = ClientConfig::new()
.set("compression.type", "snappy")
.set("security.protocol", "SASL_PLAINTEXT")
.set("sasl.mechanisms", "SCRAM-SHA-512")
...
.create()
.unwrap()
I'm using version 0.36 with the following features: cmake-build, ssl, zstd and libz on Windows 11.
When I connect to the kafka broker, I'm seeing, "KafkaError (Client config error: Unsupported value "snappy" for configuration property "compression.codec": snappy not enabled at buildtime compression.type snappy.)
Can you help me figure out what's going on?