Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Ballerina Kafka Module.

License

NotificationsYou must be signed in to change notification settings

ballerina-platform/module-ballerinax-kafka

Repository files navigation

BuildcodecovTrivyGraalVM CheckGitHub Last Commit

This library provides an implementation to interact with Kafka Brokers via Kafka Consumer and Kafka Producer clients.

Apache Kafka is an open-source distributed event streaming platform used for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications.

This library supports Kafka 1.x.x, 2.x.x and 3.x.x versions.

Consumer and producer

Kafka producer

A Kafka producer is a Kafka client that publishes records to the Kafka cluster. The producer is thread-safe and sharing a single producer instance across threads will generally be faster than having multiple instances. When working with a Kafka producer, the first thing to do is to initialize the producer.For the producer to execute successfully, an active Kafka broker should be available.

The code snippet given below initializes a producer with the basic configuration.

importballerinax/kafka;kafka:ProducerConfigurationproducerConfiguration= {clientId:"basic-producer",acks:"all",retryCount:3};kafka:ProducerkafkaProducer=checknew (kafka:DEFAULT_URL,producerConfiguration);

Kafka consumer

A Kafka consumer is a subscriber responsible for reading records from one or more topics and one or more partitions of a topic. When working with a Kafka consumer, the first thing to do is initialize the consumer.For the consumer to execute successfully, an active Kafka broker should be available.

The code snippet given below initializes a consumer with the basic configuration.

kafka:ConsumerConfigurationconsumerConfiguration= {groupId:"group-id",// Unique string that identifies the consumeroffsetReset:"earliest",// Offset reset strategy if no initial offsettopics: ["kafka-topic"]};kafka:ConsumerkafkaConsumer=checknew (kafka:DEFAULT_URL,consumerConfiguration);

Listener

The Kafka consumer can be used as a listener to a set of topics without the need to manuallypoll the messages.

You can use theCaller to manually commit the offsets of the messages that are read by the service. The following code snippet shows how to initialize and define the listener and how to commit the offsets manually.

kafka:ConsumerConfigurationconsumerConfiguration= {groupId:"group-id",topics: ["kafka-topic-1"],pollingInterval:1,autoCommit:false};listenerkafka:ListenerkafkaListener=new (kafka:DEFAULT_URL,consumerConfiguration);serviceon kafkaListener {remotefunction onConsumerRecord(kafka:Callercaller,kafka:BytesConsumerRecord[]records) {// processes the records...// commits the offsets manuallykafka:Error?commitResult=caller->commit();ifcommitResultiskafka:Error {log:printError("Error occurred while committing the offsets for the consumer",'error=commitResult);        }    }}

Data serialization

Serialization is the process of converting data into a stream of bytes that is used for transmission. Kafkastores and transmits these bytes of arrays in its queue. Deserialization does the opposite of serializationin which bytes of arrays are converted into the desired data type.

Currently, this library only supports thebyte array data type for both the keys and values. The following code snippetsshow how to produce and read a message from Kafka.

string message="Hello World, Ballerina";string key="my-key";// converts the message and key to a byte arraycheckkafkaProducer->send({topic:"test-kafka-topic",key:key.toBytes(),value:message.toBytes() });
kafka:BytesConsumerRecord[]records=checkkafkaConsumer->poll(1);foreachvarkafkaRecordinrecords {byte[] messageContent=kafkaRecord.value;// tries to generate the string value from the byte arraystring result=checkstring:fromBytes(messageContent);io:println("The result is :",result);}

Concurrency

In Kafka, records are grouped into smaller units called partitions. These can be processed independently withoutcompromising the correctness of the results and lays the foundation for parallel processing. This can be achieved byusing multiple consumers within the same group each reading and processing data from a subset of topic partitions andrunning in a single thread.

Topic partitions are assigned to consumers automatically or you can manually assign topic partitions.

The following code snippet joins a consumer to theconsumer-group and assigns it to a topic partition manually.

kafka:ConsumerConfigurationconsumerConfiguration= {// `groupId` determines the consumer groupgroupId:"consumer-group",pollingInterval:1,autoCommit:false};kafka:ConsumerkafkaConsumer=checknew (kafka:DEFAULT_URL,consumerConfiguration);// creates a topic partitionkafka:TopicPartitiontopicPartition= {topic:"kafka-topic-1",partition:1};// passes the topic partitions to the assign function as an arraycheckkafkaConsumer->assign([topicPartition]);

Examples

The following example shows how to use the Ballerinakafka connector to produce and consume messages using an Apache Kafka message broker.

  • Order manager: A simple order management system that uses Kafka to process orders.
  • Word count calculator: A word count calculator that reads messages from a Kafka topic and counts the occurrences of each word.
  • Twitter filter: A Twitter filter that reads tweets from a Kafka topic and filters them based on certain criteria.
  • Stock trading analyzer: This example demonstrates a simulated stock trading system built using Kafka and Ballerina.
  • Banking transaction processor: A banking transaction processor that processes banking transactions using Kafka. It illustrates how banking transactions can be published and consumed in real time, while also integrating with Confluent Schema Registry to manage message schemas between the producer and consumer.

Issues and projects

Issues and Projects tabs are disabled for this repository as this is part of the Ballerina Standard Library. To report bugs, request new features, start new discussions, view project boards, etc., go to theBallerina Standard Library parent repository.

This repository only contains the source code for the library.

Build from the source

Set up the prerequisites

  • Download and install Java SE Development Kit (JDK) version 21 (from one of the following locations).

    • Oracle

    • OpenJDK

      Note: Set the JAVA_HOME environment variable to the path name of the directory into which you installed JDK.

  1. Download and installDocker. This is required to run the tests.

Build the source

Execute the commands below to build from the source.

  1. To build the library:

    ./gradlew clean build
  2. To run the tests:

    ./gradlew clean test
  3. To build the library without the tests:

    ./gradlew clean build -x test
  4. To debug library implementation:

    ./gradlew clean build -Pdebug=<port>
  5. To debug the library with Ballerina language:

    ./gradlew clean build -PbalJavaDebug=<port>
  6. Publish ZIP artifact to the local.m2 repository:

    ./gradlew clean build publishToMavenLocal
  7. Publish the generated artifacts to the local Ballerina central repository:

    ./gradlew clean build -PpublishToLocalCentral=true
  8. Publish the generated artifacts to the Ballerina central repository:

    ./gradlew clean build -PpublishToCentral=true

Contribute to Ballerina

As an open source project, Ballerina welcomes contributions from the community.

For more information, go to thecontribution guidelines.

Code of conduct

All the contributors are encouraged to read theBallerina Code of Conduct.

Useful links


[8]ページ先頭

©2009-2025 Movatter.jp