使用clickhouse-client记录时可以设置设置吗?

时间:2020-06-26 02:58:55

标签: clickhouse

我想向Clickhouse代码库添加新的设置。 现在,在完成更改并编译Clickhouse之后,我要对其进行测试。

我可以在使用Clickhouse-client的身份验证过程中设置该设置吗?

例如,假设有一个名为 max_concurrent_queries_for_user

的设置
./clickhouse-client --port 6667 --send_logs_level=trace SET max_concurrent_queries_for_user=100

我可以这样登录,但是现在确定是否应用设置。

1 个答案:

答案 0 :(得分:1)

clickhouse-client有很多选项。

要获取可用选项的完整列表,请运行以下命令:

clickhouse-client  --help

Main options:
...
  --max_concurrent_queries_for_user arg The maximum number of concurrent 
                                        requests per user.
  --insert_deduplicate arg              For INSERT queries in the replicated 
                                        table, specifies that deduplication of 
                                        insertings blocks should be preformed
...
*/

选项-max_concurrent_queries_for_user arg 定义了“每个用户的最大并发请求数”。