> For the complete documentation index, see [llms.txt](https://docs.ecotone.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ecotone.tech/modules/kafka-support.md).

# Kafka Support

Native integration with [Apache Kafka](https://kafka.apache.org/) for high-throughput event streaming, using Ecotone's attribute-driven programming model. No separate producer/consumer boilerplate -- use `#[Asynchronous]` and message channels as with any other transport.

**You'll know you need this when:**

* You're handling high-throughput event streaming (10k+ events/sec)
* Multiple services need to consume the same event stream independently
* You have existing Kafka infrastructure and want to use it with Ecotone's attribute-driven model
* RabbitMQ throughput has become a bottleneck for your event volume

{% hint style="success" %}
This module is available as part of **Ecotone Enterprise.**
{% endhint %}

## Materials

### Demo implementation

* [Message Broker demo — RabbitMQ, Kafka, SQS, Redis](https://github.com/ecotoneframework/quickstart-examples/tree/main/MessageBroker)

### Links

* [Message Brokers in PHP: From Hundreds of Lines to Just a Few](https://blog.ecotone.tech/message-brokers-in-php-few-lines-integration/) \[Article]
* [Ecotone Enterprise and Kafka support](https://blog.ecotone.tech/ecotone-enterprise-kafka-distributed-bus-dynamic-channels-and-more-2/) \[Article]


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.ecotone.tech/modules/kafka-support.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
