Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

clickhouse: update info on querying across shards to replace view with table #2408

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/products/clickhouse/reference/limitations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
- Aiven for ClickHouse doesn't support Kafka Schema Registry, which allows to build stream processing pipelines with schemas.
- \-
* - Querying all shards at once
- If you have a sharded plan, you must use a Distributed view on top of your MergeTree table to query all the shards at the same time, and you should use it for inserts too.
- Use the ``Distributed`` view with sharded plans.
- If you have a sharded plan, you must use a distributed table on top of your MergeTree table to query all the shards at the same time, and you should use it for inserts too.
- Use a distributed table with sharded plans. Check :doc:`Query data across shards </docs/products/clickhouse/howto/use-shards-with-distributed-table>` for the instructions.

Check failure on line 48 in docs/products/clickhouse/reference/limitations.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/products/clickhouse/reference/limitations.rst#L48

[Aiven.common_replacements] Use 'ClickHouse' instead of 'clickhouse'.
Raw output
{"message": "[Aiven.common_replacements] Use 'ClickHouse' instead of 'clickhouse'.", "location": {"path": "docs/products/clickhouse/reference/limitations.rst", "range": {"start": {"line": 48, "column": 105}}}, "severity": "ERROR"}
* - ON CLUSTER queries
- Aiven for ClickHouse doesn't support ON CLUSTER queries because it actually runs each data definition query on all the servers of the cluster without using `ON CLUSTER`.
- Run queries without ``ON CLUSTER``.
Expand Down
Loading