1.9 KiB
toc_folder_title | toc_priority | toc_title |
---|---|---|
Settings | 55 | Introduction |
Settings
There are multiple ways to make all the settings described in this section of documentation.
Settings are configured in layers, so each subsequent layer redefines the previous settings.
Ways to configure settings, in order of priority:
-
Settings in the
users.xml
server configuration file.Set in the element
<profiles>
. -
Session settings.
Send
SET setting=value
from the ClickHouse console client in interactive mode. Similarly, you can use ClickHouse sessions in the HTTP protocol. To do this, you need to specify thesession_id
HTTP parameter. -
Query settings.
- When starting the ClickHouse console client in non-interactive mode, set the startup parameter
--setting=value
. - When using the HTTP API, pass CGI parameters (
URL?setting_1=value&setting_2=value...
).
- When starting the ClickHouse console client in non-interactive mode, set the startup parameter
Settings that can only be made in the server config file are not covered in this section.
Custom Settings
In addition to the common settings, users can define custom settings.
A custom setting name must begin with one of predefined prefixes. The list of these prefixes must be declared in the custom_settings_prefixes parameter in the server configuration file.
<custom_settings_prefixes>custom_</custom_settings_prefixes>
To define a custom setting use SET
command:
SET custom_a = 123;
To get the current value of a custom setting use getSetting()
function:
SELECT getSetting('custom_a');
See Also