> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> System table containing information about resources residing on the local server with one row for every resource.

# system.resources

<h2 id="description">
  Description
</h2>

Contains information about [resources](/concepts/features/configuration/server-config/workload-scheduling#workload_entity_storage) residing on the local server. The table contains a row for every resource.

<h2 id="columns">
  Columns
</h2>

* `name` ([String](/reference/data-types/index)) — The name of the resource.
* `read_disks` ([Array(String)](/reference/data-types/index)) — The list of disk names that uses this resource for read operations.
* `write_disks` ([Array(String)](/reference/data-types/index)) — The list of disk names that uses this resource for write operations.
* `unit` ([String](/reference/data-types/index)) — Resource unit used for cost measurements.
* `create_query` ([String](/reference/data-types/index)) — CREATE query of the resource.

Example:

```sql theme={null}
SELECT *
FROM system.resources
FORMAT Vertical
```

```text theme={null}
Row 1:
──────
name:         io_read
read_disks:   ['s3']
write_disks:  []
create_query: CREATE RESOURCE io_read (READ DISK s3)

Row 2:
──────
name:         io_write
read_disks:   []
write_disks:  ['s3']
create_query: CREATE RESOURCE io_write (WRITE DISK s3)
```
