Skip to content

Commit 2f990c6

Browse files
authored
Merge pull request #3989 from ClickHouse/nickitat-patch-1
Add projections to the list of unsupported features with parallel replicas
2 parents e6805d9 + df4e9f6 commit 2f990c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/deployment-guides/parallel-replicas.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ the label `comp-parallel-replicas`.
312312
| Complex queries | Currently parallel replica works fairly well for simple queries. Complexity layers like CTEs, subqueries, JOINs, non-flat query, etc. can have a negative impact on query performance. |
313313
| Small queries | If you are executing a query that does not process a lot of rows, executing it on multiple replicas might not yield a better performance time given that the network time for the coordination between replicas can lead to additional cycles in the query execution. You can limit these issues by using the setting: [`parallel_replicas_min_number_of_rows_per_replica`](/docs/operations/settings/settings#parallel_replicas_min_number_of_rows_per_replica). |
314314
| Parallel replicas are disabled with FINAL | |
315+
| Projections are not used together with Parallel replicas | |
315316
| High Cardinality data and complex aggregation | High cardinality aggregation that needs to send much data can significantly slow down your queries. |
316317
| Compatibility with the new analyzer | The new analyzer might significantly slow down or speed up query execution in specific scenarios. |
317318

@@ -504,4 +505,4 @@ SETTINGS allow_experimental_parallel_reading_from_replicas=2
504505
FORMAT TSV;
505506
```
506507

507-
<Image img={image_9} size="lg" alt="EXPLAIN with parallel_replica"/>
508+
<Image img={image_9} size="lg" alt="EXPLAIN with parallel_replica"/>

0 commit comments

Comments
 (0)