You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| flight_client_timeout | 60 | 60 | SESSION | Max duration the flight client request is allowed to take in seconds. By default, it is 60 seconds. | UInt64 |
| group_by_two_level_threshold | 100000 | 100000 | SESSION | The threshold of keys to open two-level aggregation, default value: 10000. | UInt64 |
35
-
| input_read_buffer_size | 1048576 | 1048576 | SESSION | The size of buffer in bytes for input with format. By default, it is 1MB. | UInt64 |
36
-
| load_file_metadata_expire_hours | 168 | 168 | SESSION | How many hours will the COPY file metadata expired in the metasrv, default value: 24*7=7days | UInt64 |
37
-
| max_block_size | 65536 | 65536 | SESSION | Maximum block size for reading, default value: 65536. | UInt64 |
38
-
| max_execute_time | 0 | 0 | SESSION | The maximum query execution time. it means no limit if the value is zero. default value: 0. | UInt64 |
39
-
| max_memory_usage | 26771259392 | 26771259392 | SESSION | The maximum memory usage for processing single query, in bytes. By default the value is determined automatically. | UInt64 |
40
-
| max_storage_io_requests | 1000 | 1000 | SESSION | The maximum number of concurrent IO requests. By default, it is 64. | UInt64 |
41
-
| max_threads | 24 | 24 | SESSION | The maximum number of threads to execute the request. By default the value is determined automatically. | UInt64 |
| flight_client_timeout | 60 | 60 | SESSION | Sets the maximum timein seconds that a flight client request can be processed. | UInt64 |
29
+
| group_by_two_level_threshold | 20000 | 20000 | SESSION | Sets the number of keys in a GROUP BY operation that will trigger a two-level aggregation. | UInt64 |
30
+
| hide_options_in_show_create_table | 1 | 1 | SESSION | Hides table-relevant information, such as SNAPSHOT_LOCATION and STORAGE_FORMAT, at the end of the result of SHOW TABLE CREATE. | UInt64 |
31
+
| input_read_buffer_size | 1048576 | 1048576 | SESSION | Sets the memory size in bytes allocated to the buffer used by the buffered reader to read data from storage. | UInt64 |
32
+
| load_file_metadata_expire_hours | 168 | 168 | SESSION | Sets the hours that the metadata of files you load data from with COPY INTO will expire in. | UInt64 |
33
+
| max_block_size | 65536 | 65536 | SESSION | Sets the maximum byte size of a single data block that can be read. | UInt64 |
34
+
| max_execute_time | 0 | 0 | SESSION | Sets the maximum query execution timein seconds. Setting it to 0 means no limit. | UInt64 |
35
+
| max_inlist_to_or | 3 | 3 | SESSION | Sets the maximum number of values that can be included in an IN expression to be converted to an OR operator. | UInt64 |
36
+
| max_memory_usage | 12911303065 | 12911303065 | SESSION | Sets the maximum memory usage in bytes for processing a single query. | UInt64 |
37
+
| max_result_rows | 0 | 0 | SESSION | Sets the maximum number of rows that can be returned in a query result when no specific row count is specified. Setting it to 0 means no limit. | UInt64 |
38
+
| max_storage_io_requests | 48 | 48 | SESSION | Sets the maximum number of concurrent I/O requests. | UInt64 |
39
+
| max_threads | 16 | 16 | SESSION | Sets the maximum number of threads to execute a request. | UInt64 |
40
+
| parquet_uncompressed_buffer_size | 2097152 | 2097152 | SESSION | Sets the byte size of the buffer used for reading Parquet files. | UInt64 |
| query_result_cache_allow_inconsistent | 0 | 0 | SESSION | Determines whether Databend will return cached query results that are inconsistent with the underlying data. | UInt64 |
43
+
| query_result_cache_max_bytes | 1048576 | 1048576 | SESSION | Sets the maximum byte size of cache for a single query result. | UInt64 |
44
+
| query_result_cache_ttl_secs | 300 | 300 | SESSION | Sets the time-to-live (TTL) in seconds for cached query results. Once the TTL for a cached result has expired, the result is considered stale and will not be used for new queries. | UInt64 |
| retention_period | 12 | 12 | SESSION | Sets the retention period in hours. | UInt64 |
47
+
| sandbox_tenant | | | SESSION | Injects a custom 'sandbox_tenant' into this session. This is only for testing purposes and will take effect only when 'internal_enable_sandbox_tenant' is turned on. | String |
48
+
| spilling_bytes_threshold_per_proc | 0 | 0 | SESSION | Sets the maximum amount of memory in bytes that an aggregator can use before spilling data to storage during query execution. | UInt64 |
49
+
| sql_dialect | PostgreSQL | PostgreSQL | SESSION | Sets the SQL dialect. Available values include "PostgreSQL", "MySQL", and"Hive". | String |
50
+
| storage_fetch_part_num | 2 | 2 | SESSION | Sets the number of partitions that are fetched in parallel from storage during query execution. | UInt64 |
51
+
| storage_io_max_page_bytes_for_read | 524288 | 524288 | SESSION | Sets the maximum byte size of data pages that can be read from storage in a single I/O operation. | UInt64 |
52
+
| storage_io_min_bytes_for_seek | 48 | 48 | SESSION | Sets the minimum byte size of data that must be read from storage in a single I/O operation when seeking a new location in the data file. | UInt64 |
53
+
| storage_read_buffer_size | 1048576 | 1048576 | SESSION | Sets the byte size of the buffer used for reading data into memory. | UInt64 |
54
+
| timezone | UTC | UTC | SESSION | Sets the timezone. | String |
0 commit comments