I am using https://github.com/Blizzard/node-rdkafka for my node.js application where I want to connect to Kafka usingkeytab file and below mechanism.
'security.protocol':'sasl_plaintext',
'sasl.mechanisms':'GSSAPI',
I don't have kinit in my application server and java based applications are working without using kinit.
We used jass.config
in Java to provide details like renewTGT=false doNotPrompt=true useKeyTab=true
Is there similar config in node-rdkafka which can be used and we can avoid kinit command?