Important
You are viewing documentation for an older version of Confluent Platform. For the latest, click here.
C¶
In this tutorial, you will run a C client application that produces messages to and consumes messages from an Apache Kafka® cluster.
After you run the tutorial, view the provided source code and use it as a reference to develop your own Kafka client application.
Prerequisites¶
Client¶
- librdkafka installed on your machine. See the librdkafka installation instructions.
Kafka Cluster¶
- You can use this tutorial with a Kafka cluster in any environment:
- In Confluent Cloud
- On your local host
- Any remote Kafka cluster
- If you are running on Confluent Cloud, you must have access to a Confluent Cloud cluster
- The first 20 users to sign up for Confluent Cloud and use promo code
C50INTEG
will receive an additional $50 free usage (details)
- The first 20 users to sign up for Confluent Cloud and use promo code
Setup¶
Clone the confluentinc/examples GitHub repository and check out the
5.5.15-post
branch.git clone https://github.com/confluentinc/examples cd examples git checkout 5.5.15-post
Change directory to the example for C.
cd clients/cloud/c/
Create a local file (for example, at
$HOME/.confluent/librdkafka.config
) with configuration parameters to connect to your Kafka cluster. Starting with one of the templates below, customize the file with connection information to your cluster. Substitute your values for{{ BROKER_ENDPOINT }}
,{{CLUSTER_API_KEY }}
, and{{ CLUSTER_API_SECRET }}
(see Connecting Clients to Confluent Cloud for instructions on how to create or find those values).Template configuration file for Confluent Cloud
# Kafka bootstrap.servers={{ BROKER_ENDPOINT }} security.protocol=SASL_SSL sasl.mechanisms=PLAIN sasl.username={{ CLUSTER_API_KEY }} sasl.password={{ CLUSTER_API_SECRET }}
Template configuration file for local host
# Kafka bootstrap.servers=localhost:9092
Basic Producer and Consumer¶
In this example, the producer application writes Kafka data to a topic in your Kafka cluster.
If the topic does not already exist in your Kafka cluster, the producer application will use the Kafka Admin Client API to create the topic.
Each record written to Kafka has a key representing a username (for example, alice
) and a value of a count, formatted as json (for example, {"count": 0}
).
The consumer application reads the same Kafka topic and keeps a rolling sum of the count as it processes each record.
Produce Records¶
Build the example
producer
andconsumer
applications.make
Verify the build worked. You should see:
cc consumer.c common.c json.c -o consumer -lrdkafka -lm cc producer.c common.c json.c -o producer -lrdkafka -lm
Run the producer, passing in arguments for:
- the local file with configuration parameters to connect to your Kafka cluster
- the topic name
./producer test1 $HOME/.confluent/librdkafka.config
Verify the producer sent all the messages. You should see:
Creating topic test1 Topic test1 successfully created Producing message #0 to test1: alice={ "count": 1 } Producing message #1 to test1: alice={ "count": 2 } Producing message #2 to test1: alice={ "count": 3 } Producing message #3 to test1: alice={ "count": 4 } Producing message #4 to test1: alice={ "count": 5 } Producing message #5 to test1: alice={ "count": 6 } Producing message #6 to test1: alice={ "count": 7 } Producing message #7 to test1: alice={ "count": 8 } Producing message #8 to test1: alice={ "count": 9 } Producing message #9 to test1: alice={ "count": 10 } Waiting for 10 more delivery results Message delivered to test1 [0] at offset 0 in 22.75ms: { "count": 1 } Message delivered to test1 [0] at offset 1 in 22.77ms: { "count": 2 } Message delivered to test1 [0] at offset 2 in 22.77ms: { "count": 3 } Message delivered to test1 [0] at offset 3 in 22.78ms: { "count": 4 } Message delivered to test1 [0] at offset 4 in 22.78ms: { "count": 5 } Message delivered to test1 [0] at offset 5 in 22.78ms: { "count": 6 } Message delivered to test1 [0] at offset 6 in 22.78ms: { "count": 7 } Message delivered to test1 [0] at offset 7 in 22.79ms: { "count": 8 } Message delivered to test1 [0] at offset 8 in 22.80ms: { "count": 9 } Message delivered to test1 [0] at offset 9 in 22.81ms: { "count": 10 } 10/10 messages delivered
View the producer code.
Consume Records¶
Run the consumer, passing in arguments for:
- the topic name you used earlier
- the local file with configuration parameters to connect to your Kafka cluster.
./consumer test1 $HOME/.confluent/librdkafka.config
Verify the consumer received all the messages. You should see:
Subscribing to test1, waiting for assignment and messages... Press Ctrl-C to exit. Received message on test1 [0] at offset 0: { "count": 1 } User alice sum 1 Received message on test1 [0] at offset 1: { "count": 2 } User alice sum 3 Received message on test1 [0] at offset 2: { "count": 3 } User alice sum 6 Received message on test1 [0] at offset 3: { "count": 4 } User alice sum 10 Received message on test1 [0] at offset 4: { "count": 5 } User alice sum 15 Received message on test1 [0] at offset 5: { "count": 6 } User alice sum 21 Received message on test1 [0] at offset 6: { "count": 7 } User alice sum 28 Received message on test1 [0] at offset 7: { "count": 8 } User alice sum 36 Received message on test1 [0] at offset 8: { "count": 9 } User alice sum 45 Received message on test1 [0] at offset 9: { "count": 10 } User alice sum 55
Press
Ctrl-C
to exit.View the consumer code.