How to Add a Kafka Cluster
Enter Connection Details
- Name (required): Display name for this cluster
- Bootstrap Servers (required): Comma-separated list (e.g.,
kafka1:9092,kafka2:9092) - Authentication Type: NONE, SASL_PLAINTEXT, SASL_SSL, or SSL
- Username/Password: Required for SASL authentication
- Schema Registry URL (optional): For Avro schema management
- Verify SSL: Enable to validate SSL certificates
- Set as Default: Make this the default Kafka cluster
How to Edit a Kafka Cluster
- Click the edit icon on the cluster row
- Modify the settings
- Click Save
How to Check Health
Click the Check button to verify connectivity. A successful check shows broker and topic counts.How to Delete a Kafka Cluster
- Click the delete icon on the cluster row
- Confirm the deletion
Authentication Types
| Type | Description |
|---|---|
| NONE | No authentication (development only) |
| SASL_PLAINTEXT | Username/password over plaintext |
| SASL_SSL | Username/password over SSL |
| SSL | Certificate-based authentication |
Troubleshooting
Health check shows Unhealthy
Health check shows Unhealthy
- Verify bootstrap servers are correct and reachable
- Check authentication credentials
- Ensure network connectivity to Kafka brokers
- For SSL, verify certificates or disable SSL verification
Cannot connect with SASL
Cannot connect with SASL
- Verify username and password are correct
- Check the SASL mechanism matches Kafka configuration
- Ensure the user has permissions in Kafka ACLs
Schema Registry not working
Schema Registry not working
- Verify the Schema Registry URL is correct
- Check if Schema Registry is running
- Ensure authentication (if required) is configured
FAQ
Can I connect multiple Kafka clusters?
Can I connect multiple Kafka clusters?
Yes. Add clusters for different environments (dev, staging, production).
What permissions does the user need?
What permissions does the user need?
The user needs permissions to describe topics, consumer groups, and brokers. For management operations, write permissions are required.
Is Schema Registry required?
Is Schema Registry required?
No. Schema Registry URL is optional. It’s only needed if you use Avro schemas.