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
The package terafoundation_kafka_connector installs node-rdkafka, and ssl will not be enabled if the build image does not include libssl-dev.
The asset will not give a warning that ssl is not enabled in node-rdkafka when registering a job uses ssl.
The error on the teraslice worker is: SSL handshake failed
message: [thrd:ssl://127.0.0.1:9099/bootstrap]: ssl://127.0.0.1:9099/bootstrap: SSL handshake failed: No further error information available (after 40ms in state SSL_HANDSHAKE, 1 identical error(s) suppressed)
The error on the kafka broker is:
Failed authentication with /127.0.0.1 (channelId=127.0.0.1:9099-127.0.0.1:5817-5489) (SSL handshake failed)
To enabled ssl, installation of libssl-dev should added to terascope/workflows used by kafka-assets.
terafoundation_kafka_connector
installsnode-rdkafka
, and ssl will not be enabled if the build image does not includelibssl-dev
.node-rdkafka
when registering a job uses ssl.SSL handshake failed
To enabled ssl, installation of
libssl-dev
should added to terascope/workflows used bykafka-assets
.asset-build-and-publish.yml#L27 add
run: sudo apt-get -y install libssl-dev
before line 27run: sudo apt-get -y install libssl-dev
before line 26node-rdkafka
The text was updated successfully, but these errors were encountered: