6 releases (3 breaking)

new 0.5.0 Apr 24, 2024
0.3.2 Nov 19, 2023
0.3.1 Jul 11, 2023
0.2.1 May 7, 2023
0.1.0 Mar 2, 2023

#8 in #apache-kafka

Download history 936/week @ 2024-01-02 703/week @ 2024-01-09 910/week @ 2024-01-16 681/week @ 2024-01-23 921/week @ 2024-01-30 640/week @ 2024-02-06 517/week @ 2024-02-13 1228/week @ 2024-02-20 1048/week @ 2024-02-27 925/week @ 2024-03-05 783/week @ 2024-03-12 814/week @ 2024-03-19 603/week @ 2024-03-26 695/week @ 2024-04-02 682/week @ 2024-04-09 889/week @ 2024-04-16

2,995 downloads per month
Used in 4 crates (2 directly)

MIT/Apache

110KB
2.5K SLoC

sea-streamer-kafka: Kafka / Redpanda Backend

This is the Kafka / Redpanda backend implementation for SeaStreamer. This crate provides a comprehensive type system that makes working with Kafka easier and safer.

First of all, all API (many are sync) are properly wrapped as async. Methods are also marked &mut to eliminate possible race conditions.

KafkaConsumerOptions has typed parameters.

KafkaConsumer allows you to seek to point in time, rewind to particular offset, and commit message read.

KafkaProducer allows you to await a send Receipt or discard it if you are uninterested. You can also flush the Producer.

KafkaStreamer allows you to flush all producers on disconnect.

See tests for an illustration of the stream semantics.

This crate depends on rdkafka, which in turn depends on librdkafka-sys, which itself is a wrapper of librdkafka.

Configuration Reference: https://kafka.apache.org/documentation/#configuration

Dependencies

~18–35MB
~516K SLoC