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
Steps to Reproduce
Initialize Kafka producer using zstd codec
const producer = new Producer({
'compression.codec': 'zstd',
...
});
Running the Node js application, and got the following error
[server] ERROR 2023-12-07T05:02:58.908Z [src/index.ts] App has failed to startError: Unsupported value "zstd" for configuration property "compression.codec": libzstd not available at build time
[server] Error: Unsupported value "zstd" for configuration property "compression.codec": libzstd not available at build time
node-rdkafka Configuration Settings
No customization
Additional context
ZSTD installed on my machine using homebrew, and zstd library and include can be found at /opt/homebrew/lib and /opt/homebrew/include, respectively
I tried to rebuild RD kafka using npm rebuild node-rdkafka, but it does not help
The text was updated successfully, but these errors were encountered:
the paths in my env are different, you might want to adjust accordingly, If these directories /opt/homebrew/lib/zstd and /opt/homebrew/include/zstd exist in your system. try
Environment Information
Steps to Reproduce
Initialize Kafka producer using zstd codec
Running the Node js application, and got the following error
node-rdkafka Configuration Settings
No customization
Additional context
/opt/homebrew/lib
and/opt/homebrew/include
, respectivelynpm rebuild node-rdkafka
, but it does not helpThe text was updated successfully, but these errors were encountered: