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

feat: Add configurable sync call timeout for sources #20828

Merged
merged 6 commits into from
Mar 12, 2025
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
9 changes: 9 additions & 0 deletions src/connector/src/with_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

use std::collections::{BTreeMap, HashMap};
use std::marker::PhantomData;
use std::time::Duration;

use risingwave_pb::secret::PbSecretRef;

Expand Down Expand Up @@ -115,6 +116,14 @@ pub trait WithPropertiesExt: Get + Sized {
connector == MYSQL_CDC_CONNECTOR
}

#[inline(always)]
fn get_sync_call_timeout(&self) -> Option<Duration> {
const SYNC_CALL_TIMEOUT_KEY: &str = "properties.sync.call.timeout"; // only from kafka props, add more if needed
self.get(SYNC_CALL_TIMEOUT_KEY)
// ignore the error is ok here, because we will parse the field again when building the properties and has more precise error message
.and_then(|s| duration_str::parse_std(s).ok())
}

#[inline(always)]
fn is_cdc_connector(&self) -> bool {
let Some(connector) = self.get_connector() else {
Expand Down
11 changes: 6 additions & 5 deletions src/meta/src/stream/source_manager/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

use risingwave_connector::WithPropertiesExt;
#[cfg(not(debug_assertions))]
use risingwave_connector::error::ConnectorError;
use risingwave_connector::source::AnySplitEnumerator;
Expand Down Expand Up @@ -97,6 +98,10 @@ pub async fn create_source_worker(
let enable_scale_in = connector_properties.enable_drop_split();
let enable_adaptive_splits = connector_properties.enable_adaptive_splits();
let (command_tx, command_rx) = tokio::sync::mpsc::unbounded_channel();
let sync_call_timeout = source
.with_properties
.get_sync_call_timeout()
.unwrap_or(DEFAULT_SOURCE_TICK_TIMEOUT);
let handle = {
let mut worker = ConnectorSourceWorker::create(
source,
Expand All @@ -108,12 +113,8 @@ pub async fn create_source_worker(
.await?;

// if fail to fetch meta info, will refuse to create source

// todo: make the timeout configurable, longer than `properties.sync.call.timeout`
// in kafka
tokio::time::timeout(DEFAULT_SOURCE_TICK_TIMEOUT, worker.tick())
tokio::time::timeout(sync_call_timeout, worker.tick())
.await
.ok()
.with_context(|| {
format!(
"failed to fetch meta info for source {}, timeout {:?}",
Expand Down
Loading