Skip to content

Commit d494760

Browse files
committed
Fix the line about parallelism
1 parent 5e0099c commit d494760

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/learn/pages/services-and-indexes/services/query-service.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ The Execution Engine then begins executing the plan.
4343
It performs Scan operations on the relevant index, using either the Index Service or the Search Service.
4444
Next, it performs Fetch operations to get the actual data from the Data Service, and then uses this data for Join operations.
4545

46-
The Query Service processes the data further by applying Filter, Aggregate, Project, and Sort operations.
47-
These operations often run in parallel, as represented by the vertically aligned groups of right-pointing arrows.
48-
Finally, it executes Offset and Limit operations to set the result size and starting point, and then streams the results back to the client.
46+
The Query Service processes the data further by applying Filter, Aggregate, Project, and Sort operations.
47+
These operations can run in parallel; in the diagram, small boxes within an operation block represent this parallel execution.
48+
Finally, the service executes Offset and Limit operations to set the result size and starting point, and then streams the results back to the client.
4949

5050
For more information about each of these operations, see xref:n1ql:n1ql-language-reference/selectintro.adoc#query-execution-phases[Query Phases].
5151

0 commit comments

Comments
 (0)