Skip to content

Commit c2c8742

Browse files
committed
Merge branch 'main' of https://github.com/ClickHouse/clickhouse-docs into lang_header
2 parents ae1f178 + 7646b4c commit c2c8742

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+177
-1063
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,28 +171,28 @@ Have you noticed a typo or found some wonky formatting? For small contributions
171171
172172
1. Each page in Clickhouse.com/docs has an **Edit this page** link at the top:
173173
174-
![The ClickHouse Docs website with the edit button highlighted.](./images/readme-edit-this-page.png)
174+
![The ClickHouse Docs website with the edit button highlighted.](./static/images/contribute/readme-edit-this-page.png)
175175
176176
Click this button to edit this page in GitHub.
177177
178178
1. Once you're in GitHub, click the pencil icon to edit this page:
179179

180-
![README Pencil Icon](./images/readme-pencil-icon.png)
180+
![README Pencil Icon](./static/images/contribute/readme-pencil-icon.png)
181181

182182
1. GitHub will _fork_ the repository for you. This creates a copy of the `clickhouse-docs` repository on your personal GitHub account.
183183
1. Make your changes in the textbox. Once you're done, click **Commit changes**:
184184
185-
![README Commit Changes](./images/readme-commit-changes.png)
185+
![README Commit Changes](./static/images/contribute/readme-commit-changes.png)
186186
187187
1. In the **Propose changes** popup, enter a descriptive title to explain the changes you just made. Keep this title to 10 words or less. If your changes are fairly complex and need further explanation, enter your comments into the **Extended description** field.
188188
1. Make sure **Create a new branch** is selected, and click **Propose changes**:
189189
190-
![README Propose Changes](./images/readme-propose-changes.png)
190+
![README Propose Changes](./static/images/contribute/readme-propose-changes.png)
191191
192192
1. A new page should open with a new pull request. Double-check that the title and description are accurate.
193193
1. If you've spoken to someone on the docs team about your changes, tag them into the **Reviewers** section:
194194

195-
![README Create Pull Request](./images/readme-create-pull-request.png)
195+
![README Create Pull Request](./static/images/contribute/readme-create-pull-request.png)
196196

197197
If you haven't mentioned your changes to anyone yet, leave the **Reviewers** section blank.
198198
File renamed without changes.

docs/cloud/bestpractices/usagelimits.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,20 @@ While ClickHouse is known for its speed and reliability, optimal performance is
1111
If you've run up against one of these guardrails, it's possible that you are implementing your use case in an unoptimized way. Contact our support team and we will gladly help you refine your use case to avoid exceeding the guardrails or look together at how we can increase them in a controlled manner.
1212
:::
1313

14-
- **Databases**: 1000
15-
- **Tables**: 5000
16-
- **Columns**: ∼1000 (wide format is preferred to compact)
17-
- **Partitions**: 50k
18-
- **Parts**: 100k across the entire instance
19-
- **Part size**: 150gb
20-
- **Services per organization**: 20 (soft)
21-
- **Services per warehouse**: 5 (soft)
22-
- **Low cardinality**: 10k or less
23-
- **Primary keys in a table**: 4-5 that sufficiently filter down the data
24-
- **Query concurrency**: 1000
25-
- **Batch ingest**: anything > 1M will be split by the system in 1M row blocks
14+
| Dimension | Limit |
15+
|-----------|-------|
16+
|**Databases**| 1000|
17+
|**Tables**| 5000|
18+
|**Columns**| ∼1000 (wide format is preferred to compact)|
19+
|**Partitions**| 50k|
20+
|**Parts**| 100k across the entire instance|
21+
|**Part size**| 150gb|
22+
|**Services per organization**| 20 (soft)|
23+
|**Services per warehouse**| 5 (soft)|
24+
|**Low cardinality**| 10k or less|
25+
|**Primary keys in a table**| 4-5 that sufficiently filter down the data|
26+
|**Query concurrency**| 1000|
27+
|**Batch ingest**| anything > 1M will be split by the system in 1M row blocks|
2628

2729
:::note
2830
For Single Replica Services, the maximum number of databases is restricted to 100, and the maximum number of tables is restricted to 500. In addition, storage for Basic Tier Services is limited to 1 TB.

docs/guides/best-practices/partitioningkey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ title: 'Choose a Low Cardinality Partitioning Key'
55
description: 'Use a low cardinality partitioning key or avoid using any partitioning key for your table.'
66
---
77

8-
import Content from '@site/docs/best-practices/partionning_keys.md';
8+
import Content from '@site/docs/best-practices/partitioning_keys.mdx';
99

1010
<Content />

docs/guides/best-practices/sparse-primary-indexes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ A compromise between fastest retrieval and optimal data compression is to use a
14941494

14951495
### A concrete example {#a-concrete-example}
14961496

1497-
One concrete example is a the plaintext paste service https://pastila.nl that Alexey Milovidov developed and [blogged about](https://clickhouse.com/blog/building-a-paste-service-with-clickhouse/).
1497+
One concrete example is a the plaintext paste service [https://pastila.nl](https://pastila.nl) that Alexey Milovidov developed and [blogged about](https://clickhouse.com/blog/building-a-paste-service-with-clickhouse/).
14981498

14991499
On every change to the text-area, the data is saved automatically into a ClickHouse table row (one row per change).
15001500

docs/integrations/data-ingestion/clickpipes/postgres/add_table.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@ title: 'Adding specific tables to a ClickPipe'
33
description: 'Describes the steps need to add specific tables to a ClickPipe.'
44
sidebar_label: 'Add Table'
55
slug: /integrations/clickpipes/postgres/add_table
6+
show_title: false
67
---
78

89
import Image from '@theme/IdealImage';
910
import add_table from '@site/static/images/integrations/data-ingestion/clickpipes/postgres/add_table.png'
1011

12+
# Adding specific tables to a ClickPipe
13+
1114
There are scenarios where it would be useful to add specific tables to a pipe. This becomes a common necessity as your transactional or analytical workload scales.
1215

13-
## Steps to add specific tables {#add-tables-steps}
16+
## Steps to add specific tables to a ClickPipe {#add-tables-steps}
17+
1418
This can be done by the following steps:
1519
1. [Pause](./pause_and_resume.md) the pipe.
1620
2. Click on Edit Table settings.

docs/integrations/data-ingestion/clickpipes/secure-kinesis.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,16 @@ IAM policy (Please replace `{STREAM_NAME}` with your Kinesis stream name):
8585
],
8686
"Effect": "Allow"
8787
},
88+
{
89+
"Action": [
90+
"kinesis:SubscribeToShard",
91+
"kinesis:DescribeStreamConsumer"
92+
],
93+
"Resource": [
94+
"arn:aws:kinesis:region:account-id:stream/{STREAM_NAME}/*"
95+
],
96+
"Effect": "Allow"
97+
},
8898
{
8999
"Action": [
90100
"kinesis:ListStreams"

docusaurus.config.en.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ const config = {
6060
// url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'https://bookish-disco-5997zvo.pages.github.io',
6161
baseUrl: "/docs/",
6262
baseUrlIssueBanner: true,
63-
onBrokenLinks: "warn",
63+
onBrokenLinks: "throw",
6464
onBrokenMarkdownLinks: "warn",
6565
onDuplicateRoutes: "throw",
66-
onBrokenAnchors: "warn",
66+
onBrokenAnchors: "throw",
6767
favicon: "img/docs_favicon.ico",
6868
organizationName: "ClickHouse",
6969
trailingSlash: false,

images/ci-build.png

-10.4 KB
Binary file not shown.

images/knowledgebase/are_materialized_views_inserted_asynchronously.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)