Kafka client using kotlin flow and coroutines
Kafka-flow is a kafka client that uses kotlin flow and coroutines to connect to kafka.
This library has two parts:
Kafka-flow is under heavy development and api are still subject to major changes.
It is already extensively tested in a private project (I’ll migrate those test when I have time).
The low level client is mostly stable.
It is published on JitPack.
You can find instructions and latest version here
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.Jeff-Gillot.kafka-flow:kafka-flow-client:1.0.2'
}
val consumer = KafkaFlowConsumerWithGroupIdImpl(
properties(),
listOf(topic.name),
StartOffsetPolicy.earliest(),
AutoStopPolicy.never()
)
launch {
consumer.startConsuming()
.deserializeValue { String(it) }
.values()
.collect { record = it }
}
The higher level api uses topic descriptors.
Topic descriptor give a structured way to interact with a specific topic.
See: topic-descriptor.kt
It serves as a contract for a topic:
Here is a simple example for a kafka to kafka stream:
launch {
TestServer.from(testTopic1)
.consumer()
.withGroupId("GroupId")
.autoOffsetResetEarliest()
.consumeUntilStopped()
.startConsuming()
.ignoreTombstones()
.mapValueToOutput { KafkaOutput.forValue(TestServer, testTopic2, it) }
.writeOutputToKafkaAndCommit()
}
This also contains a thread safe and asynchronous transaction manager.
It creates transaction for every message, and allow for out of order commit of individual messages.
kafka-flow also provides an extensive testing library for kafka.
val testTopic = TestTopicDescriptor.next()
val expected = TestObject.random()
TestServer.on(testTopic).send(expected)
TestServer.topicTester(testTopic).expectMessage {
condition("same record") { expectThat(it).isEqualTo(expected) }
}
TestServer is a kafka server started using TestContainers.
Thanks to extensions functions, this library is easy to extend with your own requirements.
See extensions for more details.
I am working on a full documentation.
It takes time, I will update as soon as it’s ready.
Copyright (c) 2021 Jeff-Gillot
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.