Skip to content

pg_resqueue

Note The pg_resqueue system catalog table is valid only when resource queue-based resource management is active.

The pg_resqueue system catalog table contains information about WarehousePG resource queues, which are used for the resource management feature. This table is populated only on the coordinator. This table is defined in the pg_global tablespace, meaning it is globally shared across all databases in the system.

columntypereferencesdescription
oidoidThe object id
rsqnamenameThe name of the resource queue
rsqcountlimitrealThe active query threshold of the resource queue
rsqcostlimitrealThe query cost threshold of the resource queue
rsqovercommitbooleanAllows queries that exceed the cost threshold to run when the system is idle
rsqignorecostlimitrealThe query cost limit of what is considered a 'small query'. Queries with a cost under this limit will not be queued and run immediately.

Parent topic: System Catalogs Definitions