7 releases

0.3.4+0.34.0 Mar 22, 2024
0.3.3+0.34.0 Feb 28, 2024
0.3.1+0.34.0 Jan 5, 2024
0.3.0+0.34.0 Oct 11, 2023
0.2.8-alpha Sep 26, 2022

#19 in Simulation

Download history 4384/week @ 2023-12-18 5281/week @ 2023-12-25 4573/week @ 2024-01-01 5529/week @ 2024-01-08 6233/week @ 2024-01-15 5596/week @ 2024-01-22 7941/week @ 2024-01-29 4027/week @ 2024-02-05 1293/week @ 2024-02-12 3501/week @ 2024-02-19 5812/week @ 2024-02-26 4953/week @ 2024-03-04 4167/week @ 2024-03-11 4815/week @ 2024-03-18 4680/week @ 2024-03-25 4527/week @ 2024-04-01

18,218 downloads per month

Apache-2.0

510KB
10K SLoC

madsim-rdkafka

Crate Docs

The rdkafka simulator on madsim. Mirrors rdkafka v0.34.0 and librdkafka 2.3.0.

Usage

Replace all rdkafka entries in your Cargo.toml:

[dependencies]
rdkafka = { version = "0.3", package = "madsim-rdkafka" }

API Modification

This crate roughly follows the rdkafka API but is NOT exactly the same.

The following functions are modified to be async:

  • FromClientConfig::from_config
  • FromClientConfigAndContext::from_config_and_context
  • ClientConfig::create
  • ClientConfig::create_with_context
  • Client::fetch_metadata
  • Client::fetch_watermarks[^1]
  • Client::fetch_group_list
  • Consumer::seek
  • Consumer::seek_partitions
  • Consumer::commit
  • Consumer::commit_consumer_state
  • Consumer::commit_message
  • Consumer::committed
  • Consumer::committed_offsets
  • Consumer::offsets_for_timestamp
  • Consumer::offsets_for_times
  • Consumer::fetch_metadata
  • Consumer::fetch_watermarks[^1]
  • Consumer::fetch_group_list
  • Producer::flush
  • Producer::init_transactions
  • Producer::send_offsets_to_transaction
  • Producer::commit_transaction
  • Producer::abort_transaction

[^1]: wrapped in tokio::task::spawn_blocking

DNS Resolution

This crate has cherry-picked a commit from Materialize to support rewriting broker addresses.

A new method is added to ClientContext:

  • ClientContext::rewrite_broker_addr

Dependencies

~13–30MB
~400K SLoC