Skip to content

Commit 5247823

Browse files
authored
Add parallel description (#8585)
1 parent 68c8f3f commit 5247823

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ydb/docs/en/core/yql/query_plans.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Query execution stage.
1111
**UI representation**:
1212
![stage](_assets/stage.png)
1313

14-
A stage can contatin the following operations:
14+
A stage can contain the following operations:
1515

1616
#### TableFullScan
1717
Full table scan. This operation's resource consumption is proportional to the table size, so it should be avoided whenever possible.
@@ -22,6 +22,7 @@ Table | table name
2222
ReadColumns | read columns list
2323
ReadLimit | read rows limit
2424
Reverse | flag indicating the order in which the rows will be read, by default the order is forward (ascending), but if the flag is set to `true`, the reading order will be reversed (descending).
25+
Parallel | flag indicating that rows will be read from shards in parallel
2526

2627
#### TableRangeScan
2728
Reading a table by a specific primary key range.
@@ -33,6 +34,7 @@ ReadColumns | read columns list
3334
ReadRange | key range
3435
ReadLimit | read rows limit
3536
Reverse | flag indicating the order in which the rows will be read, by default the order is forward (ascending), but if the flag is set to `true`, the reading order will be reversed (descending).
37+
Parallel | flag indicating that rows will be read from shards in parallel
3638

3739
#### TablePointLookup
3840
Reading a table by specific primary key values. Note that for this operation, all components of the primary key should be specified. Reading by a key prefix is performed as a `TableRangeScan` operation.

ydb/docs/ru/core/yql/query_plans.md

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Table | имя таблицы
2323
ReadColumns | список читаемых колонок
2424
ReadLimit | лимит на число прочитанных строк
2525
Reverse | флаг, указывающий на порядок, в котором будут прочитаны строки, по умолчанию порядок прямой (от меньшего к большему), но в случае выставления флага в `true` порядок чтения будет обратным
26+
Parallel | флаг, указывающий на то что чтение строк будет происходить паралленьно по шардам
2627

2728
#### TableRangeScan
2829
Чтение строк таблицы по определённому диапазону значений первичного ключа.
@@ -34,6 +35,7 @@ ReadColumns | список читаемых колонок
3435
ReadRange | диапазон ключей, по которому выполняется чтение
3536
ReadLimit | лимит на число прочитанных строк
3637
Reverse | флаг, указывающий на порядок, в котором будут прочитаны строки, по умолчанию порядок прямой (от меньшего к большему), но в случае выставления флага в `true` порядок чтения будет обратным
38+
Parallel | флаг, указывающий на то что чтение строк будет происходить паралленьно по шардам
3739

3840
#### TablePointLookup
3941
Чтение строк таблицы по конкретным значениям первичного ключа. Обратите внимание, что для этой операции необходимо указать все компоненты первичного ключа, чтение по префиксу ключа выполняется как `TableRangeScan`.

0 commit comments

Comments
 (0)