Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshiakiNishimura committed Feb 21, 2025
1 parent e395341 commit 02255c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/config-parameters-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Target component
| dev_rtx_parallel_scan| Boolean (true/false) | Whether to enable parallel scan for RTX. The default value is false. | This is for development and may be deleted in the future. |
|dev_thousandths_ratio_check_local_first| Integer | This parameter defines whether the worker of the task scheduler gives priority to dequeue the local task queue or the sticky task queue. Specify the number of times (greater than or equal to 1 and less than 1000) to give priority to the local task queue out of 1000 dequeue executions. The default is 100. |This is for development and may be deleted in the future. |
|dev_direct_commit_callback| Boolean (true/false) | Whether commit processing thread in shirakami directly notifies client of commit result. Effective only when `commit_response` is either `ACCEPTED` or `AVAILABLE`. The default value is false. | This is for development and may be deleted in the future. |
|scan_default_parallel| Integer | Maximum Degree of Parallelism for Scan Tasks. The default is 4. | This value must be equal to or less than the value of default_partitions and max_result_set_writers. This is for development and may be deleted in the future. |
|scan_default_parallel| Integer | Maximum Degree of Parallelism for Scan Tasks. The default is 4. | The value must be equal to or less than max_result_set_writers. This is for development and may be deleted in the future. |
|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. |
Expand Down
2 changes: 1 addition & 1 deletion docs/config_parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ parameter=value
|dev_rtx_parallel_scan| ブール(true/false) | RTXの場合にparallel scanを有効にするか。デフォルトはfalse | 開発用のため将来的に削除/変更される可能性あり|
|dev_thousandths_ratio_check_local_first| 整数 | タスクスケジューラのワーカーがローカルタスクキューとstickyタスクキューのどちらを優先的にデキューするかを決めるパラメータ。デキューの実行1000回のうちローカルタスクキューを優先する回数(1以上1000未満)を指定する。デフォルトは100|開発用のため将来的に削除/変更される可能性あり|
|dev_direct_commit_callback| ブール(true/false) | shirakamiのコミット処理を行うスレッドが直接クラインアント通知までおこなうか。`commit_response``ACCEPTED` または `AVAILABLE` の場合のみ有効。デフォルトはfalse | 開発用のため将来的に削除/変更される可能性あり|
|scan_default_parallel| 整数 | スキャンタスクの最大並列実行数。デフォルトは4。|この値はdefault_partitions及びmax_result_set_writers 以下でなければならない。開発用のため将来的に削除/変更される可能性あり|
|scan_default_parallel| 整数 | スキャンタスクの最大並列実行数。デフォルトは4。|この値はmax_result_set_writers 以下でなければならない。開発用のため将来的に削除/変更される可能性あり|
|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 | 開発用のため将来的に削除/変更される可能性あり|
Expand Down

0 comments on commit 02255c6

Please sign in to comment.