Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Истории успеха
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Популярные
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • ИИ для бизнеса
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Облако для интеграторов
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Контент-программа
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Калькулятор цен
    • Тарифы
    • Промоакции и free tier
    • Правила тарификации
  • Истории успеха
  • Документация
  • Блог
Проект Яндекса
© 2025 ООО «Яндекс.Облако»
Yandex Managed Service for ClickHouse®
  • Начало работы
  • Управление доступом
  • Правила тарификации
    • Overview
      • Overview
      • add-quota
      • create
      • delete
      • get
      • grant-permission
      • list
      • remove-quota
      • revoke-permission
      • update
      • update-quota
  • Справочник Terraform
  • Метрики Yandex Monitoring
  • Аудитные логи Audit Trails
  • Публичные материалы
  • История изменений
  • Обучающие курсы
  1. Справочник CLI (англ.)
  2. user
  3. create

yc managed-clickhouse user create

Статья создана
Yandex Cloud
Обновлена 20 октября 2025 г.

Create a ClickHouse user.

Command UsageCommand Usage

Syntax:

yc managed-clickhouse user create <USER-NAME> [Flags...] [Global Flags...]

FlagsFlags

Flag Description
--cluster-id string
ID of the ClickHouse cluster.
--cluster-name string
Name of the ClickHouse cluster.
--async Display information about the operation in progress, without waiting for the operation to complete.
--password string
Password of the ClickHouse user.
--permissions value[,value]
Databases that the user should be able to access.
--generate-password Generate password using Connection Manager.
--settings key1=value1[,key2=value2][,"key3=val3a,val3b"]
User-specific settings. Acceptable keys:
  • readonly: Restricts permissions for non-DDL queries. To restrict permissions for DDL queries, use allow_ddl instead.

    • 0 - no restrictions.
    • 1 - only read data queries are allowed.
    • 2 - read data and change settings queries are allowed.

    Default value: 0.

    For details, see ClickHouse documentation.

  • allow_ddl: Allows or denies DDL queries (e.g., CREATE, ALTER, RENAME, etc).

    Default value: true.

    For details, see ClickHouse documentation.

  • allow_introspection_functions: Enables or disables introspection functions for query profiling.

    Default value: false.

    For details, see ClickHouse documentation.

  • connect_timeout: Connection timeout in milliseconds.

    Default value: 10000 (10 seconds).

    For details, see ClickHouse documentation.

  • connect_timeout_with_failover: The timeout in milliseconds for connecting to a remote server for a Distributed table engine.

    Applies only if the cluster uses sharding and replication. If unsuccessful, several attempts are made to connect to various replicas.

    Default value: 1000 (1 second).

    For details, see ClickHouse documentation.

  • receive_timeout: Receive timeout in milliseconds.

    Default value: 300000 (5 minutes).

    For details, see ClickHouse documentation.

  • send_timeout: Send timeout in milliseconds.

    Default value: 300000 (5 minutes).

    For details, see ClickHouse documentation.

  • idle_connection_timeout: Timeout to close idle TCP connections after specified time has elapsed, in milliseconds.

    Default value: 3600000 (1 hour).

    For details, see ClickHouse documentation.

  • timeout_before_checking_execution_speed: Checks that the speed is not too low after the specified time has elapsed, in milliseconds. It is checked that execution speed is not less that specified in min_execution_speed parameter.

    Default value: 60000 (1 minute).

    For details, see ClickHouse documentation.

  • insert_quorum: Enables or disables the quorum writes. If the value is less than 2, then the quorum writes is disabled, otherwise it is enabled.

    When used, write quorum guarantees that ClickHouse has written data to the quorum of insert_quorum replicas with no errors until the insert_quorum_timeout expires. All replicas in the quorum are in the consistent state, meaning that they contain linearized data from the previous INSERT queries. Employ write quorum, if you need the guarantees that the written data would not be lost in case of one or more replicas failure.

    You can use select_sequential_consistency setting to read the data written with write quorum.

    Default value: 0.

    For details, see ClickHouse documentation.

  • insert_quorum_timeout: Quorum write timeout in milliseconds.

    If the write quorum is enabled in the cluster, this timeout expires and some data is not written to the insert_quorum replicas, then ClickHouse will abort the execution of INSERT query and return an error. In this case, the client must send the query again to write the data block into the same or another replica.

    Default value: 600000 (10 minutes).

    For details, see ClickHouse documentation.

  • insert_quorum_parallel: Enables or disables parallelism for quorum INSERT queries.

    Default value: true.

    For details, see ClickHouse documentation.

  • select_sequential_consistency: Determines the behavior of SELECT queries from replicated tables. If enabled, ClickHouse will terminate a query with error message in case the replica does not have a chunk written with the quorum and will not read the parts that have not yet been written with the quorum.

    Default value: true.

    For details, see ClickHouse documentation.

  • replication_alter_partitions_sync: Wait mode for asynchronous actions in ALTER queries on replicated tables.

    • 0 - do not wait for replicas.
    • 1 - only wait for own execution.
    • 2 - wait for all replicas.

    Default value: 1.

    For details, see ClickHouse documentation.

  • max_replica_delay_for_distributed_queries: Max replica delay in milliseconds. If a replica lags more than the set value, this replica is not used and becomes a stale one.

    Default value: 300000 (5 minutes).

    For details, see ClickHouse documentation.

  • fallback_to_stale_replicas_for_distributed_queries: Enables or disables query forcing to a stale replica in case the actual data is unavailable. If enabled, ClickHouse will choose the most up-to-date replica and force the query to use the data in this replica. This setting can be used when doing SELECT query from a distributed table that points to replicated tables.

    Default value: true.

    For details, see ClickHouse documentation.

  • distributed_product_mode: Determines the behavior of distributed subqueries.

    Default value: DISTRIBUTED_PRODUCT_MODE_DENY.

    For details, see ClickHouse documentation.

  • distributed_aggregation_memory_efficient: Enables of disables memory saving mode when doing distributed aggregation.

    When ClickHouse works with a distributed query, external aggregation is done on remote servers. Enable this setting to achieve a smaller memory footprint on the server that sourced such a distributed query.

    Default value: true.

    For details, see ClickHouse documentation.

  • distributed_ddl_task_timeout: Timeout for DDL queries, in milliseconds.

    Default value: 180000 (3 minutes).

    For details, see ClickHouse documentation.

  • distributed_ddl_output_mode: Determines the format of distributed DDL query result.

    Default value: DISTRIBUTED_DDL_OUTPUT_MODE_THROW.

    For details, see ClickHouse documentation.

  • skip_unavailable_shards: Enables or disables silent skipping of unavailable shards.

    A shard is considered unavailable if all its replicas are also unavailable.

    Default value: false.

    For details, see ClickHouse documentation.

  • use_hedged_requests: Enables or disables hedged requests logic for remote queries.

    It allows to establish many connections with different replicas for query. New connection is enabled in case existent connection(s) with replica(s) were not established within hedged_connection_timeout or no data was received within receive_data_timeout. Query uses the first connection which send non empty progress packet, other connections are cancelled.

    Default value: true.

    For details, see ClickHouse documentation.

  • hedged_connection_timeout_ms: Connection timeout for establishing connection with replica for Hedged requests.

    Default value: 50.

    For details, see ClickHouse documentation.

  • load_balancing: Algorithm of replicas selection that is used for distributed query processing.

    Default value: LOAD_BALANCING_RANDOM.

    For details, see ClickHouse documentation.

  • prefer_localhost_replica: Enable or disable preferable using the localhost replica when processing distributed queries.

    Default value: true.

    For details, see ClickHouse documentation.

  • compile_expressions: Enable or disable expression compilation to native code.

    If you execute a lot of queries that contain identical expressions, then enable this setting. As a result, such queries may be executed faster due to use of compiled expressions.

    Use this setting in combination with min_count_to_compile_expression setting.

    Default value: true for versions 25.5 and higher, false for versions 25.4 and lower.

    For details, see ClickHouse documentation.

  • min_count_to_compile_expression: How many identical expressions ClickHouse has to encounter before they are compiled.

    For the 0 value compilation is synchronous: a query waits for expression compilation process to complete prior to continuing execution. It is recommended to set this value only for testing purposes.

    For all other values, compilation is asynchronous: the compilation process executes in a separate thread. When a compiled expression is ready, it will be used by ClickHouse for eligible queries, including the ones that are currently running.

    Default value: 3.

    For details, see ClickHouse documentation.

  • max_block_size: Sets the recommended maximum number of rows to include in a single block when loading data from tables.

    Blocks the size of max_block_size are not always loaded from the table: if ClickHouse determines that less data needs to be retrieved, a smaller block is processed.

    The block size should not be too small to avoid noticeable costs when processing each block. It should also not be too large to ensure that queries with a LIMIT clause execute quickly after processing the first block. When setting max_block_size, the goal should be to avoid consuming too much memory when extracting a large number of columns in multiple threads and to preserve at least some cache locality.

    Default value: 65409.

    For details, see ClickHouse documentation.

  • min_insert_block_size_rows: Limits the minimum number of rows in a block to be inserted in a table by INSERT query. Blocks that are smaller than the specified value, will be squashed together into the bigger blocks. If set to 0, block squashing is disabled.

    Default value: 1048449.

    For details, see ClickHouse documentation.

  • min_insert_block_size_bytes: Limits the minimum number of bytes in a block to be inserted in a table by INSERT query. Blocks that are smaller than the specified value, will be squashed together into the bigger blocks. If set to 0, block squashing is disabled.

    Default value: 268402944.

    For details, see ClickHouse documentation.

  • max_insert_block_size: The size of blocks (in a count of rows) to form for insertion into a table.

    This setting only applies in cases when the server forms the blocks. For example, for an INSERT via the HTTP interface, the server parses the data format and forms blocks of the specified size. But when using clickhouse-client, the client parses the data itself, and the max_insert_block_size setting on the server does not affect the size of the inserted blocks. The setting also does not have a purpose when using INSERT SELECT, since data is inserted using the same blocks that are formed after SELECT.

    Default value: 1048449.

    For details, see ClickHouse documentation.

  • max_partitions_per_insert_block: When inserting data, ClickHouse calculates the number of partitions in the inserted block. If the number of partitions is more than max_partitions_per_insert_block, ClickHouse throws an exception.

    Default value: 100.

    For details, see ClickHouse documentation.

  • min_bytes_to_use_direct_io: Limits the minimum number of bytes to enable unbuffered direct reads from disk (Direct I/O). If set to 0, Direct I/O is disabled.

    By default, ClickHouse does not read data directly from disk, but relies on the filesystem and its cache instead. Such reading strategy is effective when the data volume is small. If the amount of the data to read is huge, it is more effective to read directly from the disk, bypassing the filesystem cache.

    Default value: 0.

    For details, see ClickHouse documentation.

  • use_uncompressed_cache: Determines whether to use the cache of uncompressed blocks, or not.

    Using this cache can significantly reduce latency and increase the throughput when a huge amount of small queries is to be processed. Enable this setting for the users who instantiates small queries frequently.

    This setting has effect only for tables of the MergeTree family.

    Default value: false.

    For details, see ClickHouse documentation.

  • merge_tree_max_rows_to_use_cache: Limits the maximum size in rows of the request that can use the cache of uncompressed data. The cache is not used for requests larger than the specified value.

    Use this setting in combination with use_uncompressed_cache setting.

    Default value: 1048576.

    For details, see ClickHouse documentation.

  • merge_tree_max_bytes_to_use_cache: Limits the maximum size in bytes of the request that can use the cache of uncompressed data. The cache is not used for requests larger than the specified value.

    Use this setting in combination with use_uncompressed_cache setting.

    Default value: 2013265920 (1920 MiB).

    For details, see ClickHouse documentation.

  • merge_tree_min_rows_for_concurrent_read: Limits the minimum number of rows to be read from a file to enable concurrent read. If the number of rows to be read exceeds this value, then ClickHouse will try to use a few threads to read from a file concurrently.

    This setting has effect only for tables of the MergeTree family.

    Default value: 163840.

    For details, see ClickHouse documentation.

  • merge_tree_min_bytes_for_concurrent_read: Limits the number of bytes to be read from a file to enable concurrent read. If the number of bytes to be read exceeds this value, then ClickHouse will try to use a few threads to read from a file concurrently.

    This setting has effect only for tables of the MergeTree family.

    Default value: 251658240 (240 MiB).

    For details, see ClickHouse documentation.

  • max_bytes_before_external_group_by: Sets the threshold of RAM consumption (in bytes) after that the temporary data, collected during the GROUP BY operation, should be flushed to disk to limit the RAM consumption. If set to 0, GROUP BY in the external memory is disabled.

    By default, aggregation is done by employing hash table that resides in RAM. A query can result in aggregation of huge data volumes that can lead to memory exhaustion and abortion of the query (see the max_memory_usage setting). For such queries, you can use this setting to force ClickHouse to do flushing and complete aggregation successfully.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_before_external_sort: Sets the threshold of RAM consumption (in bytes) after that the temporary data, collected during the ORDER BY operation, should be flushed to disk to limit the RAM consumption. If set to 0, ORDER BY in the external memory is disabled.

    Default value: 0.

    For details, see ClickHouse documentation.

  • group_by_two_level_threshold: Sets the threshold of the number of keys, after that the two-level aggregation should be used. 0 means threshold is not set.

    Default value: 100000.

    For details, see ClickHouse documentation.

  • group_by_two_level_threshold_bytes: Sets the threshold of the number of bytes, after that the two-level aggregation should be used. 0 means threshold is not set.

    Default value: 50000000.

    For details, see ClickHouse documentation.

  • deduplicate_blocks_in_dependent_materialized_views: Enables or disables the deduplication check for materialized views that receive data from replicated tables.

    Default value: false.

    For details, see ClickHouse documentation.

  • local_filesystem_read_method: Method of reading data from local filesystem.

    The LOCAL_FILESYSTEM_READ_METHOD_IO_URING is experimental and does not work for Log, TinyLog, StripeLog, File, Set and Join, and other tables with append-able files in presence of concurrent reads and writes.

    For details, see ClickHouse documentation.

  • remote_filesystem_read_method: Method of reading data from remote filesystem.

    Default value: REMOTE_FILESYSTEM_READ_METHOD_THREADPOOL.

    For details, see ClickHouse documentation.

  • priority: Sets the priority of a query.

    • 0 - priorities are not used.
    • 1 - the highest priority.
    • and so on. The higher the number, the lower a query's priority.

    If ClickHouse is working with the high-priority queries, and a low-priority query enters, then the low-priority query is paused until higher-priority queries are completed.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_threads: Limits the maximum number of threads to process the request. If set to 0, the number of threads is calculated automatically based on the number of available CPU cores.

    The setting applies to threads that perform the same stages of the query processing pipeline in parallel. It does not take threads that read data from remote servers into account.

    For details, see ClickHouse documentation.

  • max_insert_threads: The maximum number of threads to execute the INSERT SELECT query.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_memory_usage: Limits the maximum memory usage (in bytes) for processing of a single user's query on a single server. 0 means unlimited.

    This limitation is enforced for any user's single query on a single server.

    If you use max_bytes_before_external_group_by or max_bytes_before_external_sort setting, then it is recommended to set their values twice as low as max_memory_usage setting value.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_memory_usage_for_user: Limits the maximum memory usage (in bytes) for processing of user's queries on a single server. 0 means unlimited.

    This limitation is enforced for all queries that belong to one user and run simultaneously on a single server.

    Default value: 0.

    For details, see ClickHouse documentation.

  • memory_overcommit_ratio_denominator: It represents the soft memory limit when the hard limit is reached on the global level. This value is used to compute the overcommit ratio for the query. 0 means skip the query.

    Default value: 1073741824 (1 GiB).

    For details, see ClickHouse documentation.

  • memory_overcommit_ratio_denominator_for_user: It represents the soft memory limit when the hard limit is reached on the user level. This value is used to compute the overcommit ratio for the user. 0 means skip the query.

    Default value: 1073741824 (1 GiB).

    For details, see ClickHouse documentation.

  • memory_usage_overcommit_max_wait_microseconds: Maximum time thread will wait for memory to be freed in the case of memory overcommit. If the timeout is reached and memory is not freed, an exception is thrown.

    Default value: 5000000 (5 seconds).

    For details, see ClickHouse documentation.

  • max_network_bandwidth: The maximum speed of data exchange over the network in bytes per second for a query. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_network_bandwidth_for_user: The maximum speed of data exchange over the network in bytes per second for all concurrently running user queries. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_temporary_data_on_disk_size_for_query: The maximum amount of data consumed by temporary files on disk in bytes for all concurrently running queries. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_temporary_data_on_disk_size_for_user: The maximum amount of data consumed by temporary files on disk in bytes for all concurrently running user queries. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_concurrent_queries_for_user: The maximum number of simultaneously processed queries per user. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • force_index_by_date: Disables query execution if the index cannot be used by date.

    This setting has effect only for tables of the MergeTree family.

    Default value: false.

    For details, see ClickHouse documentation.

  • force_primary_key: Disables query execution if indexing by the primary key cannot be used.

    This setting has effect only for tables of the MergeTree family.

    Default value: false.

    For details, see ClickHouse documentation.

  • max_rows_to_read: Limits the maximum number of rows that can be read from a table when running a query. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_to_read: Limits the maximum number of bytes (uncompressed data) that can be read from a table when running a query. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • read_overflow_mode: Determines the behavior on exceeding limits while reading the data.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_rows_to_group_by: Limits the maximum number of unique keys received from aggregation. 0 means unlimited. This setting lets you limit RAM consumption when aggregating.

    Default value: 0.

    For details, see ClickHouse documentation.

  • group_by_overflow_mode: Determines the behavior on exceeding limits while doing aggregation.

    Default value: GROUP_BY_OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_rows_to_sort: Limits the maximum number of rows that can be read from a table for sorting. 0 means unlimited. This setting lets you to limit RAM consumption when sorting

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_to_sort: Limits the maximum number of bytes (uncompressed data) that can be read from a table for sorting. 0 means unlimited. This setting lets you to limit RAM consumption when sorting

    Default value: 0.

    For details, see ClickHouse documentation.

  • sort_overflow_mode: Determines the behavior on exceeding limits while sorting.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_result_rows: Limits the number of rows in the result. 0 means unlimited.

    This limitation is also checked for subqueries and parts of distributed queries that run on remote servers.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_result_bytes: Limits the result size in bytes (uncompressed data). 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • result_overflow_mode: Determines the behavior on exceeding limits while forming result.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_rows_in_distinct: Limits the maximum number of different rows in the state, which is used for performing DISTINCT. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_in_distinct: Limits the maximum number of bytes (uncompressed data) in the state, which is used for performing DISTINCT. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • distinct_overflow_mode: Determines the behavior on exceeding limits while performing DISTINCT.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_rows_to_transfer: Limits the maximum number of rows that can be passed to a remote server or saved in a temporary table when using GLOBAL IN|JOIN. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_to_transfer: Limits the maximum number of bytes (uncompressed data) that can be passed to a remote server or saved in a temporary table when using GLOBAL IN|JOIN. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • transfer_overflow_mode: Determines the behavior on exceeding limits while transfering data.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_execution_time: Limits the maximum query execution time in milliseconds. 0 means unlimited.

    The timeout is checked and the query can stop only in designated places during data processing.

    Default value: 0.

    For details, see ClickHouse documentation.

  • timeout_overflow_mode: Determines the behavior on exceeding limits of execution time.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_rows_in_set: Limits on the maximum number of rows in the set resulting from the execution of the IN section. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_in_set: Limits on the maximum number of bytes (uncompressed data) in the set resulting from the execution of the IN section. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • set_overflow_mode: Determines the behavior on exceeding max_rows_in_set or max_bytes_in_set limit.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_rows_in_join: Limits the maximum number of rows in the hash table that is used when joining tables. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_bytes_in_join: Limits the maximum number of bytes in the hash table that is used when joining tables. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • join_overflow_mode: Determines the behavior on exceeding max_rows_in_join or max_bytes_in_join limit.

    Default value: OVERFLOW_MODE_THROW.

    For details, see ClickHouse documentation.

  • max_columns_to_read: Limits the maximum number of columns that can be read from a table in a single query. 0 means unlimited. If the query requires to read more columns to complete, then it will be aborted.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_temporary_columns: Limits the maximum number of temporary columns that must be kept in RAM simultaneously when running a query, including constant columns. 0 means unlimited. If the query generates more than the specified number of temporary columns in memory as a result of intermediate calculation, then it will be aborted.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_temporary_non_const_columns: Limits the maximum number of temporary columns that must be kept in RAM simultaneously when running a query, not including constant columns. 0 means unlimited. If the query generates more than the specified number of temporary columns in memory as a result of intermediate calculation, then it will be aborted.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_query_size: Limits the size of the part of a query that can be transferred to RAM for parsing with the SQL parser, in bytes.

    Data in the VALUES clause of INSERT queries is processed by a separate stream parser (that consumes O(1) RAM) and not affected by this restriction.

    Default value: 262144 (256 KiB).

    For details, see ClickHouse documentation.

  • max_ast_depth: Limits the maximum depth of query syntax tree.

    Executing a big and complex query may result in building a syntax tree of enormous depth. By using this setting, you can prohibit execution of over-sized or non-optimized queries for huge tables.

    Default value: 1000.

    For details, see ClickHouse documentation.

  • max_ast_elements: Limits the maximum size of query syntax tree in number of nodes.

    Executing a big and complex query may result in building a syntax tree of enormous size. By using this setting, you can prohibit execution of over-sized or non-optimized queries for huge tables.

    Default value: 50000.

    For details, see ClickHouse documentation.

  • max_expanded_ast_elements: Limits the maximum size of query syntax tree in number of nodes after expansion of aliases and the asterisk values.

    Executing a big and complex query may result in building a syntax tree of enormous size. By using this setting, you can prohibit execution of over-sized or non-optimized queries for huge tables.

    Default value: 500000.

    For details, see ClickHouse documentation.

  • max_parser_depth: Limits maximum recursion depth in the recursive descent parser. Allows controlling the stack size. If set to 0, recursion depth is unlimited.

    Default value: 1000.

    For details, see ClickHouse documentation.

  • min_execution_speed: Minimal execution speed in rows per second. Checked on every data block when timeout_before_checking_execution_speed expires. If the execution speed is lower, an exception is thrown. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • min_execution_speed_bytes: Minimal execution speed in bytes per second. Checked on every data block when timeout_before_checking_execution_speed expires. If the execution speed is lower, an exception is thrown. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • input_format_values_interpret_expressions: Enables or disables SQL parser if the fast stream parser cannot parse the data.

    Enable this setting, if the data that you want to insert into a table contains SQL expressions.

    For example, the stream parser is unable to parse a value that contains now() expression; therefore an INSERT query for this value will fail and no data will be inserted into a table. With enabled SQL parser, this expression is parsed correctly: the now() expression will be parsed as SQL function, interpreted, and the current date and time will be inserted into the table as a result.

    This setting has effect only if you use Values format when inserting data.

    Default value: true.

    For details, see ClickHouse documentation.

  • input_format_defaults_for_omitted_fields: Enables or disables replacing omitted input values with default values of the respective columns when performing INSERT queries.

    Default value: true.

    For details, see ClickHouse documentation.

  • input_format_null_as_default: Enables or disables the initialization of NULL fields with default values, if data type of these fields is not nullable.

    Default value: true.

    For details, see ClickHouse documentation.

  • input_format_with_names_use_header: Enables or disables checking the column order when inserting data.

    Default value: true.

    For details, see ClickHouse documentation.

  • output_format_json_quote_64bit_integers: Enables or disables quoting of 64-bit integers in JSON output format.

    If this setting is enabled, then 64-bit integers (UInt64 and Int64) will be quoted when written to JSON output in order to maintain compatibility with the most of the JavaScript engines. Otherwise, such integers will not be quoted.

    Default value: false for versions 25.8 and higher, true for versions 25.7 and lower.

    For details, see ClickHouse documentation.

  • output_format_json_quote_denormals: Enables special floating-point values (+nan, -nan, +inf and -inf) in JSON output format.

    Default value: false.

    For details, see ClickHouse documentation.

  • date_time_input_format: Specifies which of date time parsers to use.

    Default value: DATE_TIME_INPUT_FORMAT_BASIC.

    For details, see ClickHouse documentation.

  • date_time_output_format: Specifies which of date time output formats to use.

    Default value: DATE_TIME_OUTPUT_FORMAT_SIMPLE.

    For details, see ClickHouse documentation.

  • low_cardinality_allow_in_native_format: Allows or restricts using the LowCardinality data type with the Native format.

    LowCardinality columns (aka sparse columns) store data in more effective way, compared to regular columns, by using hash tables. If data to insert suits this storage format, ClickHouse will place them into LowCardinality column.

    If you use a third-party ClickHouse client that can't work with LowCardinality columns, then this client will not be able to correctly interpret the result of the query that asks for data stored in LowCardinality column. Disable this setting to convert LowCardinality column to regular column when creating the result, so such clients will be able to process the result.

    Official ClickHouse client works with LowCardinality columns out-of-the-box.

    Default value: true.

    For details, see ClickHouse documentation.

  • empty_result_for_aggregation_by_empty_set: Enables or disables returning of empty result when aggregating without keys (with GROUP BY operation absent) on empty set (e.g., SELECT count() FROM table WHERE 0).

    • true - ClickHouse will return an empty result for such queries.
    • false - ClickHouse will return a single-line result consisting of NULL values for aggregation functions, in accordance with SQL standard.

    Default value: false.

    For details, see ClickHouse documentation.

  • format_regexp: Regular expression (for Regexp format).

    For details, see ClickHouse documentation.

  • format_regexp_escaping_rule: Field escaping rule (for Regexp format).

    Default value: FORMAT_REGEXP_ESCAPING_RULE_RAW.

    For details, see ClickHouse documentation.

  • format_regexp_skip_unmatched: Skip lines unmatched by regular expression (for Regexp format)

    Default value: false.

    For details, see ClickHouse documentation.

  • input_format_parallel_parsing: Enables or disables order-preserving parallel parsing of data formats. Supported only for TSV, TSKV, CSV and JSONEachRow formats.

    Default value: true.

    For details, see ClickHouse documentation.

  • input_format_import_nested_json: Enables or disables the insertion of JSON data with nested objects.

    Default value: false.

    For details, see ClickHouse documentation.

  • format_avro_schema_registry_url: Avro schema registry URL.

    For details, see ClickHouse documentation.

  • data_type_default_nullable: Allows data types without explicit modifiers NULL or NOT NULL in column definition will be Nullable.

    Default value: false.

    For details, see ClickHouse documentation.

  • http_connection_timeout: HTTP connection timeout, in milliseconds.

    Default value: 1000 (1 second).

    For details, see ClickHouse documentation.

  • http_receive_timeout: HTTP receive timeout, in milliseconds.

    Default value: 30000 (30 seconds).

    For details, see ClickHouse documentation.

  • http_send_timeout: HTTP send timeout, in milliseconds.

    Default value: 30000 (30 seconds).

    For details, see ClickHouse documentation.

  • enable_http_compression: Enables or disables data compression in HTTP responses.

    By default, ClickHouse stores data compressed. When executing a query, its result is uncompressed. Use this setting to command ClickHouse to compress the result when sending it via HTTP.

    Enable this setting and add the Accept-Encoding: HTTP header in a HTTP request to force compression of HTTP response from ClickHouse.

    ClickHouse support the following compression methods: gzip, br and deflate.

    Default value: false.

    For details, see ClickHouse documentation.

  • send_progress_in_http_headers: Enables or disables progress notifications using X-ClickHouse-Progress HTTP header.

    Default value: false.

    For details, see ClickHouse documentation.

  • http_headers_progress_interval: Minimum interval between progress notifications with X-ClickHouse-Progress HTTP header, in milliseconds.

    Default value: 100.

    For details, see ClickHouse documentation.

  • add_http_cors_header: Adds CORS header in HTTP responses.

    Default value: false.

    For details, see ClickHouse documentation.

  • cancel_http_readonly_queries_on_client_close: Cancels HTTP read-only queries (e.g. SELECT) when a client closes the connection without waiting for the response.

    Default value: false.

    For details, see ClickHouse documentation.

  • max_http_get_redirects: Limits the maximum number of HTTP GET redirect hops. If set to 0, no hops is allowed.

    Default value: 0.

    For details, see ClickHouse documentation.

  • http_max_field_name_size: Maximum length of field name in HTTP header.

    Default value: 131072.

    For details, see ClickHouse documentation.

  • http_max_field_value_size: Maximum length of field value in HTTP header.

    Default value: 131072.

    For details, see ClickHouse documentation.

  • quota_mode: Quota accounting mode.

    Default value: QUOTA_MODE_DEFAULT.

  • async_insert: If enabled, data from INSERT query is stored in queue and later flushed to table in background.

    Default value: false.

    For details, see ClickHouse documentation.

  • wait_for_async_insert: Enables or disables waiting for processing of asynchronous insertion. If enabled, server returns OK only after the data is inserted.

    Default value: true.

    For details, see ClickHouse documentation.

  • wait_for_async_insert_timeout: Timeout for waiting for processing asynchronous inserts, in seconds.

    Default value: 120 (2 minutes).

    For details, see ClickHouse documentation.

  • async_insert_max_data_size: The maximum size of the unparsed data in bytes collected per query before being inserted.

    Default value: 10485760 (10 MiB).

    For details, see ClickHouse documentation.

  • async_insert_busy_timeout: Maximum time to wait before dumping collected data per query since the first data appeared.

    Default value: 200.

    For details, see ClickHouse documentation.

  • async_insert_use_adaptive_busy_timeout: Enables of disables adaptive busy timeout for asynchronous inserts.

    Default value: true.

    For details, see ClickHouse documentation.

  • log_query_threads: Enables or disables query threads logging to the the system.query_thread_log table. This setting has effect only when log_queries setting is enabled.

    Default value: false.

    For details, see ClickHouse documentation.

  • log_query_views: Enables or disables query views logging to the the system.query_views_log table.

    Default value: true.

    For details, see ClickHouse documentation.

  • log_queries_probability: Log queries with the specified probability.

    Default value: 1.

    For details, see ClickHouse documentation.

  • log_processors_profiles: Enables or disables logging of processors level profiling data to the the system.processors_profile_log table.

    Default value: false.

    For details, see ClickHouse documentation.

  • use_query_cache: If turned on, SELECT queries may utilize the query cache.

    Default value: false.

    For details, see ClickHouse documentation.

  • enable_reads_from_query_cache: If turned on, results of SELECT queries are retrieved from the query cache.

    Default value: true.

    For details, see ClickHouse documentation.

  • enable_writes_to_query_cache: If turned on, results of SELECT queries are stored in the query cache.

    Default value: true.

    For details, see ClickHouse documentation.

  • query_cache_min_query_runs: Minimum number of times a SELECT query must run before its result is stored in the query cache.

    Default value: 0.

    For details, see ClickHouse documentation.

  • query_cache_min_query_duration: Minimum duration in milliseconds a query needs to run for its result to be stored in the query cache.

    Default value: 0.

    For details, see ClickHouse documentation.

  • query_cache_ttl: After this time in seconds entries in the query cache become stale.

    Default value: 60 (1 minute).

    For details, see ClickHouse documentation.

  • query_cache_max_entries: The maximum number of query results the current user may store in the query cache. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • query_cache_max_size_in_bytes: The maximum amount of memory (in bytes) the current user may allocate in the query cache. 0 means unlimited.

    Default value: 0.

    For details, see ClickHouse documentation.

  • query_cache_tag: A string which acts as a label for query cache entries. The same queries with different tags are considered different by the query cache.

    For details, see ClickHouse documentation.

  • query_cache_share_between_users: If turned on, the result of SELECT queries cached in the query cache can be read by other users.

    It is not recommended to enable this setting due to security reasons.

    Default value: false.

    For details, see ClickHouse documentation.

  • query_cache_nondeterministic_function_handling: Controls how the query cache handles SELECT queries with non-deterministic functions like rand() or now().

    Default value: QUERY_CACHE_NONDETERMINISTIC_FUNCTION_HANDLING_THROW.

    For details, see ClickHouse documentation.

  • query_cache_system_table_handling: Controls how the query cache handles SELECT queries against system tables.

    Default value: QUERY_CACHE_SYSTEM_TABLE_HANDLING_THROW.

    For details, see ClickHouse documentation.

  • count_distinct_implementation: Specifies which of the uniq functions should be used to perform the COUNT(DISTINCT ...) construction.

    Default value: COUNT_DISTINCT_IMPLEMENTATION_UNIQ_EXACT.

    For details, see ClickHouse documentation.

  • joined_subquery_requires_alias: Force joined subqueries and table functions to have aliases for correct name qualification.

    Default value: true.

    For details, see ClickHouse documentation.

  • join_use_nulls: Determines JOIN behavior on filling empty cells when merging tables. If enabled, the empty cells are filled with NULL. Otherwise, the empty cells are filled with the default value of the corresponding field type.

    Default value: false.

    For details, see ClickHouse documentation.

  • transform_null_in: Enables equality of NULL values for IN operator.

    By default, NULL values can't be compared because NULL means undefined value. Thus, comparison expr = NULL must always return false. With this setting enabled NULL = NULL returns true for IN operator.

    Default value: false.

    For details, see ClickHouse documentation.

  • insert_null_as_default: Enables or disables the insertion of default values instead of NULL into columns with not nullable data type.

    If column type is not nullable and this setting is disabled, then inserting NULL causes an exception. If column type is nullable, then NULL values are inserted as is, regardless of this setting.

    Default value: true.

    For details, see ClickHouse documentation.

  • join_algorithm: Specifies which JOIN algorithm to use.

    Default value: JOIN_ALGORITHM_DIRECT,JOIN_ALGORITHM_PARALLEL_HASH,JOIN_ALGORITHM_HASH for versions 24.12 and higher, JOIN_ALGORITHM_DIRECT,JOIN_ALGORITHM_AUTO for versions from 23.8 to 24.11, JOIN_ALGORITHM_AUTO for versions 23.7 and lower.

    For details, see ClickHouse documentation.

  • any_join_distinct_right_table_keys: Enables legacy ClickHouse server behaviour in ANY INNER|LEFT JOIN operations.

    Default value: false.

    For details, see ClickHouse documentation.

  • allow_suspicious_low_cardinality_types: Allows or restricts using LowCardinality with data types with fixed size of 8 bytes or less.

    Default value: false.

    For details, see ClickHouse documentation.

  • flatten_nested: Sets the data format of nested columns.

    Default value: true.

    For details, see ClickHouse documentation.

  • memory_profiler_step: Sets the step of memory profiler. Whenever query memory usage becomes larger than every next step in number of bytes the memory profiler will collect the allocating stacktrace and will write it into trace_log. If set to 0, memory profiler is disabled.

    Default value: 4194304.

    For details, see ClickHouse documentation.

  • memory_profiler_sample_probability: Collect random allocations and deallocations and write them into system.trace_log with MemorySample trace_type. The probability is for every alloc/free regardless to the size of the allocation.

    Default value: 0.

    For details, see ClickHouse documentation.

  • max_final_threads: Sets the maximum number of parallel threads for the SELECT query data read phase with the FINAL modifier.

    For details, see ClickHouse documentation.

  • max_read_buffer_size: The maximum size of the buffer to read from the filesystem.

    Default value: 1048576 (1 MiB).

    For details, see ClickHouse documentation.

  • insert_keeper_max_retries: The setting sets the maximum number of retries for ClickHouse Keeper (or ZooKeeper) requests during insert into replicated MergeTree tables. Only Keeper requests which failed due to network error, Keeper session timeout or request timeout are considered for retries.

    Default value: 20.

    For details, see ClickHouse documentation.

  • do_not_merge_across_partitions_select_final: Enable or disable independent processing of partitions for SELECT queries with FINAL.

    Default value: false.

    For details, see ClickHouse documentation.

  • ignore_materialized_views_with_dropped_target_table: Ignore materialized views with dropped target table during pushing to views.

    Default value: false.

    For details, see ClickHouse documentation.

  • enable_analyzer: Enables or disables new query analyzer.

    Default value: true for versions 25.9 and higher, false for version 25.8, true for versions from 25.5 to 25.7, false for versions 25.4 and lower.

    For details, see ClickHouse documentation.

  • s3_use_adaptive_timeouts: Enables or disables adaptive timeouts for S3 requests.

    • true - for all S3 requests first two attempts are made with low send and receive timeouts.
    • false - all attempts are made with identical timeouts.

    Default value: true.

    For details, see ClickHouse documentation.

  • final: If enabled, automatically applies FINAL modifier to all tables in a query, to tables where FINAL is applicable, including joined tables and tables in sub-queries, and distributed tables.

    Default value: false.

    For details, see ClickHouse documentation.

  • compile: The setting is deprecated and has no effect.

  • min_count_to_compile: The setting is deprecated and has no effect.

  • async_insert_threads: The setting is deprecated and has no effect.

  • async_insert_stale_timeout: The setting is deprecated and has no effect.

