1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
//! Contains the events and functionality for monitoring behavior of the connection pooling of a
//! `Client`.
use std::{sync::Arc, time::Duration};
use serde::{Deserialize, Serialize};
use crate::{bson::oid::ObjectId, options::ServerAddress, serde_util};
use derivative::Derivative;
use derive_more::From;
#[cfg(feature = "tracing-unstable")]
use crate::trace::{
connection::ConnectionTracingEventEmitter,
trace_or_log_enabled,
TracingOrLogLevel,
CONNECTION_TRACING_EVENT_TARGET,
};
/// We implement `Deserialize` for all of the event types so that we can more easily parse the CMAP
/// spec tests. However, we have no need to parse the address field from the JSON files (if it's
/// even present). To facilitate populating the address field with an empty value when
/// deserializing, we define a private `empty_address` function that the events can specify as the
/// custom deserialization value for each address field.
fn empty_address() -> ServerAddress {
ServerAddress::Tcp {
host: Default::default(),
port: None,
}
}
/// Event emitted when a connection pool is created.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[non_exhaustive]
pub struct PoolCreatedEvent {
/// The address of the server that the pool's connections will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The options used for the pool.
pub options: Option<ConnectionPoolOptions>,
}
/// Contains the options for creating a connection pool. While these options are specified at the
/// client-level, `ConnectionPoolOptions` is exposed for the purpose of CMAP event handling.
#[derive(Clone, Default, Deserialize, Debug, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ConnectionPoolOptions {
/// Connections that have been ready for usage in the pool for longer than `max_idle_time` will
/// not be used.
///
/// The default is that connections will not be closed due to being idle.
#[serde(rename = "maxIdleTimeMS")]
#[serde(default)]
#[serde(deserialize_with = "serde_util::deserialize_duration_option_from_u64_millis")]
pub max_idle_time: Option<Duration>,
/// The maximum number of connections that the pool can have at a given time. This includes
/// connections which are currently checked out of the pool.
///
/// The default is 10.
pub max_pool_size: Option<u32>,
/// The minimum number of connections that the pool can have at a given time. This includes
/// connections which are currently checked out of the pool. If fewer than `min_pool_size`
/// connections are in the pool, connections will be added to the pool in the background.
///
/// The default is that no minimum is enforced
pub min_pool_size: Option<u32>,
}
/// Event emitted when a connection pool becomes ready.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[non_exhaustive]
pub struct PoolReadyEvent {
/// The address of the server that the pool's connections will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
}
/// Event emitted when a connection pool is cleared.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[non_exhaustive]
pub struct PoolClearedEvent {
/// The address of the server that the pool's connections will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// If the connection is to a load balancer, the id of the selected backend.
pub service_id: Option<ObjectId>,
}
/// Event emitted when a connection pool is cleared.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[non_exhaustive]
pub struct PoolClosedEvent {
/// The address of the server that the pool's connections will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
}
/// Event emitted when a connection is created.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ConnectionCreatedEvent {
/// The address of the server that the connection will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The unique ID of the connection. This is not used for anything internally, but can be used
/// to identify other events related to this connection.
#[serde(default = "default_connection_id")]
pub connection_id: u32,
}
/// Event emitted when a connection is ready to be used. This indicates that all the necessary
/// prerequisites for using a connection (handshake, authentication, etc.) have been completed.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ConnectionReadyEvent {
/// The address of the server that the connection is connected to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The unique ID of the connection. This is not used for anything internally, but can be used
/// to identify other events related to this connection.
#[serde(default = "default_connection_id")]
pub connection_id: u32,
/// The time it took to establish the connection.
#[serde(default = "Duration::default")]
pub duration: Duration,
}
/// Event emitted when a connection is closed.
#[derive(Clone, Debug, Deserialize, Derivative, Serialize)]
#[derivative(PartialEq)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ConnectionClosedEvent {
/// The address of the server that the connection was connected to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The unique ID of the connection. This is not used for anything internally, but can be used
/// to identify other events related to this connection.
#[serde(default)]
pub connection_id: u32,
/// The reason that the connection was closed.
pub reason: ConnectionClosedReason,
/// If the `reason` connection checkout failed was `Error`,the associated
/// error is contained here. This is attached so we can include it in log messages;
/// in future work we may add this to public API on the event itself. TODO: DRIVERS-2495
#[cfg(feature = "tracing-unstable")]
#[serde(skip)]
#[derivative(PartialEq = "ignore")]
pub(crate) error: Option<crate::error::Error>,
}
/// The reasons that a connection may be closed.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub enum ConnectionClosedReason {
/// The connection pool has been cleared since the connection was created.
Stale,
/// The connection has been available for longer than `max_idle_time` without being used.
Idle,
/// An error occurred while using the connection.
Error,
/// The connection was dropped during read or write.
Dropped,
/// The pool that the connection belongs to has been closed.
PoolClosed,
}
/// Event emitted when a thread begins checking out a connection to use for an operation.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[non_exhaustive]
pub struct ConnectionCheckoutStartedEvent {
/// The address of the server that the connection will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
}
/// Event emitted when a thread is unable to check out a connection.
#[derive(Clone, Debug, Deserialize, Derivative, Serialize)]
#[derivative(PartialEq)]
#[non_exhaustive]
pub struct ConnectionCheckoutFailedEvent {
/// The address of the server that the connection would have connected to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The reason a connection was unable to be checked out.
pub reason: ConnectionCheckoutFailedReason,
/// If the `reason` connection checkout failed was `ConnectionError`,the associated
/// error is contained here. This is attached so we can include it in log messages;
/// in future work we may add this to public API on the event itself. TODO: DRIVERS-2495
#[cfg(feature = "tracing-unstable")]
#[serde(skip)]
#[derivative(PartialEq = "ignore")]
pub(crate) error: Option<crate::error::Error>,
/// See [ConnectionCheckedOutEvent::duration].
#[serde(default = "Duration::default")]
pub duration: Duration,
}
/// The reasons a connection may not be able to be checked out.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub enum ConnectionCheckoutFailedReason {
/// The `wait_queue_timeout` has elapsed while waiting for a connection to be available.
Timeout,
/// An error occurred while trying to establish a connection (e.g. during the handshake or
/// authentication).
ConnectionError,
}
/// Event emitted when a connection is successfully checked out.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ConnectionCheckedOutEvent {
/// The address of the server that the connection will connect to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The unique ID of the connection. This is not used for anything internally, but can be used
/// to identify other events related to this connection.
#[serde(default = "default_connection_id")]
pub connection_id: u32,
/// The time it took to check out the connection.
#[serde(default = "Duration::default")]
pub duration: Duration,
}
/// Event emitted when a connection is checked back into a connection pool.
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ConnectionCheckedInEvent {
/// The address of the server that the connection was connected to.
#[serde(default = "self::empty_address")]
#[serde(skip_deserializing)]
pub address: ServerAddress,
/// The unique ID of the connection. This is not used for anything internally, but can be used
/// to identify other events related to this connection.
#[serde(default = "default_connection_id")]
pub connection_id: u32,
}
/// The default connection ID to use for deserialization of events from test files.
/// This value will "match" any connection ID.
fn default_connection_id() -> u32 {
42
}
/// Applications can implement this trait to specify custom logic to run on each CMAP event sent
/// by the driver.
///
/// ```rust
/// # use std::sync::Arc;
/// #
/// # use mongodb::{
/// # error::Result,
/// # event::cmap::{
/// # CmapEventHandler,
/// # ConnectionCheckoutFailedEvent
/// # },
/// # options::ClientOptions,
/// # };
/// # #[cfg(any(feature = "sync", feature = "tokio-sync"))]
/// # use mongodb::sync::Client;
/// # #[cfg(all(not(feature = "sync"), not(feature = "tokio-sync")))]
/// # use mongodb::Client;
/// #
/// struct FailedCheckoutLogger;
///
/// impl CmapEventHandler for FailedCheckoutLogger {
/// fn handle_connection_checkout_failed_event(&self, event: ConnectionCheckoutFailedEvent) {
/// eprintln!("Failed connection checkout: {:?}", event);
/// }
/// }
///
/// # fn do_stuff() -> Result<()> {
/// let handler: Arc<dyn CmapEventHandler> = Arc::new(FailedCheckoutLogger);
/// let options = ClientOptions::builder()
/// .cmap_event_handler(handler)
/// .build();
/// let client = Client::with_options(options)?;
///
/// // Do things with the client, and failed connection pool checkouts will be logged to stderr.
/// # Ok(())
/// # }
/// ```
pub trait CmapEventHandler: Send + Sync {
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection pool is created.
fn handle_pool_created_event(&self, _event: PoolCreatedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection pool marked as ready for use.
///
/// Connections may not be created by or checked out from the pool until it has been marked as
/// ready.
fn handle_pool_ready_event(&self, _event: PoolReadyEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection pool is cleared.
fn handle_pool_cleared_event(&self, _event: PoolClearedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection pool is cleared.
fn handle_pool_closed_event(&self, _event: PoolClosedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection is created.
fn handle_connection_created_event(&self, _event: ConnectionCreatedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection is ready to be used.
fn handle_connection_ready_event(&self, _event: ConnectionReadyEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection is closed.
fn handle_connection_closed_event(&self, _event: ConnectionClosedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a thread begins checking out a connection to use for an operation.
fn handle_connection_checkout_started_event(&self, _event: ConnectionCheckoutStartedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a thread is unable to check out a connection.
fn handle_connection_checkout_failed_event(&self, _event: ConnectionCheckoutFailedEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection is successfully checked out.
fn handle_connection_checked_out_event(&self, _event: ConnectionCheckedOutEvent) {}
/// A [`Client`](../../struct.Client.html) will call this method on each registered handler
/// whenever a connection is checked back into a connection pool.
fn handle_connection_checked_in_event(&self, _event: ConnectionCheckedInEvent) {}
}
#[derive(Clone, Debug, PartialEq, From)]
pub(crate) enum CmapEvent {
PoolCreated(PoolCreatedEvent),
PoolReady(PoolReadyEvent),
PoolCleared(PoolClearedEvent),
PoolClosed(PoolClosedEvent),
ConnectionCreated(ConnectionCreatedEvent),
ConnectionReady(ConnectionReadyEvent),
ConnectionClosed(ConnectionClosedEvent),
ConnectionCheckoutStarted(ConnectionCheckoutStartedEvent),
ConnectionCheckoutFailed(ConnectionCheckoutFailedEvent),
ConnectionCheckedOut(ConnectionCheckedOutEvent),
ConnectionCheckedIn(ConnectionCheckedInEvent),
}
#[derive(Clone)]
pub(crate) struct CmapEventEmitter {
user_handler: Option<Arc<dyn CmapEventHandler>>,
#[cfg(feature = "tracing-unstable")]
tracing_emitter: ConnectionTracingEventEmitter,
}
impl CmapEventEmitter {
// the topology ID is only used when the tracing feature is on.
#[allow(unused_variables)]
pub(crate) fn new(
user_handler: Option<Arc<dyn CmapEventHandler>>,
topology_id: ObjectId,
) -> CmapEventEmitter {
Self {
user_handler,
#[cfg(feature = "tracing-unstable")]
tracing_emitter: ConnectionTracingEventEmitter::new(topology_id),
}
}
#[cfg(not(feature = "tracing-unstable"))]
pub(crate) fn emit_event(&self, generate_event: impl FnOnce() -> CmapEvent) {
if let Some(ref handler) = self.user_handler {
handle_cmap_event(handler.as_ref(), generate_event());
}
}
#[cfg(feature = "tracing-unstable")]
pub(crate) fn emit_event(&self, generate_event: impl FnOnce() -> CmapEvent) {
// if the user isn't actually interested in debug-level connection messages, we shouldn't
// bother with the expense of generating and emitting these events.
let tracing_emitter_to_use = if trace_or_log_enabled!(
target: CONNECTION_TRACING_EVENT_TARGET,
TracingOrLogLevel::Debug
) {
Some(&self.tracing_emitter)
} else {
None
};
match (&self.user_handler, tracing_emitter_to_use) {
(None, None) => {}
(None, Some(tracing_emitter)) => {
let event = generate_event();
handle_cmap_event(tracing_emitter, event);
}
(Some(user_handler), None) => {
let event = generate_event();
handle_cmap_event(user_handler.as_ref(), event);
}
(Some(user_handler), Some(tracing_emitter)) => {
let event = generate_event();
handle_cmap_event(user_handler.as_ref(), event.clone());
handle_cmap_event(tracing_emitter, event);
}
};
}
}
fn handle_cmap_event(handler: &dyn CmapEventHandler, event: CmapEvent) {
match event {
CmapEvent::PoolCreated(event) => handler.handle_pool_created_event(event),
CmapEvent::PoolReady(event) => handler.handle_pool_ready_event(event),
CmapEvent::PoolCleared(event) => handler.handle_pool_cleared_event(event),
CmapEvent::PoolClosed(event) => handler.handle_pool_closed_event(event),
CmapEvent::ConnectionCreated(event) => handler.handle_connection_created_event(event),
CmapEvent::ConnectionReady(event) => handler.handle_connection_ready_event(event),
CmapEvent::ConnectionClosed(event) => handler.handle_connection_closed_event(event),
CmapEvent::ConnectionCheckoutStarted(event) => {
handler.handle_connection_checkout_started_event(event)
}
CmapEvent::ConnectionCheckoutFailed(event) => {
handler.handle_connection_checkout_failed_event(event)
}
CmapEvent::ConnectionCheckedOut(event) => {
handler.handle_connection_checked_out_event(event)
}
CmapEvent::ConnectionCheckedIn(event) => handler.handle_connection_checked_in_event(event),
}
}