Looking for the plugin's configuration parameters? You can find them in the Confluent Consume configuration reference doc.
This plugin consumes messages from Confluent Cloud Kafka topics and makes them available through HTTP endpoints. For more information, see the Confluent Cloud documentation.
Note: This plugin has the following known limitations:
- Message compression is not supported.
- The message format is not customizable.
Kong also provides a plugin for publishing messages to Confluent Cloud.
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
Prerequisites
Before using this plugin:
HTTP GET quickstart
The following steps assume that Kong Gateway is installed.
-
Create a Route:
curl -X POST http://localhost:8001/routes \ --data "name=confluent-consume" \ --data "hosts[]=confluent-consume.test"
-
Add the
confluent-consume
plugin to the Route:curl -X POST http://localhost:8001/routes/confluent-consume/plugins \ --data "name=confluent-consume" \ --data "config.bootstrap_servers[1].host=<YOUR_BOOTSTRAP_SERVER>" \ --data "config.bootstrap_servers[1].port=9092" \ --data "config.topics[1].name=my-topic" \ --data "config.authentication.strategy=sasl" \ --data "config.authentication.mechanism=PLAIN" \ --data "config.authentication.user=<YOUR_API_KEY>" \ --data "config.authentication.password=<YOUR_API_SECRET>"
-
Consume messages using HTTP GET:
curl http://localhost:8000/messages \ --header 'Host: confluent-consume.test'
Server-Sent Events quickstart
-
Create a Route:
curl -X POST http://localhost:8001/routes \ --data "name=confluent-sse-consume" \ --data "hosts[]=confluent-sse.test"
-
Add the
confluent-consume
plugin in SSE mode:curl -X POST http://localhost:8001/routes/confluent-sse-consume/plugins \ --data "name=confluent-consume" \ --data "config.bootstrap_servers[1].host=<YOUR_BOOTSTRAP_SERVER>" \ --data "config.bootstrap_servers[1].port=9092" \ --data "config.topics[1].name=my-topic" \ --data "config.mode=server-sent-events" \ --data "config.authentication.strategy=sasl" \ --data "config.authentication.mechanism=PLAIN" \ --data "config.authentication.user=<YOUR_API_KEY>" \ --data "config.authentication.password=<YOUR_API_SECRET>"
-
Stream messages using Server-Sent Events:
curl http://localhost:8000/stream \ --header 'Host: confluent-sse.test' \ --header 'Accept: text/event-stream'