POSTGRES_HANDLERS_COMMAND_CONTROL Dynamic Config
Dynamic config that controls per-handle statement and network timeouts. Overrides POSTGRES_DEFAULT_COMMAND_CONTROL and built-in timeouts from components::Postgres::kDefaultCommandControl, but may be overridden by POSTGRES_QUERIES_COMMAND_CONTROL and storages::postgres::CommandControl.
Schema:
# yaml
default: {}
description: |
Dynamic config that controls per-handle statement and network timeouts.
Overrides POSTGRES_DEFAULT_COMMAND_CONTROL and
built-in timeouts from components::Postgres::kDefaultCommandControl,
but may be overridden by POSTGRES_QUERIES_COMMAND_CONTROL and
storages::postgres::CommandControl.
schema:
type: object
additionalProperties:
$ref: "#/definitions/CommandControlByMethodMap"
definitions:
CommandControlByMethodMap:
type: object
additionalProperties:
$ref: "#/definitions/CommandControl"
CommandControl:
type: object
additionalProperties: false
properties:
network_timeout_ms:
type: integer
minimum: 1
statement_timeout_ms:
type: integer
minimum: 1
prepared_statements_enabled:
type: boolean
For a full list of dynamic configs see Dynamic config schemas list