Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref(rust-consumer): join-timeout per-step #5918

Merged
merged 2 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions rust_snuba/src/factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ use crate::strategies::accountant::RecordCogs;
use crate::strategies::clickhouse::batch::{BatchFactory, HttpBatch};
use crate::strategies::clickhouse::ClickhouseWriterStep;
use crate::strategies::commit_log::ProduceCommitLog;
use crate::strategies::join_timeout::SetJoinTimeout;
use crate::strategies::processor::{
get_schema, make_rust_processor, make_rust_processor_with_replacements, validate_schema,
};
Expand Down Expand Up @@ -151,6 +152,8 @@ impl ProcessingStrategyFactory<KafkaPayload> for ConsumerStrategyFactory {
&self.clickhouse_concurrency,
));

let next_step = SetJoinTimeout::new(next_step, None);

// Batch insert rows
let batch_factory = BatchFactory::new(
&self.storage_config.clickhouse_cluster.host,
Expand Down Expand Up @@ -190,7 +193,7 @@ impl ProcessingStrategyFactory<KafkaPayload> for ConsumerStrategyFactory {
.flush_empty_batches(true);

// Transform messages
let processor = match (
let next_step = match (
self.use_rust_processor,
processors::get_processing_function(
&self.storage_config.message_processor.python_class_name,
Expand Down Expand Up @@ -266,10 +269,15 @@ impl ProcessingStrategyFactory<KafkaPayload> for ConsumerStrategyFactory {
}
};

// force message processor to drop all in-flight messages, as it is not worth the time
// spent in rebalancing to wait for them and it is idempotent anyway. later, we overwrite
// the timeout again for the clickhouse writer step
let next_step = SetJoinTimeout::new(next_step, Some(Duration::from_secs(0)));

if let Some(path) = &self.health_check_file {
Box::new(HealthCheck::new(processor, path))
Box::new(HealthCheck::new(next_step, path))
} else {
processor
Box::new(next_step)
}
}
}
Expand Down
45 changes: 45 additions & 0 deletions rust_snuba/src/strategies/join_timeout.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
use std::time::Duration;

use rust_arroyo::processing::strategies::{
CommitRequest, ProcessingStrategy, StrategyError, SubmitError,
};
use rust_arroyo::types::Message;

pub struct SetJoinTimeout<N> {
next_step: N,
new_timeout: Option<Duration>,
}

impl<N> SetJoinTimeout<N> {
pub fn new(next_step: N, new_timeout: Option<Duration>) -> Self {
SetJoinTimeout {
new_timeout,
next_step,
}
}
}

impl<N, TPayload> ProcessingStrategy<TPayload> for SetJoinTimeout<N>
where
N: ProcessingStrategy<TPayload>,
{
fn poll(&mut self) -> Result<Option<CommitRequest>, StrategyError> {
self.next_step.poll()
}

fn submit(&mut self, message: Message<TPayload>) -> Result<(), SubmitError<TPayload>> {
self.next_step.submit(message)
}

fn terminate(&mut self) {
self.next_step.terminate()
}

fn close(&mut self) {
self.next_step.close();
}

fn join(&mut self, _timeout: Option<Duration>) -> Result<Option<CommitRequest>, StrategyError> {
self.next_step.join(self.new_timeout)
}
}
1 change: 1 addition & 0 deletions rust_snuba/src/strategies/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pub mod accountant;
pub mod clickhouse;
pub mod commit_log;
pub mod join_timeout;
pub mod noop;
pub mod processor;
pub mod python;
Expand Down
Loading