Skip to content

Commit 043a560

Browse files
committed
Fix remaining issues with breadcrumbs
1 parent c69d21e commit 043a560

File tree

12 files changed

+155
-72
lines changed

12 files changed

+155
-72
lines changed

docs/en/cloud/bestpractices/index.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ hide_title: true
99

1010
This section provides six best practices you will want to follow to get the most out of ClickHouse Cloud.
1111

12-
| Best Practice |
13-
|------------------------------------------------------------------------------------------------------------|
14-
| [Use Bulk Inserts](/docs/en/cloud/bestpractices/bulk-inserts) |
15-
| [Asynchronous Inserts](/docs/en/cloud/bestpractices/asynchronous-inserts) |
16-
| [Avoid Mutations](/docs/en/cloud/bestpractices/avoid-mutations) |
17-
| [Avoid Nullable Columns](/docs/en/cloud/bestpractices/avoid-nullable-columns) |
18-
| [Avoid Optimize Final](/docs/en/cloud/bestpractices/avoid-optimize-final) |
19-
| [Choose a Low Cardinality Partitioning Key](/docs/en/cloud/bestpractices/low-cardinality-partitioning-key) |
12+
| Page | Description |
13+
|----------------------------------------------------------|----------------------------------------------------------------------------|
14+
| [Use Bulk Inserts](/docs/en/cloud/bestpractices/bulk-inserts) | Learn why you should ingest data in bulk in ClickHouse |
15+
| [Asynchronous Inserts](/docs/en/cloud/bestpractices/asynchronous-inserts) | Learn how to asynchronously insert data if bulk inserts are not an option. |
16+
| [Avoid Mutations](/docs/en/cloud/bestpractices/avoid-mutations) | Learn why you should avoid mutations which trigger rewrites. |
17+
| [Avoid Nullable Columns](/docs/en/cloud/bestpractices/avoid-nullable-columns) | Learn why you should ideally avoid Nullable columns |
18+
| [Avoid Optimize Final](/docs/en/cloud/bestpractices/avoid-optimize-final) | Learn why you should avoid `OPTIMIZE TABLE ... FINAL` |
19+
| [Choose a Low Cardinality Partitioning Key](/docs/en/cloud/bestpractices/low-cardinality-partitioning-key) | Learn how to choose a low cardinality partitioning key. |
20+
| [Usage Limits](/docs/en/cloud/bestpractices/usage-limits)| Explore the limits of ClickHouse. |

docs/en/cloud/get-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
slug: en/cloud/get-started
2+
slug: /en/cloud/get-started
33
title: Get Started
44
description: Get Started Table Of Contents
55
keywords: [Cloud Quick Start, SQL Console, Query Insights, Query API Endpoints, Dashboards, Cloud Support]

docs/en/cloud/manage/api/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
title: Cloud API
3-
slug: en/cloud/manage/api
3+
slug: /en/cloud/manage/cloud-api
44
---
55

6-
| Page | Description |
7-
|-------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
8-
| [Overview](/docs/en/cloud/manage/api/api-overview) | Provides an overview of rate limits, Terraform Provider, Swagger (OpenAPI) Endpoint and UI and available support. |
9-
| [Managing API Keys](/docs/en/cloud/manage/openapi)| Learn more about Cloud's API utilizing OpenAPI that allows you to programmatically manage your account and aspects of your services. |
10-
| [API Reference](/docs/en/cloud/manage/api) | API reference documentation. |
6+
This section contains reference documentation for Cloud API and contains the following pages:
7+
8+
| Page | Description |
9+
|---------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------|
10+
| [Overview](/docs/en/cloud/manage/api/api-overview)| Provides an overview of rate limits, Terraform Provider, Swagger (OpenAPI) Endpoint and UI and available support. |
11+
| [Managing API Keys](/docs/en/cloud/manage/openapi) | Learn more about Cloud's API utilizing OpenAPI that allows you to programmatically manage your account and aspects of your services. |
12+
| [API Reference](/docs/en/cloud/manage/api) | API reference documentation. |
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
sidebar_label: PrivateEndpointConfig
3+
title: PrivateEndpointConfig
4+
---
5+
6+
## Get private endpoint configuration for region within cloud provider for an organization
7+
8+
Information required to set up a private endpoint
9+
10+
| Method | Path |
11+
| :----- | :--- |
12+
| GET | `/v1/organizations/{organizationId}/privateEndpointConfig` |
13+
14+
### Request
15+
16+
#### Path Params
17+
18+
| Name | Type | Description |
19+
| :--- | :--- | :---------- |
20+
| organizationId | uuid | ID of the requested organization. |
21+
| Cloud provider identifier | string | Cloud provider identifier. One of aws, gcp, or azure. |
22+
| Cloud provider region | string | Region identifier within specific cloud providers. |
23+
24+
25+
### Response
26+
27+
#### Response Schema
28+
29+
| Name | Type | Description |
30+
| :--- | :--- | :---------- |
31+
| endpointServiceId | string | Unique identifier of the interface endpoint you created in your VPC with the AWS(Service Name) or GCP(Target Service) resource |
32+
33+
#### Sample response
34+
35+
```
36+
{
37+
"endpointServiceId": "string"
38+
}
39+
```
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
sidebar_label: Prometheus
3+
title: Prometheus
4+
---
5+
6+
## Get organization details
7+
8+
Returns details of a single organization. In order to get the details, the auth key must belong to the organization.
9+
10+
| Method | Path |
11+
| :----- | :--- |
12+
| GET | `/v1/organizations/{organizationId}/prometheus` |
13+
14+
### Request
15+
16+
#### Path Params
17+
18+
| Name | Type | Description |
19+
| :--- | :--- | :---------- |
20+
| organizationId | uuid | ID of the requested organization. |
21+

