Skip to content

Commit f71bbdf

Browse files
committed
reorg all integrations
1 parent 2974a77 commit f71bbdf

File tree

8 files changed

+216
-165
lines changed

8 files changed

+216
-165
lines changed

docs/en/get-started/cloud-quick-start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ You can also connect to your ClickHouse Cloud service using a command-line tool
173173

174174
![clickhouse client connection details](@site/docs/en/images/quickstart/CloudClickhouseClientDetails.png)
175175

176-
1. Install [ClickHouse](/docs/en/integrations/clickhouse-client-local.md).
176+
1. Install [ClickHouse](/docs/en/integrations/sql-clients/sql-console).
177177

178178
2. Run the command, substituting your hostname, username, and password:
179179
```bash

docs/en/guides/inserting-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Full details on configuring asynchronous inserts can be found [here](/en/optimiz
118118
ClickHouse has clients in the most popular programming languages.
119119
These are optimized to ensure that inserts are performed correctly and natively support asynchronous inserts either directly as in e.g. the [Go client](/en/integrations/go#async-insert), or indirectly when enabled in the query, user or connection level settings.
120120

121-
See [Clients and Drivers](../../en/integrations/sql-clients/clickhouse-client-local) for a full list of available ClickHouse clients and drivers.
121+
See [Clients and Drivers](/docs/en/interfaces/cli) for a full list of available ClickHouse clients and drivers.
122122

123123
### Prefer the Native format
124124

docs/en/integrations/data-ingestion/insert-local-files.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ cat comments.tsv | clickhouse-client \
110110
"
111111
```
112112

113-
Visit the [docs page on `clickhouse-client`](/docs/en/integrations/sql-clients/clickhouse-client-local) for details on how to install `clickhouse-client` on your local operating system.
113+
Visit the [docs page on `clickhouse-client`](/docs/en/interfaces/cli) for details on how to install `clickhouse-client` on your local operating system.
114114

115115
## Related Content
116116

docs/en/integrations/language-clients/java/jdbc-driver.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ import CodeBlock from '@theme/CodeBlock';
1313

1414
# JDBC Driver
1515

16-
`clickhouse-jdbc` implements the standard JDBC interface. Being built on top of [clickhouse-client](/docs/en/integrations/clickhouse-client-local.md), it provides additional features like custom type mapping, transaction support, and standard synchronous `UPDATE` and `DELETE` statements, etc., so that it can be easily used with legacy applications and tools.
16+
`clickhouse-jdbc` implements the standard JDBC interface. Being built on top of [clickhouse-client](/docs/en/integrations/sql-clients/sql-console), it provides additional features like custom type mapping, transaction support, and standard synchronous `UPDATE` and `DELETE` statements, etc., so that it can be easily used with legacy applications and tools.
1717

1818
:::note
1919
Latest JDBC (0.7.1) version uses Client-V1
2020
:::
2121

22-
`clickhouse-jdbc` API is synchronous, and generally, it has more overheads(e.g., SQL parsing and type mapping/conversion, etc.). Consider [clickhouse-client](/docs/en/integrations/clickhouse-client-local.md) when performance is critical or if you prefer a more direct way to access ClickHouse.
22+
`clickhouse-jdbc` API is synchronous, and generally, it has more overheads(e.g., SQL parsing and type mapping/conversion, etc.). Consider [clickhouse-client](/docs/en/integrations/sql-clients/sql-console) when performance is critical or if you prefer a more direct way to access ClickHouse.
2323

2424
## Environment requirements
2525

docs/en/migrations/bigquery/loading-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ This approach has a number of advantages:
6262

6363
## 2. Importing data into ClickHouse from GCS
6464

65-
Once the export is complete, we can import this data into a ClickHouse table. You can use the [ClickHouse SQL console](/docs/en/integrations/sql-clients/sql-console) or [`clickhouse-client`](/docs/en/integrations/sql-clients/cli) to execute the commands below.
65+
Once the export is complete, we can import this data into a ClickHouse table. You can use the [ClickHouse SQL console](/docs/en/integrations/sql-clients/sql-console) or [`clickhouse-client`](/docs/en/interfaces/cli) to execute the commands below.
6666

6767
You must first [create your table](/docs/en/sql-reference/statements/create/table) in ClickHouse:
6868

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const ConnectToClickHouse = ({ children, color}) => {
8585
</div>
8686
<div>
8787
<div className='home-page-button-container'>
88-
<HomePageOptionButton svgIcon={<IconTerminal iconWidth='28px' />} link='/docs/en/integrations/sql-clients/clickhouse-client-local'>ClickHouse CLI</HomePageOptionButton>
88+
<HomePageOptionButton svgIcon={<IconTerminal iconWidth='28px' />} link='/docs/en/interfaces/cli'>ClickHouse CLI</HomePageOptionButton>
8989
<HomePageOptionButton svgIcon={<IconSQLConsole iconWidth='28px' />} link='/docs/en/get-started/sql-console'>Cloud SQL Console</HomePageOptionButton>
9090
<HomePageOptionButton icon='/docs/images/logo-nodejs.svg' link='/docs/en/integrations/javascript'>Node.js</HomePageOptionButton>
9191
</div>

0 commit comments

Comments
 (0)