pub struct KafkaSource { /* private fields */ }Expand description
Kafka source connector that consumes messages and produces Arrow batches.
Operates in Ring 1 (background) and pushes deserialized RecordBatch
data to Ring 0 via the streaming Source<T> API.
§Lifecycle
- Create with
KafkaSource::neworKafkaSource::with_schema_registry - Call
start()with the initial or exact recovered position - Call
poll_batch()in a loop to consume messages - Call
checkpoint()for fault tolerance - Call
close()for clean shutdown
Guaranteed delivery uses engine-owned manual assignment: the complete explicit topic inventory
in embedded/single-node mode or the owned vnode subset in cluster mode. Broker consumer-group
ownership can revoke a partition before an asynchronous engine checkpoint captures its final
offset, so dynamic group ownership is intentionally limited to BestEffort.
Implementations§
Source§impl KafkaSource
impl KafkaSource
Sourcepub fn new(
schema: SchemaRef,
config: KafkaSourceConfig,
registry: Option<&Registry>,
) -> Self
pub fn new( schema: SchemaRef, config: KafkaSourceConfig, registry: Option<&Registry>, ) -> Self
Creates a new Kafka source connector with explicit schema.
Sourcepub fn with_schema_registry(
schema: SchemaRef,
config: KafkaSourceConfig,
sr_client: SchemaRegistryClient,
) -> Self
pub fn with_schema_registry( schema: SchemaRef, config: KafkaSourceConfig, sr_client: SchemaRegistryClient, ) -> Self
Creates a new Kafka source connector with Schema Registry.
Sourcepub fn state(&self) -> ConnectorState
pub fn state(&self) -> ConnectorState
Lifecycle state (Created → Initializing → Running → Closed).
Sourcepub fn channel_len(&self) -> Arc<AtomicUsize> ⓘ
pub fn channel_len(&self) -> Arc<AtomicUsize> ⓘ
Shared backpressure fill counter for downstream wiring.
Sourcepub fn rebalance_state(&self) -> Arc<Mutex<RebalanceState>> ⓘ
pub fn rebalance_state(&self) -> Arc<Mutex<RebalanceState>> ⓘ
Shared partition assignment state (updated by rebalance callbacks).
Sourcepub fn has_schema_registry(&self) -> bool
pub fn has_schema_registry(&self) -> bool
Whether a Schema Registry client is configured.
Trait Implementations§
Source§impl Debug for KafkaSource
impl Debug for KafkaSource
Source§impl Drop for KafkaSource
impl Drop for KafkaSource
Source§impl SourceConnector for KafkaSource
impl SourceConnector for KafkaSource
Source§fn terminal_task_tracker(&self) -> Option<ConnectorTaskTracker>
fn terminal_task_tracker(&self) -> Option<ConnectorTaskTracker>
Source§fn contract(
&self,
_config: &ConnectorConfig,
) -> Result<SourceContract, ConnectorError>
fn contract( &self, _config: &ConnectorConfig, ) -> Result<SourceContract, ConnectorError>
Source§fn set_vnode_assignment(
&mut self,
source_identity: &str,
registry: Arc<VnodeRegistry>,
self_id: NodeId,
) -> Result<(), ConnectorError>
fn set_vnode_assignment( &mut self, source_identity: &str, registry: Arc<VnodeRegistry>, self_id: NodeId, ) -> Result<(), ConnectorError>
SourceTopology::Splittable. The source identity is the stable,
canonical catalog object name and must be part of any external split
mapping ABI. Read moreSource§fn begin_drain(
&mut self,
request: &SourceDrainRequest,
deadline: Instant,
) -> Result<(), ConnectorError>
fn begin_drain( &mut self, request: &SourceDrainRequest, deadline: Instant, ) -> Result<(), ConnectorError>
Source§fn poll_drain_ready(
&mut self,
round: AssignmentDrainId,
) -> Result<bool, ConnectorError>
fn poll_drain_ready( &mut self, round: AssignmentDrainId, ) -> Result<bool, ConnectorError>
Source§fn finish_drain<'life0, 'async_trait>(
&'life0 mut self,
resolution: SourceDrainResolution,
deadline: Instant,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn finish_drain<'life0, 'async_trait>(
&'life0 mut self,
resolution: SourceDrainResolution,
deadline: Instant,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Source§fn start<'life0, 'async_trait>(
&'life0 mut self,
request: SourceStart,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn start<'life0, 'async_trait>(
&'life0 mut self,
request: SourceStart,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Source§fn discover_schema<'life0, 'life1, 'async_trait>(
&'life0 mut self,
properties: &'life1 HashMap<String, String>,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn discover_schema<'life0, 'life1, 'async_trait>(
&'life0 mut self,
properties: &'life1 HashMap<String, String>,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
WITH (...) properties before
DDL reaches the planner. Implementations that perform network I/O must
bound it with a timeout. Return Err(ConnectorError::…) on failure so
the runtime can surface the cause to DDL — do not log and swallow.Source§fn poll_batch<'life0, 'async_trait>(
&'life0 mut self,
max_records: usize,
) -> Pin<Box<dyn Future<Output = Result<Option<SourceBatch>, ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn poll_batch<'life0, 'async_trait>(
&'life0 mut self,
max_records: usize,
) -> Pin<Box<dyn Future<Output = Result<Option<SourceBatch>, ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Ok(None) = no data currently available; runtime retries after a delay.
max_records is the normal batching target. A source may exceed it only
when one upstream atomic replay unit cannot be split without making its
checkpoint cursor invalid. Such sources must enforce independent hard
record and byte limits and fail before retained data can grow unbounded. Read moreSource§fn checkpoint_ready(&self) -> Result<bool, ConnectorError>
fn checkpoint_ready(&self) -> Result<bool, ConnectorError>
Source§fn drive_control_plane(&mut self)
fn drive_control_plane(&mut self)
checkpoint_ready. Called even while data
polling and barriers are fenced.Source§fn checkpoint(&self) -> SourceCheckpoint
fn checkpoint(&self) -> SourceCheckpoint
Source§fn try_checkpoint(&self) -> Result<Option<SourceCheckpoint>, ConnectorError>
fn try_checkpoint(&self) -> Result<Option<SourceCheckpoint>, ConnectorError>
Ok(None) means a
transient control-plane publication is not reconciled yet; the runtime
retains the barrier and retries without advancing it. Read moreSource§fn data_ready_notify(&self) -> Option<Arc<Notify>>
fn data_ready_notify(&self) -> Option<Arc<Notify>>
Notify] handle that is signalled when new data is available. Read moreSource§fn notify_epoch_committed<'life0, 'life1, 'async_trait>(
&'life0 mut self,
epoch: u64,
checkpoint: &'life1 SourceCheckpoint,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn notify_epoch_committed<'life0, 'life1, 'async_trait>(
&'life0 mut self,
epoch: u64,
checkpoint: &'life1 SourceCheckpoint,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
epoch has been durably committed. Read moreSource§fn close<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn close<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), ConnectorError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Source§fn cancellation_policy(&self) -> ConnectorCancellationPolicy
fn cancellation_policy(&self) -> ConnectorCancellationPolicy
Source§fn recovery_identity_options(
&self,
_config: &ConnectorConfig,
) -> Result<Option<BTreeMap<String, String>>, ConnectorError>
fn recovery_identity_options( &self, _config: &ConnectorConfig, ) -> Result<Option<BTreeMap<String, String>>, ConnectorError>
Auto Trait Implementations§
impl !RefUnwindSafe for KafkaSource
impl !Sync for KafkaSource
impl !UnwindSafe for KafkaSource
impl Freeze for KafkaSource
impl Send for KafkaSource
impl Unpin for KafkaSource
impl UnsafeUnpin for KafkaSource
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
U: Sized,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
U: Sized,
self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read moreSource§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Any.§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
impl<T> MaybeSend for Twhere
T: Send,
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2where
T: SharedNiching<N1, N2>,
N1: Niching<T>,
N2: Niching<T>,
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2where
T: SharedNiching<N1, N2>,
N1: Niching<T>,
N2: Niching<T>,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Pointee for T
impl<T> Pointee for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.