mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
41 lines
836 B
Markdown
41 lines
836 B
Markdown
---
|
|
slug: /en/operations/system-tables/workloads
|
|
---
|
|
# workloads
|
|
|
|
Contains information for [workloads](/docs/en/operations/workload-scheduling.md#workload_entity_storage) residing on the local server. The table contains a row for every workload.
|
|
|
|
Example:
|
|
|
|
``` sql
|
|
SELECT *
|
|
FROM system.workloads
|
|
FORMAT Vertical
|
|
```
|
|
|
|
``` text
|
|
Row 1:
|
|
──────
|
|
name: production
|
|
parent: all
|
|
create_query: CREATE WORKLOAD production IN `all` SETTINGS weight = 9
|
|
|
|
Row 2:
|
|
──────
|
|
name: development
|
|
parent: all
|
|
create_query: CREATE WORKLOAD development IN `all`
|
|
|
|
Row 3:
|
|
──────
|
|
name: all
|
|
parent:
|
|
create_query: CREATE WORKLOAD `all`
|
|
```
|
|
|
|
Columns:
|
|
|
|
- `name` (`String`) - Workload name.
|
|
- `parent` (`String`) - Parent workload name.
|
|
- `create_query` (`String`) - The definition of the workload.
|