| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659 |
- import os
- from typing import List
- from ray.serve._private.constants_utils import (
- get_env_bool,
- get_env_float,
- get_env_float_non_negative,
- get_env_float_positive,
- get_env_int,
- get_env_int_non_negative,
- get_env_int_positive,
- get_env_str,
- parse_latency_buckets,
- str_to_list,
- )
- #: Logger used by serve components
- SERVE_LOGGER_NAME = "ray.serve"
- #: Actor name used to register controller
- SERVE_CONTROLLER_NAME = "SERVE_CONTROLLER_ACTOR"
- #: Actor name used to register HTTP proxy actor
- SERVE_PROXY_NAME = "SERVE_PROXY_ACTOR"
- #: Ray namespace used for all Serve actors
- SERVE_NAMESPACE = "serve"
- #: HTTP Host
- DEFAULT_HTTP_HOST = "127.0.0.1"
- #: HTTP Port
- DEFAULT_HTTP_PORT = 8000
- #: Uvicorn timeout_keep_alive Config
- DEFAULT_UVICORN_KEEP_ALIVE_TIMEOUT_S = 90
- #: gRPC Port
- DEFAULT_GRPC_PORT = 9000
- #: Default Serve application name
- SERVE_DEFAULT_APP_NAME = "default"
- #: Max concurrency
- ASYNC_CONCURRENCY = int(1e6)
- # How long to sleep between control loop cycles on the controller.
- CONTROL_LOOP_INTERVAL_S = get_env_float_non_negative(
- "RAY_SERVE_CONTROL_LOOP_INTERVAL_S", 0.1
- )
- #: Max time to wait for HTTP proxy in `serve.start()`.
- HTTP_PROXY_TIMEOUT = 60
- # Max retry on deployment constructor is
- # min(num_replicas * MAX_PER_REPLICA_RETRY_COUNT, max_constructor_retry_count)
- MAX_PER_REPLICA_RETRY_COUNT = get_env_int("RAY_SERVE_MAX_PER_REPLICA_RETRY_COUNT", 3)
- # If you are wondering why we are using histogram buckets, please refer to
- # https://prometheus.io/docs/practices/histograms/
- # short answer is that its cheaper to calculate percentiles on the histogram
- # than to calculate them on raw data, both in terms of time and space.
- #: Default histogram buckets for latency tracker.
- DEFAULT_LATENCY_BUCKET_MS = [
- 1,
- 2,
- 5,
- 10,
- 20,
- 50,
- 100,
- 200,
- 300,
- 400,
- 500,
- 1000,
- 2000,
- # 5 seconds
- 5000,
- # 10 seconds
- 10000,
- # 60 seconds
- 60000,
- # 2min
- 120000,
- # 5 min
- 300000,
- # 10 min
- 600000,
- ]
- # Example usage:
- # RAY_SERVE_REQUEST_LATENCY_BUCKET_MS="1,2,3,4"
- # RAY_SERVE_MODEL_LOAD_LATENCY_BUCKET_MS="1,2,3,4"
- #: Histogram buckets for request latency.
- REQUEST_LATENCY_BUCKETS_MS = parse_latency_buckets(
- get_env_str(
- "RAY_SERVE_REQUEST_LATENCY_BUCKETS_MS",
- get_env_str("REQUEST_LATENCY_BUCKETS_MS", ""),
- ),
- DEFAULT_LATENCY_BUCKET_MS,
- )
- #: Histogram buckets for model load/unload latency.
- MODEL_LOAD_LATENCY_BUCKETS_MS = parse_latency_buckets(
- get_env_str(
- "RAY_SERVE_MODEL_LOAD_LATENCY_BUCKETS_MS",
- get_env_str("MODEL_LOAD_LATENCY_BUCKETS_MS", ""),
- ),
- DEFAULT_LATENCY_BUCKET_MS,
- )
- #: Histogram buckets for replica startup and reconfigure latency.
- #: These are longer operations (constructor, model loading) so buckets start higher.
- DEFAULT_REPLICA_STARTUP_SHUTDOWN_LATENCY_BUCKETS_MS = [
- 5,
- 20,
- 50,
- 100,
- 250,
- 500,
- 1000,
- 2000,
- 5000,
- 10000,
- 20000,
- 30000,
- 60000,
- 120000,
- 240000,
- ]
- REPLICA_STARTUP_SHUTDOWN_LATENCY_BUCKETS_MS = parse_latency_buckets(
- get_env_str("RAY_SERVE_REPLICA_STARTUP_SHUTDOWN_LATENCY_BUCKETS_MS", ""),
- DEFAULT_REPLICA_STARTUP_SHUTDOWN_LATENCY_BUCKETS_MS,
- )
- #: Histogram buckets for batch execution time in milliseconds.
- BATCH_EXECUTION_TIME_BUCKETS_MS = REQUEST_LATENCY_BUCKETS_MS
- #: Histogram buckets for batch wait time in milliseconds.
- BATCH_WAIT_TIME_BUCKETS_MS = REQUEST_LATENCY_BUCKETS_MS
- #: Histogram buckets for batch utilization percentage.
- DEFAULT_BATCH_UTILIZATION_BUCKETS_PERCENT = [
- 5,
- 10,
- 20,
- 30,
- 40,
- 50,
- 60,
- 70,
- 80,
- 90,
- 95,
- 99,
- 100,
- ]
- BATCH_UTILIZATION_BUCKETS_PERCENT = parse_latency_buckets(
- get_env_str(
- "RAY_SERVE_BATCH_UTILIZATION_BUCKETS_PERCENT",
- "",
- ),
- DEFAULT_BATCH_UTILIZATION_BUCKETS_PERCENT,
- )
- #: Histogram buckets for actual batch size.
- DEFAULT_BATCH_SIZE_BUCKETS = [
- 1,
- 2,
- 4,
- 8,
- 16,
- 32,
- 64,
- 128,
- 256,
- 512,
- 1024,
- ]
- BATCH_SIZE_BUCKETS = parse_latency_buckets(
- get_env_str(
- "RAY_SERVE_BATCH_SIZE_BUCKETS",
- "",
- ),
- DEFAULT_BATCH_SIZE_BUCKETS,
- )
- #: Name of deployment health check method implemented by user.
- HEALTH_CHECK_METHOD = "check_health"
- #: Name of deployment reconfiguration method implemented by user.
- RECONFIGURE_METHOD = "reconfigure"
- #: Limit the number of cached handles because each handle has long poll
- #: overhead. See https://github.com/ray-project/ray/issues/18980
- MAX_CACHED_HANDLES = get_env_int_positive("RAY_SERVE_MAX_CACHED_HANDLES", 100)
- #: Because ServeController will accept one long poll request per handle, its
- #: concurrency needs to scale as O(num_handles)
- CONTROLLER_MAX_CONCURRENCY = get_env_int_positive(
- "RAY_SERVE_CONTROLLER_MAX_CONCURRENCY", 15_000
- )
- DEFAULT_GRACEFUL_SHUTDOWN_TIMEOUT_S = 20
- DEFAULT_GRACEFUL_SHUTDOWN_WAIT_LOOP_S = 2
- DEFAULT_HEALTH_CHECK_PERIOD_S = 10
- DEFAULT_HEALTH_CHECK_TIMEOUT_S = 30
- DEFAULT_MAX_ONGOING_REQUESTS = 5
- DEFAULT_TARGET_ONGOING_REQUESTS = 2
- DEFAULT_CONSUMER_CONCURRENCY = DEFAULT_MAX_ONGOING_REQUESTS
- DEFAULT_CONSTRUCTOR_RETRY_COUNT = 20
- # HTTP Proxy health check configs
- PROXY_HEALTH_CHECK_TIMEOUT_S = get_env_float_positive(
- "RAY_SERVE_PROXY_HEALTH_CHECK_TIMEOUT_S", 10.0
- )
- PROXY_HEALTH_CHECK_PERIOD_S = get_env_float_positive(
- "RAY_SERVE_PROXY_HEALTH_CHECK_PERIOD_S", 10.0
- )
- PROXY_READY_CHECK_TIMEOUT_S = get_env_float_positive(
- "RAY_SERVE_PROXY_READY_CHECK_TIMEOUT_S", 5.0
- )
- # Number of times in a row that a HTTP proxy must fail the health check before
- # being marked unhealthy.
- PROXY_HEALTH_CHECK_UNHEALTHY_THRESHOLD = 3
- # The minimum drain period for a HTTP proxy.
- PROXY_MIN_DRAINING_PERIOD_S = get_env_float_positive(
- "RAY_SERVE_PROXY_MIN_DRAINING_PERIOD_S", 30.0
- )
- # The time in seconds that the http proxy state waits before
- # rechecking whether the proxy actor is drained or not.
- PROXY_DRAIN_CHECK_PERIOD_S = 5
- #: Number of times in a row that a replica must fail the health check before
- #: being marked unhealthy.
- REPLICA_HEALTH_CHECK_UNHEALTHY_THRESHOLD = 3
- # The time in seconds that the Serve client waits before rechecking deployment state
- CLIENT_POLLING_INTERVAL_S = 1.0
- # The time in seconds that the Serve client waits before checking if
- # deployment has been created
- CLIENT_CHECK_CREATION_POLLING_INTERVAL_S = 0.1
- # Timeout for GCS internal KV service
- RAY_SERVE_KV_TIMEOUT_S = get_env_float_positive("RAY_SERVE_KV_TIMEOUT_S", None)
- # Timeout for GCS RPC request
- RAY_GCS_RPC_TIMEOUT_S = 3.0
- # Maximum duration to wait until broadcasting a long poll update if there are
- # still replicas in the RECOVERING state.
- RECOVERING_LONG_POLL_BROADCAST_TIMEOUT_S = 10.0
- # Minimum duration to wait until broadcasting model IDs.
- PUSH_MULTIPLEXED_MODEL_IDS_INTERVAL_S = 0.1
- # Deprecation message for V1 migrations.
- MIGRATION_MESSAGE = (
- "See https://docs.ray.io/en/latest/serve/index.html for more information."
- )
- # Environment variable name for to specify the encoding of the log messages
- RAY_SERVE_LOG_ENCODING = "TEXT"
- # Setting RAY_SERVE_LOG_TO_STDERR=0 will disable logging to the stdout and stderr.
- # Also, redirect them to serve's log files.
- RAY_SERVE_LOG_TO_STDERR = get_env_bool("RAY_SERVE_LOG_TO_STDERR", "1")
- # Logging format attributes
- SERVE_LOG_REQUEST_ID = "request_id"
- SERVE_LOG_ROUTE = "route"
- SERVE_LOG_APPLICATION = "application"
- SERVE_LOG_DEPLOYMENT = "deployment"
- SERVE_LOG_REPLICA = "replica"
- SERVE_LOG_COMPONENT = "component_name"
- SERVE_LOG_COMPONENT_ID = "component_id"
- SERVE_LOG_MESSAGE = "message"
- # This is a reserved for python logging module attribute, it should not be changed.
- SERVE_LOG_LEVEL_NAME = "levelname"
- SERVE_LOG_TIME = "asctime"
- # Logging format with record key to format string dict
- SERVE_LOG_RECORD_FORMAT = {
- SERVE_LOG_REQUEST_ID: "%(request_id)s",
- SERVE_LOG_APPLICATION: "%(application)s",
- SERVE_LOG_MESSAGE: "-- %(message)s",
- SERVE_LOG_LEVEL_NAME: "%(levelname)s",
- SERVE_LOG_TIME: "%(asctime)s",
- }
- # There are some attributes that we only use internally or don't provide values to the
- # users. Adding to this set will remove them from structured logs.
- SERVE_LOG_UNWANTED_ATTRS = {
- "serve_access_log",
- "task_id",
- "job_id",
- "skip_context_filter",
- }
- RAY_SERVE_HTTP_KEEP_ALIVE_TIMEOUT_S = get_env_int_non_negative(
- "RAY_SERVE_HTTP_KEEP_ALIVE_TIMEOUT_S", 0
- )
- RAY_SERVE_REQUEST_PROCESSING_TIMEOUT_S = 0.0
- SERVE_LOG_EXTRA_FIELDS = "ray_serve_extra_fields"
- # Serve HTTP request header key for routing requests.
- SERVE_MULTIPLEXED_MODEL_ID = "serve_multiplexed_model_id"
- # HTTP request ID
- SERVE_HTTP_REQUEST_ID_HEADER = "x-request-id"
- # Feature flag to turn on node locality routing for proxies. On by default.
- RAY_SERVE_PROXY_PREFER_LOCAL_NODE_ROUTING = get_env_bool(
- "RAY_SERVE_PROXY_PREFER_LOCAL_NODE_ROUTING", "1"
- )
- # Feature flag to turn on AZ locality routing for proxies. On by default.
- RAY_SERVE_PROXY_PREFER_LOCAL_AZ_ROUTING = get_env_bool(
- "RAY_SERVE_PROXY_PREFER_LOCAL_AZ_ROUTING", "1"
- )
- # Serve HTTP proxy callback import path.
- RAY_SERVE_HTTP_PROXY_CALLBACK_IMPORT_PATH = get_env_str(
- "RAY_SERVE_HTTP_PROXY_CALLBACK_IMPORT_PATH", None
- )
- # Serve controller callback import path.
- RAY_SERVE_CONTROLLER_CALLBACK_IMPORT_PATH = get_env_str(
- "RAY_SERVE_CONTROLLER_CALLBACK_IMPORT_PATH", None
- )
- # Maximum timeout allowed for record_autoscaling_stats to run.
- RAY_SERVE_RECORD_AUTOSCALING_STATS_TIMEOUT_S = get_env_float(
- "RAY_SERVE_RECORD_AUTOSCALING_STATS_TIMEOUT_S", 10.0
- )
- # How often autoscaling metrics are recorded on Serve replicas.
- RAY_SERVE_REPLICA_AUTOSCALING_METRIC_RECORD_INTERVAL_S = get_env_float(
- "RAY_SERVE_REPLICA_AUTOSCALING_METRIC_RECORD_INTERVAL_S", 0.5
- )
- # Replica autoscaling metrics push interval.
- RAY_SERVE_REPLICA_AUTOSCALING_METRIC_PUSH_INTERVAL_S = get_env_float(
- "RAY_SERVE_REPLICA_AUTOSCALING_METRIC_PUSH_INTERVAL_S", 10.0
- )
- # How often autoscaling metrics are recorded on Serve handles.
- RAY_SERVE_HANDLE_AUTOSCALING_METRIC_RECORD_INTERVAL_S = get_env_float(
- "RAY_SERVE_HANDLE_AUTOSCALING_METRIC_RECORD_INTERVAL_S", 0.5
- )
- # Handle autoscaling metrics push interval. (This interval will affect the cold start time period)
- RAY_SERVE_HANDLE_AUTOSCALING_METRIC_PUSH_INTERVAL_S = get_env_float(
- "RAY_SERVE_HANDLE_AUTOSCALING_METRIC_PUSH_INTERVAL_S",
- 10.0,
- )
- # Serve multiplexed matching timeout.
- # This is the timeout for the matching process of multiplexed requests. To avoid
- # thundering herd problem, the timeout value will be randomized between this value
- # and this value * 2. The unit is second.
- # If the matching process takes longer than the timeout, the request will be
- # fallen to the default routing strategy.
- RAY_SERVE_MULTIPLEXED_MODEL_ID_MATCHING_TIMEOUT_S = get_env_float_non_negative(
- "RAY_SERVE_MULTIPLEXED_MODEL_ID_MATCHING_TIMEOUT_S", 1.0
- )
- # Enable memray in all Serve actors.
- RAY_SERVE_ENABLE_MEMORY_PROFILING = get_env_bool(
- "RAY_SERVE_ENABLE_MEMORY_PROFILING", "0"
- )
- # Max value allowed for max_replicas_per_node option.
- # TODO(jjyao) the <= 100 limitation is an artificial one
- # and is due to the fact that Ray core only supports resource
- # precision up to 0.0001.
- # This limitation should be lifted in the long term.
- MAX_REPLICAS_PER_NODE_MAX_VALUE = 100
- # Argument name for passing in the gRPC context into a replica.
- GRPC_CONTEXT_ARG_NAME = "grpc_context"
- # Whether or not to forcefully kill replicas that fail health checks.
- RAY_SERVE_FORCE_STOP_UNHEALTHY_REPLICAS = get_env_bool(
- "RAY_SERVE_FORCE_STOP_UNHEALTHY_REPLICAS", "0"
- )
- # Initial deadline for queue length responses in the router.
- RAY_SERVE_QUEUE_LENGTH_RESPONSE_DEADLINE_S = get_env_float(
- "RAY_SERVE_QUEUE_LENGTH_RESPONSE_DEADLINE_S", 0.1
- )
- # Maximum deadline for queue length responses in the router (in backoff).
- RAY_SERVE_MAX_QUEUE_LENGTH_RESPONSE_DEADLINE_S = get_env_float(
- "RAY_SERVE_MAX_QUEUE_LENGTH_RESPONSE_DEADLINE_S", 1.0
- )
- # Length of time to respect entries in the queue length cache when routing requests.
- RAY_SERVE_QUEUE_LENGTH_CACHE_TIMEOUT_S = get_env_float_non_negative(
- "RAY_SERVE_QUEUE_LENGTH_CACHE_TIMEOUT_S", 10.0
- )
- # Minimum interval between router queue length gauge updates per replica.
- # Throttling reduces metrics overhead on the hot path. Set to 0 to disable throttling.
- RAY_SERVE_ROUTER_QUEUE_LEN_GAUGE_THROTTLE_S = get_env_float_non_negative(
- "RAY_SERVE_ROUTER_QUEUE_LEN_GAUGE_THROTTLE_S", 0.1
- )
- # Backoff seconds when choosing router failed, backoff time is calculated as
- # initial_backoff_s * backoff_multiplier ** attempt.
- # The default backoff time is [0, 0.025, 0.05, 0.1, 0.2, 0.4, 0.5, 0.5 ... ].
- RAY_SERVE_ROUTER_RETRY_INITIAL_BACKOFF_S = get_env_float(
- "RAY_SERVE_ROUTER_RETRY_INITIAL_BACKOFF_S", 0.025
- )
- RAY_SERVE_ROUTER_RETRY_BACKOFF_MULTIPLIER = get_env_int(
- "RAY_SERVE_ROUTER_RETRY_BACKOFF_MULTIPLIER", 2
- )
- RAY_SERVE_ROUTER_RETRY_MAX_BACKOFF_S = get_env_float(
- "RAY_SERVE_ROUTER_RETRY_MAX_BACKOFF_S", 0.5
- )
- # The default autoscaling policy to use if none is specified.
- DEFAULT_AUTOSCALING_POLICY_NAME = (
- "ray.serve.autoscaling_policy:default_autoscaling_policy"
- )
- # Feature flag to enable collecting all queued and ongoing request
- # metrics at handles instead of replicas. ON by default.
- RAY_SERVE_COLLECT_AUTOSCALING_METRICS_ON_HANDLE = get_env_bool(
- "RAY_SERVE_COLLECT_AUTOSCALING_METRICS_ON_HANDLE", "1"
- )
- RAY_SERVE_MIN_HANDLE_METRICS_TIMEOUT_S = get_env_float_non_negative(
- "RAY_SERVE_MIN_HANDLE_METRICS_TIMEOUT_S", 10.0
- )
- # Default is 2GiB, the max for a signed int.
- RAY_SERVE_GRPC_MAX_MESSAGE_SIZE = get_env_int(
- "RAY_SERVE_GRPC_MAX_MESSAGE_SIZE", (2 * 1024 * 1024 * 1024) - 1
- )
- RAY_SERVE_REPLICA_GRPC_MAX_MESSAGE_LENGTH = get_env_int(
- # Default max message length in gRPC is 4MB, we keep that default
- "RAY_SERVE_REPLICA_GRPC_MAX_MESSAGE_LENGTH",
- 4 * 1024 * 1024,
- )
- # Default options passed when constructing gRPC servers.
- DEFAULT_GRPC_SERVER_OPTIONS = [
- ("grpc.max_send_message_length", RAY_SERVE_GRPC_MAX_MESSAGE_SIZE),
- ("grpc.max_receive_message_length", RAY_SERVE_GRPC_MAX_MESSAGE_SIZE),
- ]
- # Timeout for gracefully shutting down metrics pusher, e.g. in routers or replicas
- METRICS_PUSHER_GRACEFUL_SHUTDOWN_TIMEOUT_S = 10
- # Feature flag to set `enable_task_events=True` on Serve-managed actors.
- RAY_SERVE_ENABLE_TASK_EVENTS = get_env_bool("RAY_SERVE_ENABLE_TASK_EVENTS", "0")
- # This is deprecated and will be removed in the future.
- RAY_SERVE_USE_COMPACT_SCHEDULING_STRATEGY = get_env_bool(
- "RAY_SERVE_USE_COMPACT_SCHEDULING_STRATEGY", "0"
- )
- # Use pack instead of spread scheduling strategy.
- RAY_SERVE_USE_PACK_SCHEDULING_STRATEGY = get_env_bool(
- "RAY_SERVE_USE_PACK_SCHEDULING_STRATEGY",
- os.environ.get("RAY_SERVE_USE_COMPACT_SCHEDULING_STRATEGY", "0"),
- )
- # Comma-separated list of custom resources prioritized in scheduling. Sorted from highest to lowest priority.
- # Example: "customx,customy"
- RAY_SERVE_HIGH_PRIORITY_CUSTOM_RESOURCES: List[str] = str_to_list(
- get_env_str("RAY_SERVE_HIGH_PRIORITY_CUSTOM_RESOURCES", "")
- )
- # Feature flag to always override local_testing_mode to True in serve.run.
- # This is used for internal testing to avoid passing the flag to every invocation.
- RAY_SERVE_FORCE_LOCAL_TESTING_MODE = get_env_bool(
- "RAY_SERVE_FORCE_LOCAL_TESTING_MODE", "0"
- )
- # Run sync methods defined in the replica in a thread pool by default.
- RAY_SERVE_RUN_SYNC_IN_THREADPOOL = get_env_bool("RAY_SERVE_RUN_SYNC_IN_THREADPOOL", "0")
- RAY_SERVE_RUN_SYNC_IN_THREADPOOL_WARNING = (
- "Calling sync method '{method_name}' directly on the "
- "asyncio loop. In a future version, sync methods will be run in a "
- "threadpool by default. Ensure your sync methods are thread safe "
- "or keep the existing behavior by making them `async def`. Opt "
- "into the new behavior by setting "
- "RAY_SERVE_RUN_SYNC_IN_THREADPOOL=1."
- )
- # Feature flag to turn off GC optimizations in the proxy (in case there is a
- # memory leak or negative performance impact).
- RAY_SERVE_ENABLE_PROXY_GC_OPTIMIZATIONS = get_env_bool(
- "RAY_SERVE_ENABLE_PROXY_GC_OPTIMIZATIONS", "1"
- )
- # Used for gc.set_threshold() when proxy GC optimizations are enabled.
- RAY_SERVE_PROXY_GC_THRESHOLD = get_env_int("RAY_SERVE_PROXY_GC_THRESHOLD", 700)
- # Interval at which cached metrics will be exported using the Ray metric API.
- # Set to `0` to disable caching entirely.
- RAY_SERVE_METRICS_EXPORT_INTERVAL_MS = get_env_int(
- "RAY_SERVE_METRICS_EXPORT_INTERVAL_MS", 100
- )
- # The default request router class to use if none is specified.
- DEFAULT_REQUEST_ROUTER_PATH = (
- "ray.serve._private.request_router:PowerOfTwoChoicesRequestRouter"
- )
- # The default request routing period to use if none is specified.
- DEFAULT_REQUEST_ROUTING_STATS_PERIOD_S = 10
- # The default request routing timeout to use if none is specified.
- DEFAULT_REQUEST_ROUTING_STATS_TIMEOUT_S = 30
- # Name of deployment request routing stats method implemented by user.
- REQUEST_ROUTING_STATS_METHOD = "record_routing_stats"
- # By default, we run user code in a separate event loop.
- # This flag can be set to 0 to run user code in the same event loop as the
- # replica's main event loop.
- RAY_SERVE_RUN_USER_CODE_IN_SEPARATE_THREAD = get_env_bool(
- "RAY_SERVE_RUN_USER_CODE_IN_SEPARATE_THREAD", "1"
- )
- # By default, we run the router in a separate event loop.
- # This flag can be set to 0 to run the router in the same event loop as the
- # replica's main event loop.
- RAY_SERVE_RUN_ROUTER_IN_SEPARATE_LOOP = get_env_bool(
- "RAY_SERVE_RUN_ROUTER_IN_SEPARATE_LOOP", "1"
- )
- # For now, this is used only for testing. In the suite of tests that
- # use gRPC to send requests, we flip this flag on.
- RAY_SERVE_USE_GRPC_BY_DEFAULT = (
- os.environ.get("RAY_SERVE_USE_GRPC_BY_DEFAULT", "0") == "1"
- )
- RAY_SERVE_PROXY_USE_GRPC = os.environ.get("RAY_SERVE_PROXY_USE_GRPC") == "1" or (
- not os.environ.get("RAY_SERVE_PROXY_USE_GRPC") == "0"
- and RAY_SERVE_USE_GRPC_BY_DEFAULT
- )
- # The default buffer size for request path logs. Setting to 1 will ensure
- # logs are flushed to file handler immediately, otherwise it will be buffered
- # and flushed to file handler when the buffer is full or when there is a log
- # line with level ERROR.
- RAY_SERVE_REQUEST_PATH_LOG_BUFFER_SIZE = get_env_int(
- "RAY_SERVE_REQUEST_PATH_LOG_BUFFER_SIZE", 1
- )
- # Feature flag to fail the deployment if the rank is not set.
- # TODO (abrar): Remove this flag after the feature is stable.
- RAY_SERVE_FAIL_ON_RANK_ERROR = get_env_bool("RAY_SERVE_FAIL_ON_RANK_ERROR", "0")
- # The message to return when the replica is healthy.
- HEALTHY_MESSAGE = "success"
- # Feature flag to enable a limited form of direct ingress where ingress applications
- # listen on port 8000 (HTTP) and 9000 (gRPC). No proxies will be started.
- RAY_SERVE_ENABLE_DIRECT_INGRESS = (
- os.environ.get("RAY_SERVE_ENABLE_DIRECT_INGRESS", "0") == "1"
- )
- RAY_SERVE_DIRECT_INGRESS_MIN_HTTP_PORT = int(
- os.environ.get("RAY_SERVE_DIRECT_INGRESS_MIN_HTTP_PORT", "30000")
- )
- RAY_SERVE_DIRECT_INGRESS_MIN_GRPC_PORT = int(
- os.environ.get("RAY_SERVE_DIRECT_INGRESS_MIN_GRPC_PORT", "40000")
- )
- RAY_SERVE_DIRECT_INGRESS_MAX_HTTP_PORT = int(
- os.environ.get("RAY_SERVE_DIRECT_INGRESS_MAX_HTTP_PORT", "31000")
- )
- RAY_SERVE_DIRECT_INGRESS_MAX_GRPC_PORT = int(
- os.environ.get("RAY_SERVE_DIRECT_INGRESS_MAX_GRPC_PORT", "41000")
- )
- RAY_SERVE_DIRECT_INGRESS_PORT_RETRY_COUNT = int(
- os.environ.get("RAY_SERVE_DIRECT_INGRESS_PORT_RETRY_COUNT", "100")
- )
- # The minimum drain period for a HTTP proxy.
- # If RAY_SERVE_FORCE_STOP_UNHEALTHY_REPLICAS is set to 1,
- # then the minimum draining period is 0.
- RAY_SERVE_DIRECT_INGRESS_MIN_DRAINING_PERIOD_S = float(
- os.environ.get("RAY_SERVE_DIRECT_INGRESS_MIN_DRAINING_PERIOD_S", "30")
- )
- # HTTP request timeout
- SERVE_HTTP_REQUEST_TIMEOUT_S_HEADER = "x-request-timeout-seconds"
- # HTTP request disconnect disabled
- SERVE_HTTP_REQUEST_DISCONNECT_DISABLED_HEADER = "x-request-disconnect-disabled"
- # If throughput optimized Ray Serve is enabled, set the following constants.
- # This should be at the end.
- RAY_SERVE_THROUGHPUT_OPTIMIZED = get_env_bool("RAY_SERVE_THROUGHPUT_OPTIMIZED", "0")
- if RAY_SERVE_THROUGHPUT_OPTIMIZED:
- RAY_SERVE_RUN_USER_CODE_IN_SEPARATE_THREAD = get_env_bool(
- "RAY_SERVE_RUN_USER_CODE_IN_SEPARATE_THREAD", "0"
- )
- RAY_SERVE_REQUEST_PATH_LOG_BUFFER_SIZE = get_env_int(
- "RAY_SERVE_REQUEST_PATH_LOG_BUFFER_SIZE", 1000
- )
- RAY_SERVE_RUN_ROUTER_IN_SEPARATE_LOOP = get_env_bool(
- "RAY_SERVE_RUN_ROUTER_IN_SEPARATE_LOOP", "0"
- )
- RAY_SERVE_LOG_TO_STDERR = get_env_bool("RAY_SERVE_LOG_TO_STDERR", "0")
- # The maximum allowed RPC latency in milliseconds.
- # This is used to detect and warn about long RPC latencies
- # between the controller and the replicas.
- RAY_SERVE_RPC_LATENCY_WARNING_THRESHOLD_MS = 2000
- # Feature flag to aggregate metrics at the controller instead of the replicas or handles.
- RAY_SERVE_AGGREGATE_METRICS_AT_CONTROLLER = get_env_bool(
- "RAY_SERVE_AGGREGATE_METRICS_AT_CONTROLLER", "0"
- )
- # Key for the decision counters in default autoscaling policy state
- SERVE_AUTOSCALING_DECISION_COUNTERS_KEY = "__decision_counters"
- # Event loop monitoring interval in seconds.
- # This is how often the event loop lag is measured.
- RAY_SERVE_EVENT_LOOP_MONITORING_INTERVAL_S = get_env_float_positive(
- "RAY_SERVE_EVENT_LOOP_MONITORING_INTERVAL_S", 5.0
- )
- # Histogram buckets for event loop scheduling latency in milliseconds.
- # These are tuned for detecting event loop blocking:
- # - < 10ms: healthy
- # - 10-50ms: acceptable under load
- # - 50-100ms: concerning, investigate
- # - 100-500ms: problematic, likely blocking code
- # - > 500ms: severe, definitely blocking
- # - > 5s: catastrophic
- SERVE_EVENT_LOOP_LATENCY_HISTOGRAM_BOUNDARIES_MS = [
- 1, # 1ms
- 5, # 5ms
- 10, # 10ms
- 25, # 25ms
- 50, # 50ms
- 100, # 100ms
- 250, # 250ms
- 500, # 500ms
- 1000, # 1s
- 2500, # 2.5s
- 5000, # 5s
- 10000, # 10s
- ]
|