ClickHouse/docs/en/system_tables/system.settings.md
BayoNet 13d9a4eebe Sources for english documentation switched to Markdown.
Edit page link is fixed too for both language versions of documentation.
2017-12-28 18:13:23 +03:00

942 B
Raw Blame History

system.settings

Contains information about settings that are currently in use. I.e. used for executing the query you are using to read from the system.settings table).

Columns:

name String   Setting name.
value String   Setting value.
changed UInt8 -Whether the setting was explicitly defined in the config or explicitly changed.

Example:

SELECT *
FROM system.settings
WHERE changed
┌─name───────────────────┬─value───────┬─changed─┐
│ max_threads            │ 8           │       1 │
│ use_uncompressed_cache │ 0           │       1 │
│ load_balancing         │ random      │       1 │
│ max_memory_usage       │ 10000000000 │       1 │
└────────────────────────┴─────────────┴─────────┘