airflow_balancer.BalancerConfiguration

pydantic model airflow_balancer.BalancerConfiguration[source]

Bases: BaseModel

Show JSON schema
{
   "title": "BalancerConfiguration",
   "type": "object",
   "properties": {
      "hosts": {
         "items": {
            "$ref": "#/$defs/Host"
         },
         "title": "Hosts",
         "type": "array"
      },
      "default_username": {
         "default": "airflow",
         "title": "Default Username",
         "type": "string"
      },
      "default_password": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Default Password"
      },
      "default_password_variable": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Default Password Variable"
      },
      "default_password_variable_key": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Default Password Variable Key"
      },
      "default_key_file": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Default Key File"
      },
      "primary_queue": {
         "default": "default",
         "title": "Primary Queue",
         "type": "string"
      },
      "secondary_queue": {
         "default": "default",
         "title": "Secondary Queue",
         "type": "string"
      },
      "default_queue": {
         "default": "default",
         "title": "Default Queue",
         "type": "string"
      },
      "default_size": {
         "default": 10,
         "title": "Default Size",
         "type": "integer"
      },
      "override_pool_size": {
         "default": false,
         "title": "Override Pool Size",
         "type": "boolean"
      },
      "create_connection": {
         "default": false,
         "title": "Create Connection",
         "type": "boolean"
      }
   },
   "$defs": {
      "Host": {
         "properties": {
            "name": {
               "title": "Name",
               "type": "string"
            },
            "username": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Username"
            },
            "password": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Password"
            },
            "password_variable": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Password Variable"
            },
            "password_variable_key": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Password Variable Key"
            },
            "key_file": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Key File"
            },
            "os": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Os"
            },
            "pool": {
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Pool"
            },
            "size": {
               "anyOf": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "null"
                  }
               ],
               "default": null,
               "title": "Size"
            },
            "queues": {
               "items": {
                  "type": "string"
               },
               "title": "Queues",
               "type": "array"
            },
            "tags": {
               "items": {
                  "type": "string"
               },
               "title": "Tags",
               "type": "array"
            }
         },
         "required": [
            "name"
         ],
         "title": "Host",
         "type": "object"
      }
   }
}

Fields:
  • create_connection (bool)

  • default_key_file (str | None)

  • default_password (str | None)

  • default_password_variable (str | None)

  • default_password_variable_key (str | None)

  • default_queue (str)

  • default_size (int)

  • default_username (str)

  • hosts (List[airflow_balancer.config.Host])

  • override_pool_size (bool)

  • primary_queue (str)

  • secondary_queue (str)

field hosts: List[Host] [Optional]
field default_username: str = 'airflow'
field default_password: str | None = None
field default_password_variable: str | None = None
field default_password_variable_key: str | None = None
field default_key_file: str | None = None
field primary_queue: str = 'default'
field secondary_queue: str = 'default'
field default_queue: str = 'default'
field default_size: int = 10
field override_pool_size: bool = False
field create_connection: bool = False
property all_hosts
filter_hosts(name: str = '', queue: str = '', os: str = '', tag: str = '', custom: Callable = None) List[Host][source]