Skip to content

Commit

Permalink
docs: add new config. param. dev_rtx_parallel_scan
Browse files Browse the repository at this point in the history
  • Loading branch information
kuron99 authored Dec 17, 2024
1 parent 1a7421b commit d84f83e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/config-parameters-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Target component
|dev_inplace_teardown| Boolean (true/false) | Whether to process job completion (teardown) on current thread without creating new task. The default value is true. | This is for development and may be deleted in the future. |
|dev_inplace_dag_schedule| Boolean (true/false) | Whether to process state management by plan scheduler (dag controller) on current thread without creating new task. The default value is true. | This is for development and may be deleted in the future. |
|enable_join_scan| Boolean (true/false) | Whether to enable `join_scan`, an operator that scans and searches for candidates using a portion (prefix) of the data in an index-join process, when the data for the whole key columns are not available. Effective only if `enable_index_join=true`. The default value is true. | This is for development and may be deleted in the future. |
| commit_response | String | Specifies the method used to split key range used by RTX parallel scan. Choose one of the following `simple`, `uniform`, or `sampling`. Valid only if `dev_rtx_parallel_scan=true`. Default is `simple` | This is for development and may be deleted in the future. |

## ipc_endpoint section

Expand Down
3 changes: 1 addition & 2 deletions docs/config_parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ parameter=value
|dev_inplace_teardown| ブール(true/false) | ジョブの終了処理(teardown)を現在のスレッドで行いタスクの作成をバイパスするか。デフォルトはtrue | 開発用のため将来的に削除/変更される可能性あり|
|dev_inplace_dag_schedule| ブール(true/false) | プランスケジューラ(dag controller)の状態遷移を現在のスレッドで行いタスクの作成をバイパスするか。デフォルトはtrue | 開発用のため将来的に削除/変更される可能性あり|
|enable_join_scan| ブール(true/false) | インデックスを用いた結合処理において、全キー列のデータが利用可能でない場合に、その一部(プレフィックス)を利用して候補をスキャンして探索する演算子`join_scan` を使用可能にするか。`enable_index_join=true` の場合のみ有効。デフォルトはtrue | 開発用のため将来的に削除/変更される可能性あり|

enable_join_scan
|dev_rtx_key_distribution| 文字列 | RTXのparallel scanにおいて、キー範囲を分割する手法を指定。次のいずれかから選択 (`simple`, `uniform`, `sampling`) 。 `dev_rtx_parallel_scan=true` の場合のみ有効。デフォルトはsimple|開発用のため将来的に削除/変更される可能性あり|

## ipc_endpointセクション

Expand Down

0 comments on commit d84f83e

Please sign in to comment.