risingwave_connector/source/cdc/
jni_source.rs1use anyhow::Context;
16use risingwave_jni_core::jvm_runtime::{JVM, execute_with_jni_env};
17use risingwave_jni_core::{call_method, call_static_method};
18
19pub fn commit_cdc_offset(source_id: u64, encoded_offset: String) -> anyhow::Result<()> {
20 let jvm = JVM.get_or_init()?;
21 execute_with_jni_env(jvm, |env| {
22 let handler = call_static_method!(
24 env,
25 {com.risingwave.connector.source.core.JniDbzSourceRegistry},
26 {com.risingwave.connector.source.core.JniDbzSourceHandler getSourceHandler(long sourceId)},
27 source_id
28 )?;
29
30 let offset_str = env.new_string(&encoded_offset).with_context(|| {
31 format!("Failed to create jni string from source offset: {encoded_offset}.")
32 })?;
33 call_method!(env, handler, {void commitOffset(String)}, &offset_str).with_context(
35 || format!("Failed to commit offset to upstream for source: {source_id}."),
36 )?;
37 Ok(())
38 })
39}