Usage Recommendations | ClickHouse Documentation
Testing Hardware | ClickHouse Documentation
开源测试集导入以及性能测试_用户指南_云数据库 ClickHouse - 阿里云
Quotas | ClickHouse Documentation
ClickHouse quotas 允许在一段时间内限制资源使用情况,或者只是跟踪资源的使用,控制粒度可以到指定查询语句组、指定用户。可以在 users.xml 中进行相关配置。
<!-- Quotas -->
<quotas>
<!-- Quota name. -->
<default>
<!-- Restrictions for a time period. You can set many intervals with different restrictions. -->
<interval>
<!-- Length of the interval. -->
<duration>3600</duration>
<!-- Unlimited. Just collect data for the specified time interval. -->
<queries>0</queries>
<errors>0</errors>
<result_rows>0</result_rows>
<read_rows>0</read_rows>
<execution_time>0</execution_time>
</interval>
</default>