Error: Invalid value "sasl_ssl" for configuration property "security.protocol"

6.6k views Asked by At

I'm using node-rdkafka to connect to IBM MessageHub with the following options:

var options = {
  // 'debug': 'all',
  'metadata.broker.list': brokers,
  'security.protocol': 'sasl_ssl',
  'ssl.ca.location': '/etc/ssl/certs',
  'sasl.mechanisms': 'PLAIN',
  'sasl.username': username,
  'sasl.password': password,
  'api.version.request': true,
  'broker.version.fallback': '0.10.2.1',
  'log.connection.close': false,
  'dr_msg_cb': true
}

The client is running on IBM Kubernetes Service pod (Ubuntu).
Please advice. Thanks.

1

There are 1 answers

0
Mickael Maison On BEST ANSWER

It means you were missing some dependencies (SSL or SASL) when you installed/built node-rdkafka.

On ubuntu make sure you have libsasl2-dev, libsasl2-modules and libssl-dev installed.

You can check our node-rdkafka sample Dockerfile for a working example.