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 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
// Copyright 2020 Palantir Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. use crate::blocking; use crate::client::ClientState; use crate::config::{ProxyConfig, SecurityConfig, ServiceConfig}; use crate::raw::{BuildRawClient, DefaultRawClientBuilder}; use crate::{Client, HostMetricsRegistry, UserAgent}; use arc_swap::ArcSwap; use conjure_error::Error; use std::borrow::Cow; use std::sync::Arc; use std::time::Duration; use url::Url; use witchcraft_metrics::MetricRegistry; const MESH_PREFIX: &str = "mesh-"; /// A builder to construct `Client`s and `blocking::Client`s. pub struct Builder<T = DefaultRawClientBuilder> { service: Option<String>, user_agent: Option<UserAgent>, uris: Vec<Url>, security: SecurityConfig, proxy: ProxyConfig, connect_timeout: Duration, read_timeout: Duration, write_timeout: Duration, backoff_slot_size: Duration, max_num_retries: u32, client_qos: ClientQos, server_qos: ServerQos, service_error: ServiceError, idempotency: Idempotency, node_selection_strategy: NodeSelectionStrategy, metrics: Option<Arc<MetricRegistry>>, host_metrics: Option<Arc<HostMetricsRegistry>>, rng_seed: Option<u64>, raw_client_builder: T, } impl Default for Builder { fn default() -> Builder { Builder::new() } } impl Builder { /// Creates a new builder with default settings. pub fn new() -> Builder { Builder { service: None, user_agent: None, uris: vec![], security: SecurityConfig::builder().build(), proxy: ProxyConfig::Direct, connect_timeout: Duration::from_secs(10), read_timeout: Duration::from_secs(5 * 60), write_timeout: Duration::from_secs(5 * 60), backoff_slot_size: Duration::from_millis(250), max_num_retries: 4, client_qos: ClientQos::Enabled, server_qos: ServerQos::AutomaticRetry, service_error: ServiceError::WrapInNewError, idempotency: Idempotency::ByMethod, node_selection_strategy: NodeSelectionStrategy::PinUntilError, metrics: None, host_metrics: None, rng_seed: None, raw_client_builder: DefaultRawClientBuilder, } } } impl<T> Builder<T> { /// Applies configuration settings from a `ServiceConfig` to the builder. pub fn from_config(&mut self, config: &ServiceConfig) -> &mut Self { self.uris(config.uris().to_vec()); if let Some(security) = config.security() { self.security(security.clone()); } if let Some(proxy) = config.proxy() { self.proxy(proxy.clone()); } if let Some(connect_timeout) = config.connect_timeout() { self.connect_timeout(connect_timeout); } if let Some(read_timeout) = config.read_timeout() { self.read_timeout(read_timeout); } if let Some(write_timeout) = config.write_timeout() { self.write_timeout(write_timeout); } if let Some(backoff_slot_size) = config.backoff_slot_size() { self.backoff_slot_size(backoff_slot_size); } if let Some(max_num_retries) = config.max_num_retries() { self.max_num_retries(max_num_retries); } self } /// Sets the name of the service this client will communicate with. /// /// This is used in logging and metrics to allow differentiation between different clients. /// /// Required. pub fn service(&mut self, service: &str) -> &mut Self { self.service = Some(service.to_string()); self } /// Returns the builder's configured service name. pub fn get_service(&self) -> Option<&str> { self.service.as_deref() } /// Sets the user agent sent by this client. /// /// Required. pub fn user_agent(&mut self, user_agent: UserAgent) -> &mut Self { self.user_agent = Some(user_agent); self } /// Returns the builder's configured user agent. pub fn get_user_agent(&self) -> Option<&UserAgent> { self.user_agent.as_ref() } /// Appends a URI to the URIs list. /// /// Defaults to an empty list. pub fn uri(&mut self, uri: Url) -> &mut Self { self.uris.push(uri); self } /// Sets the URIs list. /// /// Defaults to an empty list. pub fn uris(&mut self, uris: Vec<Url>) -> &mut Self { self.uris = uris; self } /// Returns the builder's configured URIs list. pub fn get_uris(&self) -> &[Url] { &self.uris } /// Sets the security configuration. /// /// Defaults to an empty configuration. pub fn security(&mut self, security: SecurityConfig) -> &mut Self { self.security = security; self } /// Returns the builder's configured security configuration. pub fn get_security(&self) -> &SecurityConfig { &self.security } /// Sets the proxy configuration. /// /// Defaults to `ProxyConfig::Direct` (i.e. no proxy). pub fn proxy(&mut self, proxy: ProxyConfig) -> &mut Self { self.proxy = proxy; self } /// Returns the builder's configured proxy configuration. pub fn get_proxy(&self) -> &ProxyConfig { &self.proxy } /// Sets the connect timeout. /// /// Defaults to 10 seconds. pub fn connect_timeout(&mut self, connect_timeout: Duration) -> &mut Self { self.connect_timeout = connect_timeout; self } /// Returns the builder's configured connect timeout. pub fn get_connect_timeout(&self) -> Duration { self.connect_timeout } /// Sets the read timeout. /// /// This timeout applies to socket-level read attempts. /// /// Defaults to 5 minutes. pub fn read_timeout(&mut self, read_timeout: Duration) -> &mut Self { self.read_timeout = read_timeout; self } /// Returns the builder's configured read timeout. pub fn get_read_timeout(&self) -> Duration { self.read_timeout } /// Sets the write timeout. /// /// This timeout applies to socket-level write attempts. /// /// Defaults to 5 minutes. pub fn write_timeout(&mut self, write_timeout: Duration) -> &mut Self { self.write_timeout = write_timeout; self } /// Returns the builder's configured write timeout. pub fn get_write_timeout(&self) -> Duration { self.write_timeout } /// Sets the backoff slot size. /// /// This is the upper bound on the initial delay before retrying a request. It grows exponentially as additional /// attempts are made for a given request. /// /// Defaults to 250 milliseconds. pub fn backoff_slot_size(&mut self, backoff_slot_size: Duration) -> &mut Self { self.backoff_slot_size = backoff_slot_size; self } /// Returns the builder's configured backoff slot size. pub fn get_backoff_slot_size(&self) -> Duration { self.backoff_slot_size } /// Sets the maximum number of times a request attempt will be retried before giving up. /// /// Defaults to 4. pub fn max_num_retries(&mut self, max_num_retries: u32) -> &mut Self { self.max_num_retries = max_num_retries; self } /// Returns the builder's configured maximum number of retries. pub fn get_max_num_retries(&self) -> u32 { self.max_num_retries } /// Sets the client's internal rate limiting behavior. /// /// Defaults to `ClientQos::Enabled`. pub fn client_qos(&mut self, client_qos: ClientQos) -> &mut Self { self.client_qos = client_qos; self } /// Returns the builder's configured internal rate limiting behavior. pub fn get_client_qos(&self) -> ClientQos { self.client_qos } /// Sets the client's behavior in response to a QoS error from the server. /// /// Defaults to `ServerQos::AutomaticRetry`. pub fn server_qos(&mut self, server_qos: ServerQos) -> &mut Self { self.server_qos = server_qos; self } /// Returns the builder's configured server QoS behavior. pub fn get_server_qos(&self) -> ServerQos { self.server_qos } /// Sets the client's behavior in response to a service error from the server. /// /// Defaults to `ServiceError::WrapInNewError`. pub fn service_error(&mut self, service_error: ServiceError) -> &mut Self { self.service_error = service_error; self } /// Returns the builder's configured service error handling behavior. pub fn get_service_error(&self) -> ServiceError { self.service_error } /// Sets the client's behavior to determine if a request is idempotent or not. /// /// Only idempotent requests will be retried. /// /// Defaults to `Idempotency::ByMethod`. pub fn idempotency(&mut self, idempotency: Idempotency) -> &mut Self { self.idempotency = idempotency; self } /// Returns the builder's configured idempotency handling behavior. pub fn get_idempotency(&self) -> Idempotency { self.idempotency } /// Sets the client's strategy for selecting a node for a request. /// /// Defaults to `NodeSelectionStrategy::PinUntilError`. pub fn node_selection_strategy( &mut self, node_selection_strategy: NodeSelectionStrategy, ) -> &mut Self { self.node_selection_strategy = node_selection_strategy; self } /// Returns the builder's configured node selection strategy. pub fn get_node_selection_strategy(&self) -> NodeSelectionStrategy { self.node_selection_strategy } /// Sets the metric registry used to register client metrics. /// /// Defaults to no registry. pub fn metrics(&mut self, metrics: Arc<MetricRegistry>) -> &mut Self { self.metrics = Some(metrics); self } /// Returns the builder's configured metric registry. pub fn get_metrics(&self) -> Option<&Arc<MetricRegistry>> { self.metrics.as_ref() } /// Sets the host metrics registry used to track host performance. /// /// Defaults to no registry. pub fn host_metrics(&mut self, host_metrics: Arc<HostMetricsRegistry>) -> &mut Self { self.host_metrics = Some(host_metrics); self } /// Returns the builder's configured host metrics registry. pub fn get_host_metrics(&self) -> Option<&Arc<HostMetricsRegistry>> { self.host_metrics.as_ref() } /// Sets a seed used to initialize the client's random number generators. /// /// Several components of the client rely on entropy. If set, the client will use the seed to initialize its /// internal random number generators such that clients created with the same configuration will produce the same /// behavior. /// /// Defaults to no seed. pub fn rng_seed(&mut self, rng_seed: u64) -> &mut Self { self.rng_seed = Some(rng_seed); self } /// Returns the builder's configured RNG seed. pub fn get_rng_seed(&self) -> Option<u64> { self.rng_seed } /// Sets the raw client builder. /// /// Defaults to `DefaultRawClientBuilder`. pub fn with_raw_client_builder<U>(self, raw_client_builder: U) -> Builder<U> { Builder { service: self.service, user_agent: self.user_agent, uris: self.uris, security: self.security, proxy: self.proxy, connect_timeout: self.connect_timeout, read_timeout: self.read_timeout, write_timeout: self.write_timeout, backoff_slot_size: self.backoff_slot_size, max_num_retries: self.max_num_retries, client_qos: self.client_qos, server_qos: self.server_qos, service_error: self.service_error, idempotency: self.idempotency, node_selection_strategy: self.node_selection_strategy, metrics: self.metrics, host_metrics: self.host_metrics, rng_seed: self.rng_seed, raw_client_builder, } } /// Returns the builder's configured raw client builder. pub fn get_raw_client_builder(&self) -> &T { &self.raw_client_builder } pub(crate) fn mesh_mode(&self) -> bool { self.uris .iter() .any(|uri| uri.scheme().starts_with(MESH_PREFIX)) } pub(crate) fn postprocessed_uris(&self) -> Result<Cow<'_, [Url]>, Error> { if self.mesh_mode() { if self.uris.len() != 1 { return Err(Error::internal_safe("mesh mode expects exactly one URI") .with_safe_param("uris", &self.uris)); } let uri = self.uris[0] .as_str() .strip_prefix(MESH_PREFIX) .unwrap() .parse() .unwrap(); Ok(Cow::Owned(vec![uri])) } else { Ok(Cow::Borrowed(&self.uris)) } } } impl<T> Builder<T> where T: BuildRawClient, { /// Creates a new `Client`. /// /// # Panics /// /// Panics if `service` or `user_agent` is not set. pub fn build(&self) -> Result<Client<T::RawClient>, Error> { let state = ClientState::new(self)?; Ok(Client::new(Arc::new(ArcSwap::new(Arc::new(state))), None)) } /// Creates a new `blocking::Client`. /// /// # Panics /// /// Panics if `service` or `user_agent` is not set. pub fn build_blocking(&self) -> Result<blocking::Client<T::RawClient>, Error> { self.build().map(blocking::Client) } } /// Specifies the beahavior of client-side sympathetic rate limiting. #[derive(Debug, Copy, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum ClientQos { /// Enable client side rate limiting. /// /// This is the default behavior. Enabled, /// Disables client-side rate limiting. /// /// This should only be used when there are known issues with the interaction between a service's rate limiting /// implementation and the client's. DangerousDisableSympatheticClientQos, } /// Specifies the behavior of a client in response to a `QoS` error from a server. /// /// QoS errors have status codes 429 or 503. #[derive(Debug, Copy, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum ServerQos { /// The client will automatically retry the request when possible in response to a QoS error. /// /// This is the default behavior. AutomaticRetry, /// The client will transparently propagate the QoS error without retrying. /// /// This is designed for use when an upstream service has better context on how to handle a QoS error. Propagating /// the error upstream to that service without retrying allows it to handle retry logic internally. Propagate429And503ToCaller, } /// Specifies the behavior of the client in response to a service error from a server. /// /// Service errors are encoded as responses with a 4xx or 5xx response code and a body containing a `SerializableError`. #[derive(Debug, Copy, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum ServiceError { /// The service error will be propagated as a new internal service error. /// /// The error's cause will contain the information about the received service error, but the error constructed by /// the client will have a different error instance ID, type, etc. /// /// This is the default behavior. WrapInNewError, /// The service error will be transparently propagated without change. /// /// This is designed for use when proxying a request to another node, commonly of the same service. By preserving /// the original error's instance ID, type, etc, the upstream service will be able to process the error properly. PropagateToCaller, } /// Specifies the manner in which the client decides if a request is idempotent or not. #[derive(Debug, Copy, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum Idempotency { /// All requests are assumed to be idempotent. Always, /// Only requests with HTTP methods defined as idempotent (GET, HEAD, OPTIONS, TRACE, PUT, and DELETE) are assumed /// to be idempotent. /// /// This is the default behavior. ByMethod, /// No requests are assumed to be idempotent. Never, } /// Specifies the strategy used to select a node of a service to use for a request attempt. #[derive(Debug, Copy, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum NodeSelectionStrategy { /// Pin to a single host as long as it continues to successfully respond to requests. /// /// If the pinned node fails to successfully respond, the client will rotate through the other nodes until it finds /// one that can successfully respond and then pin to that new node. The pinned node will also be randomly rotated /// periodically to help spread load across the cluster. /// /// This is the default behavior. PinUntilError, /// Like `PinUntilError` except that the pinned node is never randomly shuffled. PinUntilErrorWithoutReshuffle, /// For each new request, select the "next" node (in some unspecified order). Balanced, }