LCOV - code coverage report
Current view: top level - proxy/src/bin - proxy.rs (source / functions) Coverage Total Hit
Test: ccf45ed1c149555259baec52d6229a81013dcd6a.info Lines: 8.9 % 482 43
Test Date: 2024-08-21 17:32:46 Functions: 15.0 % 120 18

            Line data    Source code
       1              : use aws_config::environment::EnvironmentVariableCredentialsProvider;
       2              : use aws_config::imds::credentials::ImdsCredentialsProvider;
       3              : use aws_config::meta::credentials::CredentialsProviderChain;
       4              : use aws_config::meta::region::RegionProviderChain;
       5              : use aws_config::profile::ProfileFileCredentialsProvider;
       6              : use aws_config::provider_config::ProviderConfig;
       7              : use aws_config::web_identity_token::WebIdentityTokenCredentialsProvider;
       8              : use aws_config::Region;
       9              : use futures::future::Either;
      10              : use proxy::auth;
      11              : use proxy::auth::backend::AuthRateLimiter;
      12              : use proxy::auth::backend::MaybeOwned;
      13              : use proxy::cancellation::CancelMap;
      14              : use proxy::cancellation::CancellationHandler;
      15              : use proxy::config::remote_storage_from_toml;
      16              : use proxy::config::AuthenticationConfig;
      17              : use proxy::config::CacheOptions;
      18              : use proxy::config::HttpConfig;
      19              : use proxy::config::ProjectInfoCacheOptions;
      20              : use proxy::console;
      21              : use proxy::context::parquet::ParquetUploadArgs;
      22              : use proxy::http;
      23              : use proxy::http::health_server::AppMetrics;
      24              : use proxy::metrics::Metrics;
      25              : use proxy::rate_limiter::EndpointRateLimiter;
      26              : use proxy::rate_limiter::LeakyBucketConfig;
      27              : use proxy::rate_limiter::RateBucketInfo;
      28              : use proxy::rate_limiter::WakeComputeRateLimiter;
      29              : use proxy::redis::cancellation_publisher::RedisPublisherClient;
      30              : use proxy::redis::connection_with_credentials_provider::ConnectionWithCredentialsProvider;
      31              : use proxy::redis::elasticache;
      32              : use proxy::redis::notifications;
      33              : use proxy::scram::threadpool::ThreadPool;
      34              : use proxy::serverless::cancel_set::CancelSet;
      35              : use proxy::serverless::GlobalConnPoolOptions;
      36              : use proxy::usage_metrics;
      37              : 
      38              : use anyhow::bail;
      39              : use proxy::config::{self, ProxyConfig};
      40              : use proxy::serverless;
      41              : use remote_storage::RemoteStorageConfig;
      42              : use std::net::SocketAddr;
      43              : use std::pin::pin;
      44              : use std::sync::Arc;
      45              : use tokio::net::TcpListener;
      46              : use tokio::sync::Mutex;
      47              : use tokio::task::JoinSet;
      48              : use tokio_util::sync::CancellationToken;
      49              : use tracing::info;
      50              : use tracing::warn;
      51              : use tracing::Instrument;
      52              : use utils::{project_build_tag, project_git_version, sentry_init::init_sentry};
      53              : 
      54              : project_git_version!(GIT_VERSION);
      55              : project_build_tag!(BUILD_TAG);
      56              : 
      57              : use clap::{Parser, ValueEnum};
      58              : 
      59              : #[global_allocator]
      60              : static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
      61              : 
      62           20 : #[derive(Clone, Debug, ValueEnum)]
      63              : enum AuthBackend {
      64              :     Console,
      65              :     #[cfg(feature = "testing")]
      66              :     Postgres,
      67              :     Link,
      68              : }
      69              : 
      70              : /// Neon proxy/router
      71            4 : #[derive(Parser)]
      72              : #[command(version = GIT_VERSION, about)]
      73              : struct ProxyCliArgs {
      74              :     /// Name of the region this proxy is deployed in
      75            2 :     #[clap(long, default_value_t = String::new())]
      76            0 :     region: String,
      77              :     /// listen for incoming client connections on ip:port
      78              :     #[clap(short, long, default_value = "127.0.0.1:4432")]
      79            0 :     proxy: String,
      80            2 :     #[clap(value_enum, long, default_value_t = AuthBackend::Link)]
      81            0 :     auth_backend: AuthBackend,
      82              :     /// listen for management callback connection on ip:port
      83              :     #[clap(short, long, default_value = "127.0.0.1:7000")]
      84            0 :     mgmt: String,
      85              :     /// listen for incoming http connections (metrics, etc) on ip:port
      86              :     #[clap(long, default_value = "127.0.0.1:7001")]
      87            0 :     http: String,
      88              :     /// listen for incoming wss connections on ip:port
      89              :     #[clap(long)]
      90              :     wss: Option<String>,
      91              :     /// redirect unauthenticated users to the given uri in case of link auth
      92              :     #[clap(short, long, default_value = "http://localhost:3000/psql_session/")]
      93            0 :     uri: String,
      94              :     /// cloud API endpoint for authenticating users
      95              :     #[clap(
      96              :         short,
      97              :         long,
      98              :         default_value = "http://localhost:3000/authenticate_proxy_request/"
      99              :     )]
     100            0 :     auth_endpoint: String,
     101              :     /// path to TLS key for client postgres connections
     102              :     ///
     103              :     /// tls-key and tls-cert are for backwards compatibility, we can put all certs in one dir
     104              :     #[clap(short = 'k', long, alias = "ssl-key")]
     105              :     tls_key: Option<String>,
     106              :     /// path to TLS cert for client postgres connections
     107              :     ///
     108              :     /// tls-key and tls-cert are for backwards compatibility, we can put all certs in one dir
     109              :     #[clap(short = 'c', long, alias = "ssl-cert")]
     110              :     tls_cert: Option<String>,
     111              :     /// path to directory with TLS certificates for client postgres connections
     112              :     #[clap(long)]
     113              :     certs_dir: Option<String>,
     114              :     /// timeout for the TLS handshake
     115              :     #[clap(long, default_value = "15s", value_parser = humantime::parse_duration)]
     116            0 :     handshake_timeout: tokio::time::Duration,
     117              :     /// http endpoint to receive periodic metric updates
     118              :     #[clap(long)]
     119              :     metric_collection_endpoint: Option<String>,
     120              :     /// how often metrics should be sent to a collection endpoint
     121              :     #[clap(long)]
     122              :     metric_collection_interval: Option<String>,
     123              :     /// cache for `wake_compute` api method (use `size=0` to disable)
     124              :     #[clap(long, default_value = config::CacheOptions::CACHE_DEFAULT_OPTIONS)]
     125            0 :     wake_compute_cache: String,
     126              :     /// lock for `wake_compute` api method. example: "shards=32,permits=4,epoch=10m,timeout=1s". (use `permits=0` to disable).
     127              :     #[clap(long, default_value = config::ConcurrencyLockOptions::DEFAULT_OPTIONS_WAKE_COMPUTE_LOCK)]
     128            0 :     wake_compute_lock: String,
     129              :     /// lock for `connect_compute` api method. example: "shards=32,permits=4,epoch=10m,timeout=1s". (use `permits=0` to disable).
     130              :     #[clap(long, default_value = config::ConcurrencyLockOptions::DEFAULT_OPTIONS_CONNECT_COMPUTE_LOCK)]
     131            0 :     connect_compute_lock: String,
     132              :     /// Allow self-signed certificates for compute nodes (for testing)
     133            2 :     #[clap(long, default_value_t = false, value_parser = clap::builder::BoolishValueParser::new(), action = clap::ArgAction::Set)]
     134            0 :     allow_self_signed_compute: bool,
     135              :     #[clap(flatten)]
     136              :     sql_over_http: SqlOverHttpArgs,
     137              :     /// timeout for scram authentication protocol
     138              :     #[clap(long, default_value = "15s", value_parser = humantime::parse_duration)]
     139            0 :     scram_protocol_timeout: tokio::time::Duration,
     140              :     /// size of the threadpool for password hashing
     141            2 :     #[clap(long, default_value_t = 4)]
     142            0 :     scram_thread_pool_size: u8,
     143              :     /// Require that all incoming requests have a Proxy Protocol V2 packet **and** have an IP address associated.
     144            2 :     #[clap(long, default_value_t = false, value_parser = clap::builder::BoolishValueParser::new(), action = clap::ArgAction::Set)]
     145            0 :     require_client_ip: bool,
     146              :     /// Disable dynamic rate limiter and store the metrics to ensure its production behaviour.
     147            2 :     #[clap(long, default_value_t = true, value_parser = clap::builder::BoolishValueParser::new(), action = clap::ArgAction::Set)]
     148            0 :     disable_dynamic_rate_limiter: bool,
     149              :     /// Endpoint rate limiter max number of requests per second.
     150              :     ///
     151              :     /// Provided in the form '<Requests Per Second>@<Bucket Duration Size>'.
     152              :     /// Can be given multiple times for different bucket sizes.
     153           12 :     #[clap(long, default_values_t = RateBucketInfo::DEFAULT_ENDPOINT_SET)]
     154            2 :     endpoint_rps_limit: Vec<RateBucketInfo>,
     155              :     /// Wake compute rate limiter max number of requests per second.
     156           12 :     #[clap(long, default_values_t = RateBucketInfo::DEFAULT_SET)]
     157            2 :     wake_compute_limit: Vec<RateBucketInfo>,
     158              :     /// Whether the auth rate limiter actually takes effect (for testing)
     159            2 :     #[clap(long, default_value_t = false, value_parser = clap::builder::BoolishValueParser::new(), action = clap::ArgAction::Set)]
     160            0 :     auth_rate_limit_enabled: bool,
     161              :     /// Authentication rate limiter max number of hashes per second.
     162           12 :     #[clap(long, default_values_t = RateBucketInfo::DEFAULT_AUTH_SET)]
     163            2 :     auth_rate_limit: Vec<RateBucketInfo>,
     164              :     /// The IP subnet to use when considering whether two IP addresses are considered the same.
     165            2 :     #[clap(long, default_value_t = 64)]
     166            0 :     auth_rate_limit_ip_subnet: u8,
     167              :     /// Redis rate limiter max number of requests per second.
     168           12 :     #[clap(long, default_values_t = RateBucketInfo::DEFAULT_SET)]
     169            2 :     redis_rps_limit: Vec<RateBucketInfo>,
     170              :     /// cache for `allowed_ips` (use `size=0` to disable)
     171              :     #[clap(long, default_value = config::CacheOptions::CACHE_DEFAULT_OPTIONS)]
     172            0 :     allowed_ips_cache: String,
     173              :     /// cache for `role_secret` (use `size=0` to disable)
     174              :     #[clap(long, default_value = config::CacheOptions::CACHE_DEFAULT_OPTIONS)]
     175            0 :     role_secret_cache: String,
     176              :     /// redis url for notifications (if empty, redis_host:port will be used for both notifications and streaming connections)
     177              :     #[clap(long)]
     178              :     redis_notifications: Option<String>,
     179              :     /// what from the available authentications type to use for the regional redis we have. Supported are "irsa" and "plain".
     180              :     #[clap(long, default_value = "irsa")]
     181            0 :     redis_auth_type: String,
     182              :     /// redis host for streaming connections (might be different from the notifications host)
     183              :     #[clap(long)]
     184              :     redis_host: Option<String>,
     185              :     /// redis port for streaming connections (might be different from the notifications host)
     186              :     #[clap(long)]
     187              :     redis_port: Option<u16>,
     188              :     /// redis cluster name, used in aws elasticache
     189              :     #[clap(long)]
     190              :     redis_cluster_name: Option<String>,
     191              :     /// redis user_id, used in aws elasticache
     192              :     #[clap(long)]
     193              :     redis_user_id: Option<String>,
     194              :     /// aws region to retrieve credentials
     195            2 :     #[clap(long, default_value_t = String::new())]
     196            0 :     aws_region: String,
     197              :     /// cache for `project_info` (use `size=0` to disable)
     198              :     #[clap(long, default_value = config::ProjectInfoCacheOptions::CACHE_DEFAULT_OPTIONS)]
     199            0 :     project_info_cache: String,
     200              :     /// cache for all valid endpoints
     201              :     #[clap(long, default_value = config::EndpointCacheConfig::CACHE_DEFAULT_OPTIONS)]
     202            0 :     endpoint_cache_config: String,
     203              :     #[clap(flatten)]
     204              :     parquet_upload: ParquetUploadArgs,
     205              : 
     206              :     /// interval for backup metric collection
     207              :     #[clap(long, default_value = "10m", value_parser = humantime::parse_duration)]
     208            0 :     metric_backup_collection_interval: std::time::Duration,
     209              :     /// remote storage configuration for backup metric collection
     210              :     /// Encoded as toml (same format as pageservers), eg
     211              :     /// `{bucket_name='the-bucket',bucket_region='us-east-1',prefix_in_bucket='proxy',endpoint='http://minio:9000'}`
     212              :     #[clap(long, value_parser = remote_storage_from_toml)]
     213              :     metric_backup_collection_remote_storage: Option<RemoteStorageConfig>,
     214              :     /// chunk size for backup metric collection
     215              :     /// Size of each event is no more than 400 bytes, so 2**22 is about 200MB before the compression.
     216              :     #[clap(long, default_value = "4194304")]
     217            0 :     metric_backup_collection_chunk_size: usize,
     218              :     /// Whether to retry the connection to the compute node
     219              :     #[clap(long, default_value = config::RetryConfig::CONNECT_TO_COMPUTE_DEFAULT_VALUES)]
     220            0 :     connect_to_compute_retry: String,
     221              :     /// Whether to retry the wake_compute request
     222              :     #[clap(long, default_value = config::RetryConfig::WAKE_COMPUTE_DEFAULT_VALUES)]
     223            0 :     wake_compute_retry: String,
     224              : }
     225              : 
     226            4 : #[derive(clap::Args, Clone, Copy, Debug)]
     227              : struct SqlOverHttpArgs {
     228              :     /// timeout for http connection requests
     229              :     #[clap(long, default_value = "15s", value_parser = humantime::parse_duration)]
     230            0 :     sql_over_http_timeout: tokio::time::Duration,
     231              : 
     232              :     /// Whether the SQL over http pool is opt-in
     233            2 :     #[clap(long, default_value_t = true, value_parser = clap::builder::BoolishValueParser::new(), action = clap::ArgAction::Set)]
     234            0 :     sql_over_http_pool_opt_in: bool,
     235              : 
     236              :     /// How many connections to pool for each endpoint. Excess connections are discarded
     237            2 :     #[clap(long, default_value_t = 20)]
     238            0 :     sql_over_http_pool_max_conns_per_endpoint: usize,
     239              : 
     240              :     /// How many connections to pool for each endpoint. Excess connections are discarded
     241            2 :     #[clap(long, default_value_t = 20000)]
     242            0 :     sql_over_http_pool_max_total_conns: usize,
     243              : 
     244              :     /// How long pooled connections should remain idle for before closing
     245              :     #[clap(long, default_value = "5m", value_parser = humantime::parse_duration)]
     246            0 :     sql_over_http_idle_timeout: tokio::time::Duration,
     247              : 
     248              :     /// Duration each shard will wait on average before a GC sweep.
     249              :     /// A longer time will causes sweeps to take longer but will interfere less frequently.
     250              :     #[clap(long, default_value = "10m", value_parser = humantime::parse_duration)]
     251            0 :     sql_over_http_pool_gc_epoch: tokio::time::Duration,
     252              : 
     253              :     /// How many shards should the global pool have. Must be a power of two.
     254              :     /// More shards will introduce less contention for pool operations, but can
     255              :     /// increase memory used by the pool
     256            2 :     #[clap(long, default_value_t = 128)]
     257            0 :     sql_over_http_pool_shards: usize,
     258              : 
     259            2 :     #[clap(long, default_value_t = 10000)]
     260            0 :     sql_over_http_client_conn_threshold: u64,
     261              : 
     262            2 :     #[clap(long, default_value_t = 64)]
     263            0 :     sql_over_http_cancel_set_shards: usize,
     264              : }
     265              : 
     266              : #[tokio::main]
     267            0 : async fn main() -> anyhow::Result<()> {
     268            0 :     let _logging_guard = proxy::logging::init().await?;
     269            0 :     let _panic_hook_guard = utils::logging::replace_panic_hook_with_tracing_panic_hook();
     270            0 :     let _sentry_guard = init_sentry(Some(GIT_VERSION.into()), &[]);
     271            0 : 
     272            0 :     info!("Version: {GIT_VERSION}");
     273            0 :     info!("Build_tag: {BUILD_TAG}");
     274            0 :     let neon_metrics = ::metrics::NeonMetrics::new(::metrics::BuildInfo {
     275            0 :         revision: GIT_VERSION,
     276            0 :         build_tag: BUILD_TAG,
     277            0 :     });
     278            0 : 
     279            0 :     let jemalloc = match proxy::jemalloc::MetricRecorder::new() {
     280            0 :         Ok(t) => Some(t),
     281            0 :         Err(e) => {
     282            0 :             tracing::error!(error = ?e, "could not start jemalloc metrics loop");
     283            0 :             None
     284            0 :         }
     285            0 :     };
     286            0 : 
     287            0 :     let args = ProxyCliArgs::parse();
     288            0 :     let config = build_config(&args)?;
     289            0 : 
     290            0 :     info!("Authentication backend: {}", config.auth_backend);
     291            0 :     info!("Using region: {}", args.aws_region);
     292            0 : 
     293            0 :     let region_provider =
     294            0 :         RegionProviderChain::default_provider().or_else(Region::new(args.aws_region.clone()));
     295            0 :     let provider_conf =
     296            0 :         ProviderConfig::without_region().with_region(region_provider.region().await);
     297            0 :     let aws_credentials_provider = {
     298            0 :         // uses "AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY"
     299            0 :         CredentialsProviderChain::first_try("env", EnvironmentVariableCredentialsProvider::new())
     300            0 :             // uses "AWS_PROFILE" / `aws sso login --profile <profile>`
     301            0 :             .or_else(
     302            0 :                 "profile-sso",
     303            0 :                 ProfileFileCredentialsProvider::builder()
     304            0 :                     .configure(&provider_conf)
     305            0 :                     .build(),
     306            0 :             )
     307            0 :             // uses "AWS_WEB_IDENTITY_TOKEN_FILE", "AWS_ROLE_ARN", "AWS_ROLE_SESSION_NAME"
     308            0 :             // needed to access remote extensions bucket
     309            0 :             .or_else(
     310            0 :                 "token",
     311            0 :                 WebIdentityTokenCredentialsProvider::builder()
     312            0 :                     .configure(&provider_conf)
     313            0 :                     .build(),
     314            0 :             )
     315            0 :             // uses imds v2
     316            0 :             .or_else("imds", ImdsCredentialsProvider::builder().build())
     317            0 :     };
     318            0 :     let elasticache_credentials_provider = Arc::new(elasticache::CredentialsProvider::new(
     319            0 :         elasticache::AWSIRSAConfig::new(
     320            0 :             args.aws_region.clone(),
     321            0 :             args.redis_cluster_name,
     322            0 :             args.redis_user_id,
     323            0 :         ),
     324            0 :         aws_credentials_provider,
     325            0 :     ));
     326            0 :     let regional_redis_client = match (args.redis_auth_type.as_str(), &args.redis_notifications) {
     327            0 :         ("plain", redis_url) => match redis_url {
     328            0 :             None => {
     329            0 :                 bail!("plain auth requires redis_notifications to be set");
     330            0 :             }
     331            0 :             Some(url) => Some(
     332            0 :                 ConnectionWithCredentialsProvider::new_with_static_credentials(url.to_string()),
     333            0 :             ),
     334            0 :         },
     335            0 :         ("irsa", _) => match (&args.redis_host, args.redis_port) {
     336            0 :             (Some(host), Some(port)) => Some(
     337            0 :                 ConnectionWithCredentialsProvider::new_with_credentials_provider(
     338            0 :                     host.to_string(),
     339            0 :                     port,
     340            0 :                     elasticache_credentials_provider.clone(),
     341            0 :                 ),
     342            0 :             ),
     343            0 :             (None, None) => {
     344            0 :                 warn!("irsa auth requires redis-host and redis-port to be set, continuing without regional_redis_client");
     345            0 :                 None
     346            0 :             }
     347            0 :             _ => {
     348            0 :                 bail!("redis-host and redis-port must be specified together");
     349            0 :             }
     350            0 :         },
     351            0 :         _ => {
     352            0 :             bail!("unknown auth type given");
     353            0 :         }
     354            0 :     };
     355            0 : 
     356            0 :     let redis_notifications_client = if let Some(url) = args.redis_notifications {
     357            0 :         Some(ConnectionWithCredentialsProvider::new_with_static_credentials(url.to_string()))
     358            0 :     } else {
     359            0 :         regional_redis_client.clone()
     360            0 :     };
     361            0 : 
     362            0 :     // Check that we can bind to address before further initialization
     363            0 :     let http_address: SocketAddr = args.http.parse()?;
     364            0 :     info!("Starting http on {http_address}");
     365            0 :     let http_listener = TcpListener::bind(http_address).await?.into_std()?;
     366            0 : 
     367            0 :     let mgmt_address: SocketAddr = args.mgmt.parse()?;
     368            0 :     info!("Starting mgmt on {mgmt_address}");
     369            0 :     let mgmt_listener = TcpListener::bind(mgmt_address).await?;
     370            0 : 
     371            0 :     let proxy_address: SocketAddr = args.proxy.parse()?;
     372            0 :     info!("Starting proxy on {proxy_address}");
     373            0 :     let proxy_listener = TcpListener::bind(proxy_address).await?;
     374            0 :     let cancellation_token = CancellationToken::new();
     375            0 : 
     376            0 :     let cancel_map = CancelMap::default();
     377            0 : 
     378            0 :     let redis_rps_limit = Vec::leak(args.redis_rps_limit.clone());
     379            0 :     RateBucketInfo::validate(redis_rps_limit)?;
     380            0 : 
     381            0 :     let redis_publisher = match &regional_redis_client {
     382            0 :         Some(redis_publisher) => Some(Arc::new(Mutex::new(RedisPublisherClient::new(
     383            0 :             redis_publisher.clone(),
     384            0 :             args.region.clone(),
     385            0 :             redis_rps_limit,
     386            0 :         )?))),
     387            0 :         None => None,
     388            0 :     };
     389            0 :     let cancellation_handler = Arc::new(CancellationHandler::<
     390            0 :         Option<Arc<tokio::sync::Mutex<RedisPublisherClient>>>,
     391            0 :     >::new(
     392            0 :         cancel_map.clone(),
     393            0 :         redis_publisher,
     394            0 :         proxy::metrics::CancellationSource::FromClient,
     395            0 :     ));
     396            0 : 
     397            0 :     // bit of a hack - find the min rps and max rps supported and turn it into
     398            0 :     // leaky bucket config instead
     399            0 :     let max = args
     400            0 :         .endpoint_rps_limit
     401            0 :         .iter()
     402            0 :         .map(|x| x.rps())
     403            0 :         .max_by(f64::total_cmp)
     404            0 :         .unwrap_or(EndpointRateLimiter::DEFAULT.max);
     405            0 :     let rps = args
     406            0 :         .endpoint_rps_limit
     407            0 :         .iter()
     408            0 :         .map(|x| x.rps())
     409            0 :         .min_by(f64::total_cmp)
     410            0 :         .unwrap_or(EndpointRateLimiter::DEFAULT.rps);
     411            0 :     let endpoint_rate_limiter = Arc::new(EndpointRateLimiter::new_with_shards(
     412            0 :         LeakyBucketConfig { rps, max },
     413            0 :         64,
     414            0 :     ));
     415            0 : 
     416            0 :     // client facing tasks. these will exit on error or on cancellation
     417            0 :     // cancellation returns Ok(())
     418            0 :     let mut client_tasks = JoinSet::new();
     419            0 :     client_tasks.spawn(proxy::proxy::task_main(
     420            0 :         config,
     421            0 :         proxy_listener,
     422            0 :         cancellation_token.clone(),
     423            0 :         cancellation_handler.clone(),
     424            0 :         endpoint_rate_limiter.clone(),
     425            0 :     ));
     426            0 : 
     427            0 :     // TODO: rename the argument to something like serverless.
     428            0 :     // It now covers more than just websockets, it also covers SQL over HTTP.
     429            0 :     if let Some(serverless_address) = args.wss {
     430            0 :         let serverless_address: SocketAddr = serverless_address.parse()?;
     431            0 :         info!("Starting wss on {serverless_address}");
     432            0 :         let serverless_listener = TcpListener::bind(serverless_address).await?;
     433            0 : 
     434            0 :         client_tasks.spawn(serverless::task_main(
     435            0 :             config,
     436            0 :             serverless_listener,
     437            0 :             cancellation_token.clone(),
     438            0 :             cancellation_handler.clone(),
     439            0 :             endpoint_rate_limiter.clone(),
     440            0 :         ));
     441            0 :     }
     442            0 : 
     443            0 :     client_tasks.spawn(proxy::context::parquet::worker(
     444            0 :         cancellation_token.clone(),
     445            0 :         args.parquet_upload,
     446            0 :     ));
     447            0 : 
     448            0 :     // maintenance tasks. these never return unless there's an error
     449            0 :     let mut maintenance_tasks = JoinSet::new();
     450            0 :     maintenance_tasks.spawn(proxy::handle_signals(cancellation_token.clone()));
     451            0 :     maintenance_tasks.spawn(http::health_server::task_main(
     452            0 :         http_listener,
     453            0 :         AppMetrics {
     454            0 :             jemalloc,
     455            0 :             neon_metrics,
     456            0 :             proxy: proxy::metrics::Metrics::get(),
     457            0 :         },
     458            0 :     ));
     459            0 :     maintenance_tasks.spawn(console::mgmt::task_main(mgmt_listener));
     460            0 : 
     461            0 :     if let Some(metrics_config) = &config.metric_collection {
     462            0 :         // TODO: Add gc regardles of the metric collection being enabled.
     463            0 :         maintenance_tasks.spawn(usage_metrics::task_main(metrics_config));
     464            0 :         client_tasks.spawn(usage_metrics::task_backup(
     465            0 :             &metrics_config.backup_metric_collection_config,
     466            0 :             cancellation_token.clone(),
     467            0 :         ));
     468            0 :     }
     469            0 : 
     470            0 :     if let auth::BackendType::Console(api, _) = &config.auth_backend {
     471            0 :         if let proxy::console::provider::ConsoleBackend::Console(api) = &**api {
     472            0 :             match (redis_notifications_client, regional_redis_client.clone()) {
     473            0 :                 (None, None) => {}
     474            0 :                 (client1, client2) => {
     475            0 :                     let cache = api.caches.project_info.clone();
     476            0 :                     if let Some(client) = client1 {
     477            0 :                         maintenance_tasks.spawn(notifications::task_main(
     478            0 :                             client,
     479            0 :                             cache.clone(),
     480            0 :                             cancel_map.clone(),
     481            0 :                             args.region.clone(),
     482            0 :                         ));
     483            0 :                     }
     484            0 :                     if let Some(client) = client2 {
     485            0 :                         maintenance_tasks.spawn(notifications::task_main(
     486            0 :                             client,
     487            0 :                             cache.clone(),
     488            0 :                             cancel_map.clone(),
     489            0 :                             args.region.clone(),
     490            0 :                         ));
     491            0 :                     }
     492            0 :                     maintenance_tasks.spawn(async move { cache.clone().gc_worker().await });
     493            0 :                 }
     494            0 :             }
     495            0 :             if let Some(regional_redis_client) = regional_redis_client {
     496            0 :                 let cache = api.caches.endpoints_cache.clone();
     497            0 :                 let con = regional_redis_client;
     498            0 :                 let span = tracing::info_span!("endpoints_cache");
     499            0 :                 maintenance_tasks.spawn(
     500            0 :                     async move { cache.do_read(con, cancellation_token.clone()).await }
     501            0 :                         .instrument(span),
     502            0 :                 );
     503            0 :             }
     504            0 :         }
     505            0 :     }
     506            0 : 
     507            0 :     let maintenance = loop {
     508            0 :         // get one complete task
     509            0 :         match futures::future::select(
     510            0 :             pin!(maintenance_tasks.join_next()),
     511            0 :             pin!(client_tasks.join_next()),
     512            0 :         )
     513            0 :         .await
     514            0 :         {
     515            0 :             // exit immediately on maintenance task completion
     516            0 :             Either::Left((Some(res), _)) => break proxy::flatten_err(res)?,
     517            0 :             // exit with error immediately if all maintenance tasks have ceased (should be caught by branch above)
     518            0 :             Either::Left((None, _)) => bail!("no maintenance tasks running. invalid state"),
     519            0 :             // exit immediately on client task error
     520            0 :             Either::Right((Some(res), _)) => proxy::flatten_err(res)?,
     521            0 :             // exit if all our client tasks have shutdown gracefully
     522            0 :             Either::Right((None, _)) => return Ok(()),
     523            0 :         }
     524            0 :     };
     525            0 : 
     526            0 :     // maintenance tasks return Infallible success values, this is an impossible value
     527            0 :     // so this match statically ensures that there are no possibilities for that value
     528            0 :     match maintenance {}
     529            0 : }
     530              : 
     531              : /// ProxyConfig is created at proxy startup, and lives forever.
     532            0 : fn build_config(args: &ProxyCliArgs) -> anyhow::Result<&'static ProxyConfig> {
     533            0 :     let thread_pool = ThreadPool::new(args.scram_thread_pool_size);
     534            0 :     Metrics::install(thread_pool.metrics.clone());
     535              : 
     536            0 :     let tls_config = match (&args.tls_key, &args.tls_cert) {
     537            0 :         (Some(key_path), Some(cert_path)) => Some(config::configure_tls(
     538            0 :             key_path,
     539            0 :             cert_path,
     540            0 :             args.certs_dir.as_ref(),
     541            0 :         )?),
     542            0 :         (None, None) => None,
     543            0 :         _ => bail!("either both or neither tls-key and tls-cert must be specified"),
     544              :     };
     545              : 
     546            0 :     if args.allow_self_signed_compute {
     547            0 :         warn!("allowing self-signed compute certificates");
     548            0 :     }
     549            0 :     let backup_metric_collection_config = config::MetricBackupCollectionConfig {
     550            0 :         interval: args.metric_backup_collection_interval,
     551            0 :         remote_storage_config: args.metric_backup_collection_remote_storage.clone(),
     552            0 :         chunk_size: args.metric_backup_collection_chunk_size,
     553            0 :     };
     554              : 
     555            0 :     let metric_collection = match (
     556            0 :         &args.metric_collection_endpoint,
     557            0 :         &args.metric_collection_interval,
     558              :     ) {
     559            0 :         (Some(endpoint), Some(interval)) => Some(config::MetricCollectionConfig {
     560            0 :             endpoint: endpoint.parse()?,
     561            0 :             interval: humantime::parse_duration(interval)?,
     562            0 :             backup_metric_collection_config,
     563              :         }),
     564            0 :         (None, None) => None,
     565            0 :         _ => bail!(
     566            0 :             "either both or neither metric-collection-endpoint \
     567            0 :              and metric-collection-interval must be specified"
     568            0 :         ),
     569              :     };
     570            0 :     if !args.disable_dynamic_rate_limiter {
     571            0 :         bail!("dynamic rate limiter should be disabled");
     572            0 :     }
     573              : 
     574            0 :     let auth_backend = match &args.auth_backend {
     575              :         AuthBackend::Console => {
     576            0 :             let wake_compute_cache_config: CacheOptions = args.wake_compute_cache.parse()?;
     577            0 :             let project_info_cache_config: ProjectInfoCacheOptions =
     578            0 :                 args.project_info_cache.parse()?;
     579            0 :             let endpoint_cache_config: config::EndpointCacheConfig =
     580            0 :                 args.endpoint_cache_config.parse()?;
     581              : 
     582            0 :             info!("Using NodeInfoCache (wake_compute) with options={wake_compute_cache_config:?}");
     583            0 :             info!(
     584            0 :                 "Using AllowedIpsCache (wake_compute) with options={project_info_cache_config:?}"
     585              :             );
     586            0 :             info!("Using EndpointCacheConfig with options={endpoint_cache_config:?}");
     587            0 :             let caches = Box::leak(Box::new(console::caches::ApiCaches::new(
     588            0 :                 wake_compute_cache_config,
     589            0 :                 project_info_cache_config,
     590            0 :                 endpoint_cache_config,
     591            0 :             )));
     592              : 
     593              :             let config::ConcurrencyLockOptions {
     594            0 :                 shards,
     595            0 :                 limiter,
     596            0 :                 epoch,
     597            0 :                 timeout,
     598            0 :             } = args.wake_compute_lock.parse()?;
     599            0 :             info!(?limiter, shards, ?epoch, "Using NodeLocks (wake_compute)");
     600            0 :             let locks = Box::leak(Box::new(console::locks::ApiLocks::new(
     601            0 :                 "wake_compute_lock",
     602            0 :                 limiter,
     603            0 :                 shards,
     604            0 :                 timeout,
     605            0 :                 epoch,
     606            0 :                 &Metrics::get().wake_compute_lock,
     607            0 :             )?));
     608            0 :             tokio::spawn(locks.garbage_collect_worker());
     609              : 
     610            0 :             let url = args.auth_endpoint.parse()?;
     611            0 :             let endpoint = http::Endpoint::new(url, http::new_client());
     612            0 : 
     613            0 :             let mut wake_compute_rps_limit = args.wake_compute_limit.clone();
     614            0 :             RateBucketInfo::validate(&mut wake_compute_rps_limit)?;
     615            0 :             let wake_compute_endpoint_rate_limiter =
     616            0 :                 Arc::new(WakeComputeRateLimiter::new(wake_compute_rps_limit));
     617            0 :             let api = console::provider::neon::Api::new(
     618            0 :                 endpoint,
     619            0 :                 caches,
     620            0 :                 locks,
     621            0 :                 wake_compute_endpoint_rate_limiter,
     622            0 :             );
     623            0 :             let api = console::provider::ConsoleBackend::Console(api);
     624            0 :             auth::BackendType::Console(MaybeOwned::Owned(api), ())
     625              :         }
     626              :         #[cfg(feature = "testing")]
     627              :         AuthBackend::Postgres => {
     628            0 :             let url = args.auth_endpoint.parse()?;
     629            0 :             let api = console::provider::mock::Api::new(url);
     630            0 :             let api = console::provider::ConsoleBackend::Postgres(api);
     631            0 :             auth::BackendType::Console(MaybeOwned::Owned(api), ())
     632              :         }
     633              :         AuthBackend::Link => {
     634            0 :             let url = args.uri.parse()?;
     635            0 :             auth::BackendType::Link(MaybeOwned::Owned(url), ())
     636              :         }
     637              :     };
     638              : 
     639              :     let config::ConcurrencyLockOptions {
     640            0 :         shards,
     641            0 :         limiter,
     642            0 :         epoch,
     643            0 :         timeout,
     644            0 :     } = args.connect_compute_lock.parse()?;
     645            0 :     info!(
     646              :         ?limiter,
     647              :         shards,
     648              :         ?epoch,
     649            0 :         "Using NodeLocks (connect_compute)"
     650              :     );
     651            0 :     let connect_compute_locks = console::locks::ApiLocks::new(
     652            0 :         "connect_compute_lock",
     653            0 :         limiter,
     654            0 :         shards,
     655            0 :         timeout,
     656            0 :         epoch,
     657            0 :         &Metrics::get().proxy.connect_compute_lock,
     658            0 :     )?;
     659              : 
     660            0 :     let http_config = HttpConfig {
     661            0 :         accept_websockets: true,
     662            0 :         pool_options: GlobalConnPoolOptions {
     663            0 :             max_conns_per_endpoint: args.sql_over_http.sql_over_http_pool_max_conns_per_endpoint,
     664            0 :             gc_epoch: args.sql_over_http.sql_over_http_pool_gc_epoch,
     665            0 :             pool_shards: args.sql_over_http.sql_over_http_pool_shards,
     666            0 :             idle_timeout: args.sql_over_http.sql_over_http_idle_timeout,
     667            0 :             opt_in: args.sql_over_http.sql_over_http_pool_opt_in,
     668            0 :             max_total_conns: args.sql_over_http.sql_over_http_pool_max_total_conns,
     669            0 :         },
     670            0 :         cancel_set: CancelSet::new(args.sql_over_http.sql_over_http_cancel_set_shards),
     671            0 :         client_conn_threshold: args.sql_over_http.sql_over_http_client_conn_threshold,
     672            0 :     };
     673            0 :     let authentication_config = AuthenticationConfig {
     674            0 :         thread_pool,
     675            0 :         scram_protocol_timeout: args.scram_protocol_timeout,
     676            0 :         rate_limiter_enabled: args.auth_rate_limit_enabled,
     677            0 :         rate_limiter: AuthRateLimiter::new(args.auth_rate_limit.clone()),
     678            0 :         rate_limit_ip_subnet: args.auth_rate_limit_ip_subnet,
     679            0 :     };
     680              : 
     681            0 :     let config = Box::leak(Box::new(ProxyConfig {
     682            0 :         tls_config,
     683            0 :         auth_backend,
     684            0 :         metric_collection,
     685            0 :         allow_self_signed_compute: args.allow_self_signed_compute,
     686            0 :         http_config,
     687            0 :         authentication_config,
     688            0 :         require_client_ip: args.require_client_ip,
     689            0 :         handshake_timeout: args.handshake_timeout,
     690            0 :         region: args.region.clone(),
     691            0 :         wake_compute_retry_config: config::RetryConfig::parse(&args.wake_compute_retry)?,
     692            0 :         connect_compute_locks,
     693            0 :         connect_to_compute_retry_config: config::RetryConfig::parse(
     694            0 :             &args.connect_to_compute_retry,
     695            0 :         )?,
     696              :     }));
     697              : 
     698            0 :     tokio::spawn(config.connect_compute_locks.garbage_collect_worker());
     699            0 : 
     700            0 :     Ok(config)
     701            0 : }
     702              : 
     703              : #[cfg(test)]
     704              : mod tests {
     705              :     use std::time::Duration;
     706              : 
     707              :     use clap::Parser;
     708              :     use proxy::rate_limiter::RateBucketInfo;
     709              : 
     710              :     #[test]
     711            2 :     fn parse_endpoint_rps_limit() {
     712            2 :         let config = super::ProxyCliArgs::parse_from([
     713            2 :             "proxy",
     714            2 :             "--endpoint-rps-limit",
     715            2 :             "100@1s",
     716            2 :             "--endpoint-rps-limit",
     717            2 :             "20@30s",
     718            2 :         ]);
     719            2 : 
     720            2 :         assert_eq!(
     721            2 :             config.endpoint_rps_limit,
     722            2 :             vec![
     723            2 :                 RateBucketInfo::new(100, Duration::from_secs(1)),
     724            2 :                 RateBucketInfo::new(20, Duration::from_secs(30)),
     725            2 :             ]
     726            2 :         );
     727            2 :     }
     728              : }
        

Generated by: LCOV version 2.1-beta