Crates.io | crab-kafka |
lib.rs | crab-kafka |
version | 0.0.7 |
source | src |
created_at | 2023-05-27 15:42:00.503126 |
updated_at | 2024-11-14 10:17:17.572628 |
description | Forward |
homepage | https://github.com/newfla/crab-kafka |
repository | https://github.com/newfla/crab-kafka |
max_upload_size | |
id | 875984 |
size | 113,178 |
Forward <TCP|UDP> + TLS traffic to kafka.
Based on tokio and rust rdkafka
It's strongly encouraged the use of alternative allocator like MiMalloc
use anyhow::Result;
use std::collections::HashMap;
use mimalloc::MiMalloc;
use crab_kafka::{forwarder::ForwarderBuilder,Receiver,PartitionStrategies,CheckpointStrategies,TransformStrategies};
#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;
#[tokio::main]
async fn main() -> Result<()> {
ForwarderBuilder::default()
.receiver(Receiver::new_tcp_stream("127.0.0.1".to_owned(), "8888".to_owned(), 2000))
.checkpoint(CheckpointStrategies::OpenDoors)
.partition(PartitionStrategies::new_sticky_round_robin())
.transform(TransformStrategies::NoTransform)
.kafka_settings(HashMap::from([("bootstrap.servers".to_owned(),"broker:29091".to_owned())]))
.topic("test_topic".to_owned())
.cache_size(1000)
.stats_interval(10)
.build()
.unwrap()
.await
}