Struct mz_kafka_util::client::TunnelingClientContext
source · pub struct TunnelingClientContext<C> {
inner: C,
rewrites: Arc<Mutex<BTreeMap<BrokerAddr, BrokerRewriteHandle>>>,
default_tunnel: TunnelConfig,
in_task: InTask,
ssh_tunnel_manager: SshTunnelManager,
ssh_timeout_config: SshTimeoutConfig,
aws_config: Option<SdkConfig>,
runtime: Handle,
}
Expand description
A client context that supports rewriting broker addresses.
Fields§
§inner: C
§rewrites: Arc<Mutex<BTreeMap<BrokerAddr, BrokerRewriteHandle>>>
§default_tunnel: TunnelConfig
§in_task: InTask
§ssh_tunnel_manager: SshTunnelManager
§ssh_timeout_config: SshTimeoutConfig
§aws_config: Option<SdkConfig>
§runtime: Handle
Implementations§
source§impl<C> TunnelingClientContext<C>
impl<C> TunnelingClientContext<C>
sourcepub fn new(
inner: C,
runtime: Handle,
ssh_tunnel_manager: SshTunnelManager,
ssh_timeout_config: SshTimeoutConfig,
aws_config: Option<SdkConfig>,
in_task: InTask,
) -> TunnelingClientContext<C>
pub fn new( inner: C, runtime: Handle, ssh_tunnel_manager: SshTunnelManager, ssh_timeout_config: SshTimeoutConfig, aws_config: Option<SdkConfig>, in_task: InTask, ) -> TunnelingClientContext<C>
Constructs a new context that wraps inner
.
sourcepub fn set_default_tunnel(&mut self, tunnel: TunnelConfig)
pub fn set_default_tunnel(&mut self, tunnel: TunnelConfig)
Adds the default broker rewrite rule.
Connections to brokers that aren’t specified in other rewrites will be rewritten to connect to
rewrite_host
and rewrite_port
instead.
sourcepub async fn add_ssh_tunnel(
&self,
broker: BrokerAddr,
tunnel: SshTunnelConfig,
) -> Result<(), Error>
pub async fn add_ssh_tunnel( &self, broker: BrokerAddr, tunnel: SshTunnelConfig, ) -> Result<(), Error>
Adds an SSH tunnel for a specific broker.
Overrides the existing SSH tunnel or rewrite for this broker, if any.
This tunnel allows the rewrite to evolve over time, for example, if the ssh tunnel’s address changes if it fails and restarts.
sourcepub fn add_broker_rewrite(&self, broker: BrokerAddr, rewrite: BrokerRewrite)
pub fn add_broker_rewrite(&self, broker: BrokerAddr, rewrite: BrokerRewrite)
Adds a broker rewrite rule.
Overrides the existing SSH tunnel or rewrite for this broker, if any.
rewrite
is BrokerRewrite
that specifies how to rewrite the address for broker
.
sourcepub fn tunnel_status(&self) -> SshTunnelStatus
pub fn tunnel_status(&self) -> SshTunnelStatus
Returns a consolidated SshTunnelStatus
that communicates the status
of all active ssh tunnels self
knows about.
Trait Implementations§
source§impl<C> ClientContext for TunnelingClientContext<C>where
C: ClientContext,
impl<C> ClientContext for TunnelingClientContext<C>where
C: ClientContext,
source§const ENABLE_REFRESH_OAUTH_TOKEN: bool = true
const ENABLE_REFRESH_OAUTH_TOKEN: bool = true
OAUTHBEARER
token
by calling ClientContext::generate_oauth_token
. Read moresource§fn generate_oauth_token(
&self,
_oauthbearer_config: Option<&str>,
) -> Result<OAuthToken, Box<dyn Error>>
fn generate_oauth_token( &self, _oauthbearer_config: Option<&str>, ) -> Result<OAuthToken, Box<dyn Error>>
source§fn resolve_broker_addr(
&self,
host: &str,
port: u16,
) -> Result<Vec<SocketAddr>, Error>
fn resolve_broker_addr( &self, host: &str, port: u16, ) -> Result<Vec<SocketAddr>, Error>
source§fn log(&self, level: RDKafkaLogLevel, fac: &str, log_message: &str)
fn log(&self, level: RDKafkaLogLevel, fac: &str, log_message: &str)
source§fn error(&self, error: KafkaError, reason: &str)
fn error(&self, error: KafkaError, reason: &str)
source§fn stats(&self, statistics: Statistics)
fn stats(&self, statistics: Statistics)
statistics.interval.ms
configuration parameter must be specified. Read moresource§impl<C: Clone> Clone for TunnelingClientContext<C>
impl<C: Clone> Clone for TunnelingClientContext<C>
source§fn clone(&self) -> TunnelingClientContext<C>
fn clone(&self) -> TunnelingClientContext<C>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<C> ConsumerContext for TunnelingClientContext<C>where
C: ConsumerContext,
impl<C> ConsumerContext for TunnelingClientContext<C>where
C: ConsumerContext,
source§fn rebalance(
&self,
native_client: &NativeClient,
err: RDKafkaRespErr,
tpl: &mut TopicPartitionList,
)
fn rebalance( &self, native_client: &NativeClient, err: RDKafkaRespErr, tpl: &mut TopicPartitionList, )
pre_rebalance
and
post_rebalance
methods. If this
method is overridden, it will be responsibility of the user to call them
if needed.source§fn pre_rebalance<'a>(&self, rebalance: &Rebalance<'a>)
fn pre_rebalance<'a>(&self, rebalance: &Rebalance<'a>)
source§fn post_rebalance<'a>(&self, rebalance: &Rebalance<'a>)
fn post_rebalance<'a>(&self, rebalance: &Rebalance<'a>)
source§fn commit_callback(&self, result: KafkaResult<()>, offsets: &TopicPartitionList)
fn commit_callback(&self, result: KafkaResult<()>, offsets: &TopicPartitionList)
source§fn main_queue_min_poll_interval(&self) -> Timeout
fn main_queue_min_poll_interval(&self) -> Timeout
source§impl<C> ProducerContext for TunnelingClientContext<C>where
C: ProducerContext,
impl<C> ProducerContext for TunnelingClientContext<C>where
C: ProducerContext,
§type DeliveryOpaque = <C as ProducerContext>::DeliveryOpaque
type DeliveryOpaque = <C as ProducerContext>::DeliveryOpaque
DeliveryOpaque
is a user-defined structure that will be passed to
the producer when producing a message, and returned to the delivery
method once the message has been delivered, or failed to.source§fn delivery(
&self,
delivery_result: &DeliveryResult<'_>,
delivery_opaque: Self::DeliveryOpaque,
)
fn delivery( &self, delivery_result: &DeliveryResult<'_>, delivery_opaque: Self::DeliveryOpaque, )
DeliveryOpaque
will be the one provided by the user
when calling send.Auto Trait Implementations§
impl<C> Freeze for TunnelingClientContext<C>where
C: Freeze,
impl<C> !RefUnwindSafe for TunnelingClientContext<C>
impl<C> Send for TunnelingClientContext<C>where
C: Send,
impl<C> Sync for TunnelingClientContext<C>where
C: Sync,
impl<C> Unpin for TunnelingClientContext<C>where
C: Unpin,
impl<C> !UnwindSafe for TunnelingClientContext<C>
Blanket Implementations§
source§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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request