Skip to main content

Kafka

Apache Kakfa is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications.

helm repo add ...
helm repo update

Install Kakfa.

plane up datalayer-kafka

Check the availability of the Kafka Pods.

kubectl get pods -n datalayer-kafka

# NAME READY STATUS RESTARTS AGE
...

To interact with Kafka, you first need to port-forward.

plane pf-kafka

To connect from you host to the Kafka service, add the following entries in your /etc/hosts file.

# /etc/hosts
...

You can check the connection to Kafka with the following Python code (you need kafka-client).

# Producer.
...
# Client.
...

Tear down Kafka if needed.

plane down datalayer-kafka