Confluent-kafka-dotnet: Examples of various security configurations

Created on 15 Aug 2018  路  5Comments  路  Source: confluentinc/confluent-kafka-dotnet

It would be good to have some copy/paste security config examples in .net. Also, some 'recipes' for converting java configuration into the equivalent .net configuration.

For now:

I've done some draft notes on SSL here: https://github.com/mhowlett/confluent-kafka-dotnet/tree/security/examples/Security

@petersonnek has some good information on kerberos over in #384

librdkafka docs are here:

MEDIUM enhancement

Most helpful comment

Also to the mix: production grade configuration: (how to handle errors, which errors are recoverable and which are not)
Production reliability configuration (how to configure at-least-once and guarantied order delivery). Very important because by default configuration can drop messages or deliver out of order.

All 5 comments

Also to the mix: production grade configuration: (how to handle errors, which errors are recoverable and which are not)
Production reliability configuration (how to configure at-least-once and guarantied order delivery). Very important because by default configuration can drop messages or deliver out of order.

@vchekan - noted, we agree.

this is still open and wondering if there will be any more examples and progress ?

@mhowlett we are building .net core Kafka client that can be run on Windows and Linux. What is the best approach for SASL+Kerberos security implementation?

Can we create keytab on Windows?

confluent-kafka-dotnet (through the underyling librdkafka library) currently only supports GSSAPI through SSPI with the currently logged on user's credentials, keytabs are not supported.

@edenhill does confluent-kafka-dotnet support Kerberos Cache file instead of keytab file for GSSAPI authentication?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

andreas-soroko picture andreas-soroko  路  3Comments

ietvijay picture ietvijay  路  3Comments

farodin91 picture farodin91  路  3Comments

keggster101020 picture keggster101020  路  4Comments

mohoch1 picture mohoch1  路  3Comments