Skip to content

Commit

Permalink
docs: add descriptions for scan_default_parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshiakiNishimura committed Dec 23, 2024
1 parent 305000d commit e9c7813
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/config-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Target component
| `thread_pool_size` | Integer | Number of threads used by the task scheduler in the SQL service. The default value is set according to the environment by the following formula. <ul><li>`MIN(<default worker coefficient> * <number of physical cores>, <maximum default worker count>)` </li><li>If the result is less than 1, it is set to 1. </li><li>the `<default worker coefficient>` is 0.8 </li><li>the `<maximum default worker count>` is 32.</ul> |
| `scan_block_size` | Integer | The maximum number of scan operator records processed before yielding to other tasks. The default limit is 100 records. If set to 0, this limit is removed. The scan operator processes either the entire table or a specific range of data. This parameter is intended to prevent the thread from becoming unresponsive when the number of scan operator records is too large. |
| `scan_yield_interval` | Integer | The maximum millisecond time of scan operator processing records before yielding to other tasks. The default is 1. If the value of this option is set to 0, the decision to split will rely solely on the value of scan_block_size. When using this option, it is recommended to keep the scan_block_size at its default value. If the scan_block_size is set to an extremely large value, the actual split occur after a time that significantly exceeds the specified value. |
| `scan_default_parallel` | Integer | The maximum degree of parallelism for RTX scan tasks. The default value is 4. | This setting is experimental and may undergo changes in future releases. While it is experimental, this parameter must be enabled by also setting `dev_rtx_parallel_scan=true`. This parameter must be less than the value of default_partitions.|

## `ipc_endpoint` section

Expand Down

0 comments on commit e9c7813

Please sign in to comment.