30

I have used Kafka Streams in Java. I could not find similar API in python. Do Apache Kafka support stream processing in python?

2

4 Answers 4

42

Kafka Streams is only available as a JVM library, but there are a few comparable Python implementations of it

In theory, you could try playing with Jython or Py4j to work with the JVM implementation, but probably would require more work than necessary.

Outside of those options, you can also try Apache Beam, Flink or Spark, but they each require an external cluster scheduler to scale out (and also require a Java installation).

If you are okay with HTTP methods, then running a KSQLDB instance (again, requiring Java for that server) and invoking its REST interface from Python with the built-in SQL functions can work. However, building your own functions there will requiring writing JVM compiled code, last I checked.

If none of those options are suitable, then you're stuck with the basic consumer/producer methods.

Sign up to request clarification or add additional context in comments.

5 Comments

Is there any example or tutorials to use docs.confluent.io/current/ksql/docs/tutorials/… with faust streaming?
KSQL is implemented in Java, so I'm not sure I understand the question
@circket_007, KSQL is not available in python. This is what you mean. Am I right?
@Maha KSQL server has a REST API, so you can submit queries from any language
btw: here is the direct link to the forked project: github.com/faust-streaming/faust
6

If you are using Apache Spark, you can use Kafka as producer and Spark Structured Streaming as consumer. No need to rely on 3rd part libraries like Faust.

To consume Kafka data streams in Spark, use the Structured Streaming + Kafka Integration Guide.

Keep in mind that you will have to append spark-sql-kafka package when using spark-submit:

spark-submit --packages org.apache.spark:spark-sql-kafka-0-10_2.12:3.0.1 StructuredStreaming.py

This solution has been tested with Spark 3.0.1 and Kafka 2.7.0 with PySpark.

This resource can also be useful.

1 Comment

And if you're a Python person, you can write the originating code (the code that is, for example, probing a vibration sensor) in Python, and use either the Kafka Python library to publish messages directly, or fluentd to publish JSON provided by a Python script
1

Previously KStrame python API was not available but now its available with new KStream python library https://pypi.org/project/kstreams/

Features:

  1. Produce events
  2. Consumer events with Streams
  3. Prometheus metrics and custom monitoring
  4. TestClient
  5. Custom Serialization and Deserialization
  6. Easy to integrate with any async framework. No tied to any library!!
  7. Yield events from streams
  8. Store (kafka streams pattern)
  9. Stream Join
  10. Windowing

1 Comment

Those last three features are not implemented, according to the docs
0

There is a relatively new library called FastStream:

FastStream is a powerful and easy-to-use Python framework for building asynchronous services interacting with event streams such as Apache Kafka, RabbitMQ, NATS and Redis.

It looks really good and quite simple to use, although I haven't personally used it yet. It is in constant development and supports more brokers besides Kafka (like RabbitMQ).

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.