http://qs1969.pair.com?node_id=11111392


in reply to Connect to Kafka server over SSL

Hi

Maybe this helps

https://cwiki.apache.org/confluence/display/KAFKA/Clients says https://github.com/edenhill/librdkafka which is

https://metacpan.org/pod/distribution/Kafka-Librd/bin/kafka_consumer.pl

cpan finds Net::Kafka This module provides Perl bindings to librdkafka C client library. It is heavily inspired by Kafka::Librd module originally developed by Pavel Shaydo.

which says read https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md

builtin.features tells you if you got ssl support ... bunch of other "ssl" options documented

... ssl.key.location * low Path to client's private ke +y (PEM) used for authentication. Type: string ssl.key.password * low Private key passphrase (for + use with ssl.key.location and set_ssl_cert()) ...

Some of them look familiar from kafka_consumer.pl

Replies are listed 'Best First'.
Re^2: Connect to Kafka server over SSL
by cLive ;-) (Prior) on Jan 14, 2020 at 03:13 UTC
    Thanks - I'll take a look in the morning with a clear head.