load-balancing_random_steering

Configures pool weights. - `steering_policy="random"`: A random pool is selected with probability proportional to pool weights. - `steering_policy="least_outstanding_requests"`: Use pool weights to scale each pool's outstanding requests. - `steering_policy="least_connections"`: Use pool weights to scale each pool's open connections.

APIs.ioEngineeringPlatform

Properties

Name Type Description
default_weight number The default weight for pools in the load balancer that are not specified in the pool_weights map.
pool_weights object A mapping of pool IDs to custom weights. The weight is relative to other pools in the load balancer.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-load-balancing-random-steering-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/load-balancing_random_steering",
  "title": "load-balancing_random_steering",
  "description": "Configures pool weights.\n- `steering_policy=\"random\"`: A random pool is selected with probability proportional to pool weights.\n- `steering_policy=\"least_outstanding_requests\"`: Use pool weights to scale each pool's outstanding requests.\n- `steering_policy=\"least_connections\"`: Use pool weights to scale each pool's open connections.",
  "properties": {
    "default_weight": {
      "default": 1,
      "description": "The default weight for pools in the load balancer that are not specified in the pool_weights map.",
      "example": 0.2,
      "maximum": 1,
      "minimum": 0,
      "multipleOf": 0.1,
      "type": "number"
    },
    "pool_weights": {
      "description": "A mapping of pool IDs to custom weights. The weight is relative to other pools in the load balancer.",
      "example": {
        "9290f38c5d07c2e2f4df57b1f61d4196": 0.5,
        "de90f38ced07c2e2f4df50b1f61d4194": 0.3
      },
      "properties": {
        "key": {
          "description": "Pool ID",
          "type": "string"
        },
        "value": {
          "description": "Weight",
          "type": "number"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}