github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/test/testdata/cue_testdata/clickhouse.xml (about) 1 <!-- Settings profiles --> 2 <profiles> 3 <!-- Default settings --> 4 <default> 5 <!-- The maximum number of threads when running a single query. --> 6 <max_threads>8</max_threads> 7 </default> 8 9 <!-- Settings for quries from the user interface --> 10 <web> 11 <max_rows_to_read>1000000000</max_rows_to_read> 12 <max_bytes_to_read>100000000000</max_bytes_to_read> 13 14 <max_rows_to_group_by>1000000</max_rows_to_group_by> 15 <group_by_overflow_mode>any</group_by_overflow_mode> 16 17 <max_rows_to_sort>1000000</max_rows_to_sort> 18 <max_bytes_to_sort>1000000000</max_bytes_to_sort> 19 20 <max_result_rows>100000</max_result_rows> 21 <max_result_bytes>100000000</max_result_bytes> 22 <result_overflow_mode>break</result_overflow_mode> 23 24 <max_execution_time>600</max_execution_time> 25 <min_execution_speed>1000000</min_execution_speed> 26 <timeout_before_checking_execution_speed>15</timeout_before_checking_execution_speed> 27 28 <max_columns_to_read>25</max_columns_to_read> 29 <max_temporary_columns>100</max_temporary_columns> 30 <max_temporary_non_const_columns>50</max_temporary_non_const_columns> 31 32 <max_subquery_depth>2</max_subquery_depth> 33 <max_pipeline_depth>25</max_pipeline_depth> 34 <max_ast_depth>50</max_ast_depth> 35 <max_ast_elements>100</max_ast_elements> 36 37 <readonly>1</readonly> 38 </web> 39 </profiles>