Conduktor
Home
Download
Contact
Blog
Search…
Conduktor Documentation
Learn Apache Kafka with Conduktor
Conduktor First Steps
Installing Conduktor
Sign in to Conduktor
Licenses & Activations
Login Troubleshooting & FAQ
Account Management
Account Management
Kafka Cluster Connection
Setting up a connection to Kafka
Connecting to Kafka running under Docker
Connect to Amazon MSK
Connecting to a Secure Kafka
Understanding Connectivity Issues
Connecting to Kafka running on Windows WSL 2
Apache Kafka-wire compatible solutions
Starting a local Kafka cluster in seconds
Import/Export configurations
Features
How to Consume data?
How to Produce data?
Brokers Management
Topics Management
Consumer Groups Management
Schema Registry
Kafka Connect
Kafka Streams
ksqlDB: Streaming with SQL
Kafka Security (ACLs)
Monitoring
Miscellaneous
Configuring Conduktor
Data Security
No Internet Connection
Frequently Asked Questions
Powered By
GitBook
Apache Kafka-wire compatible solutions
While we don't officially support alternatives solutions to Apache Kafka, they follow the same protocol as Apache Kafka so they should work.
Azure Event Hubs
Event Hubs is a fully managed, cloud-native service provided on Azure.
To configure Azure Event Hubs, follow their guide:
https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-for-kafka-ecosystem-overview
The concepts are similar:
Kafka Concept
Event Hubs Concept
Cluster
Namespace
Topic
Event Hub
Partition
Partition
Consumer Group
Consumer Group
Offset
Offset
Connecting to Event Hubs in Conduktor
You can use this configuration snippet:
1
bootstrap.servers=NAMESPACENAME.servicebus.windows.net:9093
2
security.protocol=SASL_SSL
3
sasl.mechanism=PLAIN
4
sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required username="$ConnectionString" password="{YOUR.EVENTHUBS.CONNECTION.STRING}";
Copied!
Replace the password by following this guide
https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string
, this will give you something like:
1
... password="Endpoint=sb://mynamespace.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=XXXXXXXXXXXXXXXX";
Copied!
Redpanda
Redpanda
is an Apache Kafka compatible event streaming platform. No Zookeeper, no JVM, and no code changes required.
Previous
Connecting to Kafka running on Windows WSL 2
Next - Kafka Cluster Connection
Starting a local Kafka cluster in seconds
Last modified
2mo ago
Copy link
Contents
Azure Event Hubs
Connecting to Event Hubs in Conduktor
Redpanda