--quota PROPERTY=VALUE[,PROPERTY=VALUE...]
User specific quotas

Possible property names:
  • interval: Duration of interval for quota in milliseconds. Possible to use time units - "1m30s". Minimal value is 1 second.
  • queries: The total number of queries. 0 - unlimited.
  • errors: The number of queries that threw exception. 0 - unlimited.
  • result-rows: The total number of rows given as the result. 0 - unlimited.
  • read-rows: The total number of source rows read from tables for running the query, on all remote servers. 0 - unlimited.
  • execution-time: The total query execution time, in milliseconds (wall time). Possible to use time units - "1m30s". 0 - unlimited.

Global FlagsGlobal Flags

Flag Description
--profile string
Set the custom configuration file.
--debug Debug logging.
--debug-grpc Debug gRPC logging. Very verbose, used for debugging connection problems.
--no-user-output Disable printing user intended output to stderr.
--retry int
Enable gRPC retries. By default, retries are enabled with maximum 5 attempts.
Pass 0 to disable retries. Pass any negative value for infinite retries.
Even infinite retries are capped with 2 minutes timeout.
--cloud-id string
Set the ID of the cloud to use.
--folder-id string
Set the ID of the folder to use.
--folder-name string
Set the name of the folder to use (will be resolved to id).
--endpoint string
Set the Cloud API endpoint (host:port).
--token string
Set the OAuth token to use.
--impersonate-service-account-id string
Set the ID of the service account to impersonate.
--no-browser Disable opening browser for authentication.
--format string
Set the output format: text (default), yaml, json, json-rest.
--jq string
Query to select values from the response using jq syntax
-h,--help Display help for the command.

ExamplesExamples

  • Создать пользователя

Была ли статья полезна?

Предыдущая
add-quota
Следующая
delete
Проект Яндекса
© 2025 ООО «Яндекс.Облако»