We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment Information
Steps to Reproduce Setup Node JS - node-rdkafka env for kafka consumer in mac OS 15 Run consumer having below configurations
Error message: Unsupported value "sasl_ssl" for configuration property "security.protocol": OpenSSL not available at build time
node-rdkafka Configuration Settings 'metadata.broker.list': ['localhost:9004'], 'security.protocol': 'sasl_ssl', 'ssl.ca.location': '', 'sasl.mechanism': 'PLAIN', 'sasl.username': "", 'sasl.password': "", 'client.id': "myclient", 'group.id': "mygroup"
Additional context Unsupported value "sasl_ssl" for configuration property "security.protocol": OpenSSL not available at build time
The text was updated successfully, but these errors were encountered:
Resolved it by adding new openssl path
export CPPFLAGS=-I/opt/homebrew/Cellar/openssl@3/3.4.0/include export LDFLAGS=-L/opt/homebrew/Cellar/openssl@3/3.4.0/lib
And created a readme update PR: #1112
Sorry, something went wrong.
Resolved it by adding new openssl path export CPPFLAGS=-I/opt/homebrew/Cellar/openssl@3/3.4.0/include export LDFLAGS=-L/opt/homebrew/Cellar/openssl@3/3.4.0/lib And created a readme update PR: #1112
You can also try Confluent's Javascript Kafka library as an alternative option. The API is backwards compatible.
No branches or pull requests
Environment Information
Steps to Reproduce
Setup Node JS - node-rdkafka env for kafka consumer in mac OS 15
Run consumer having below configurations
Error message:
Unsupported value "sasl_ssl" for configuration property "security.protocol": OpenSSL not available at build time
node-rdkafka Configuration Settings
'metadata.broker.list': ['localhost:9004'],
'security.protocol': 'sasl_ssl',
'ssl.ca.location': '',
'sasl.mechanism': 'PLAIN',
'sasl.username': "",
'sasl.password': "",
'client.id': "myclient",
'group.id': "mygroup"
Additional context
Unsupported value "sasl_ssl" for configuration property "security.protocol": OpenSSL not available at build time
The text was updated successfully, but these errors were encountered: