Skip to content

API Redesign / Performance / Producer

Pre-release
Pre-release
Compare
Choose a tag to compare
@xitep xitep released this 16 Feb 21:04
· 312 commits to master since this release

This release is generally incompatible to 0.1 due to renaming of types and movement of functionality out of KafkaClient to Consumer and (the new) Producer APIs. If you are dependent on kafka-rust be sure to have a explicit dependency on the 0.1 version if you cannot upgrade right now.

Some highlights of this release are:

  • Make KafkaClient API to accept references where possible (to avoid the need for clones at the caller side)
  • Drop kafka::utils from public view; all of the types have been moved to kafka::client and some of them renamed to match their purpose
  • Avoid cloning when fetching messages (huge performance win when fetching uncompressed messages)
  • Correctly consume compressed messages
  • Expose messages basically as a key/value pair (in both fetching and sending APIs)
  • Allow client side to control the offset commitment in Consumer API
  • Avoid Consumer to clone delivered messages; Consumer no longer implements Iterator
  • Sending messages through KafkaClient no longer automatically distributes them to different partitions
  • Introduce Producer API for sending messages to Kafka
  • Separate out snappy code to snappy crate
  • Make KafkaClient Sendable (to allow sending it after initialization to another thread)