Scala wrapper for kafka-clients v3.4.0
Kafka provides an official Java client out of the box, which could be used from Scala code without any additional modifications.
The main disadvantage of using an official client directly is that it implies a very specific threading model to the application. I.e. the consumer is not thread safe and also expects a rebalance listener to do the operations in the same thread.
This makes wrapping a client with Cats Effect
classes a bit more complicated than just calling IO { consumer.poll() }
unless
this is the only call, which is expected to be used.
Skafka does exactly that: a very thin wrapper over official Kafka client to provide a ready-made Cats Effect API and handle some corner cases concerning ConsumerRebalanceListener calls.
Comparing to more full-featured libraries such as FS2 Kafka, it might be a little bit more reliable, because there is little code/logic to hide the accidenital bugs in.
To summarize:
- If it suits your goals (i.e. you only ever need to do
consumer.poll()
without acting on rebalance etc.) then using an official Kafka client directly, optionally, wrapping all the calls withcats.effect.IO
, is a totally fine idea. - If more complicated integration to Cats Effect is required, i.e. ConsumerRebalanceListener is going to be used then consider using Skafka.
- If streaming with FS2 is required or any other features the library provides then FS2 Kafka could be a good choice. Note, that it is less trivial then Skafka and may contain more bugs on top of the official Kafka client.
-
Makes it easy to use your effect monad with help of cats-effect
-
Blocking calls are being executed on provided
ExecutionContext
. -
Simple
case class
based configuration -
Support of typesafe config
val producer = Producer.of[IO](config, ecBlocking)
val metadata: IO[RecordMetadata] = producer.use { producer =>
val record = ProducerRecord(topic = "topic", key = "key", value = "value")
producer.send(record).flatten
}
val consumer = Consumer.of[IO, String, String](config, ecBlocking)
val records: IO[ConsumerRecords[String, String]] = consumer.use { consumer =>
for {
_ <- consumer.subscribe(Nel("topic"), None)
records <- consumer.poll(100.millis)
} yield records
}
addSbtPlugin("com.evolution" % "sbt-artifactory-plugin" % "0.0.2")
libraryDependencies += "com.evolutiongaming" %% "skafka" % "15.0.0"
While Skafka provides an ability to use ConsumerRebalanceListener
functionality, not all of the method calls are supported.
See the following PRs for more details: evolution-gaming#150 evolution-gaming#122
To our latest knowledge neither FS2 Kafka
supports all of the
methods / functionality.