Looking for the plugin's configuration parameters? You can find them in the Kafka Consume configuration reference doc.
This plugin consumes messages from Apache Kafka topics and makes them available through HTTP endpoints. For more information, see Kafka topics.
Note: This plugin has the following known limitations:
- Message compression is not supported.
- The message format is not customizable.
Kong also provides Kafka plugins for publishing messages:
- See Kafka Log
- See Kafka Upstream
Implementation details
The plugin supports two modes of operation:
-
http-get
: Consume messages via HTTP GET requests (default) -
server-sent-events
: Stream messages using Server-Sent Events
Message delivery guarantees
When running multiple data plane nodes, there is no thread-safe behavior between nodes. In high-load scenarios, you may observe the same message being delivered multiple times across different data plane nodes.
To minimize duplicate message delivery in a multi-node setup, consider:
- Using a single data plane node for consuming messages from specific topics
- Implementing idempotency handling in your consuming application
- Monitoring consumer group offsets across your data plane nodes
HTTP GET quickstart
The following steps assume that Kong Gateway is installed.
-
Create a Kafka topic in your cluster:
${KAFKA_HOME}/bin/kafka-topics.sh --create \ --bootstrap-server localhost:9092 \ --replication-factor 1 \ --partitions 10 \ --topic kong-test
-
Create a Route:
curl -X POST http://localhost:8001/routes \ --data "name=kafka-consume" \ --data "hosts[]=kafka-consume.test"
-
Add the
kafka-consume
plugin to the Route:curl -X POST http://localhost:8001/routes/kafka-consume/plugins \ --data "name=kafka-consume" \ --data "config.bootstrap_servers[1].host=localhost" \ --data "config.bootstrap_servers[1].port=9092" \ --data "config.topics[1].name=kong-test"
-
Consume messages using HTTP GET:
curl http://localhost:8000/messages \ --header 'Host: kafka-consume.test'
Server-Sent Events quickstart
-
Create a Route:
curl -X POST http://localhost:8001/routes \ --data "name=kafka-sse-consume" \ --data "hosts[]=kafka-sse.test"
- Add the
kafka-consume
plugin in SSE mode:curl -X POST http://localhost:8001/routes/kafka-sse-consume/plugins \ --data "name=kafka-consume" \ --data "config.bootstrap_servers[1].host=localhost" \ --data "config.bootstrap_servers[1].port=9092" \ --data "config.topics[1].name=kong-test" \ --data "config.mode=server-sent-events"
-
Stream messages using Server-Sent Events:
curl http://localhost:8000/stream \ --header 'Host: kafka-sse.test' \ --header 'Accept: text/event-stream'