docs/en/cloud/manage/billing/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ description: Table of contents page for billing.
55
keywords: [billing, payment thresholds, trouble shooting, marketplace]
66
---
77

8-
| Page |
9-
|----------------------------------------------------------------------------------|
10-
| [Overview](/docs/en/cloud/marketplace/marketplace-billing) |
11-
| [Payment Thresholds](/docs/en/cloud/billing/payment-thresholds) |
12-
| [Troubleshooting Billing Issues](/docs/en/manage/troubleshooting-billing-issues) |
13-
| [Marketplace](/docs/en/cloud/manage/) |
8+
This section of the documentation covers topics related to billing, and contains the following pages:
9+
10+
| Page | Description |
11+
|---------------------------------------|-----------------------------------------------------------------------|
12+
| [Overview](/docs/en/cloud/marketplace/marketplace-billing) | Overview and FAQ page for marketplace billing. |
13+
| [Payment Thresholds](/docs/en/cloud/billing/payment-thresholds) | Learn more about how payment threshholds work and how to adjust them. |
14+
| [Troubleshooting Billing Issues](/docs/en/manage/troubleshooting-billing-issues) | Troubleshoot common billing issues. |
15+
| [Marketplace](/docs/en/cloud/manage/) | Landing page for further marketplace related topics. |

docs/en/guides/best-practices/index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ description: Overview page of Performance and Optimizations
66

77
# Performance and Optimizations
88

9-
This section covers the following topics:
9+
This section contains tips and best practices for improving performance with ClickHouse.
10+
We recommend users read [Core Concepts](/docs/en/parts) as a precursor to this section,
11+
which covers the main concepts required to improve performance,
12+
especially [Primary Indices](/docs/en/optimize/sparse-primary-indexes).
1013

1114
| Topic | Description |
1215
|------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
slug: /en/integrations/language-clients
3+
title: Language Clients
4+
description: Table of contents page for Language Clients.
5+
keywords: [Language Clients, C++, Go, Javascript, Java, Python, Rust]
6+
---
7+
8+
In this section of the documentation, you can learn more about the many language client integrations
9+
that ClickHouse offers.
10+
11+
| Page | Description |
12+
|-------------------------------------------------------------------------|----------------------------------------------------------------------------------|
13+
| [C++](/docs/en/interfaces/cpp) | C++ Client Library and userver Asynchronous Framework |
14+
| [Go](/docs/en/integrations/go) | Learn how to connect your Go projects to ClickHouse. |
15+
| [Javascript](/docs/en/integrations/javascript) | Learn how to connect your JS projects to ClickHouse with the official JS client. |
16+
| [Java](/docs/en/integrations/java) | Learn more about several integrations for Java and ClickHouse. |
17+
| [Python](/docs/en/integrations/python) | Learn how to connect your Python projects to ClickHouse. |
18+
| [Rust](/docs/en/integrations/rust) | Learn how to connect your Rust projects to ClickHouse. |
19+
| [Third-party clients](/docs/en/interfaces/third-party/client-libraries) | Learn more about client libraries from third party developers. |

docs/en/optimize/index.md

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

docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2389,6 +2389,10 @@ const config = {
23892389
from: '/en/deletes',
23902390
to: '/en/deletes/overview'
23912391
},
2392+
{
2393+
from: '/docs/en/optimize',
2394+
to: '/docs/en/operations/overview'
2395+
}
23922396
],
23932397
},
23942398
],

0 commit comments

Comments
 (0)