Skip to content

Commit c1491c5

Browse files
committed
Merge branch 'ppv2_proofread' of github.com:ClickHouse/clickhouse-docs-private into ppv2_proofread
2 parents 865cf7d + 4d7824f commit c1491c5

File tree

11 files changed

+126
-9
lines changed

11 files changed

+126
-9
lines changed
-47 KB
Loading
351 KB
Loading
-35.7 KB
Loading
410 KB
Loading
33.4 KB
Loading
537 KB
Loading
112 KB
Loading

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

Lines changed: 49 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,18 @@ By default, the scale tier will create 3 replicas each with 4 VCPUs and 16 GiB R
5454
Users can customize the service resources if required, specifying a minimum and maximum size for replicas to scale between. When ready, select `Create service`.
5555

5656
<div class="eighty-percent">
57-
![New ClickHouse Service](@site/docs/en/_snippets/images/scaling_limits.png)
57+
[Scaling Limits](@site/docs/en/_snippets/images/scaling_limits.png)
5858
</div>
5959
<br/>
6060

6161
Congratulations! Your ClickHouse Cloud service is up and running and onboarding is complete. Keep reading for details on how to start ingesting and querying your data.
6262

6363
## 2. Connect to ClickHouse
64+
There are 2 ways to connect to ClickHouse:
65+
- Connect using our web-based SQL console
66+
- Connect with your app
67+
68+
### Connect using SQL console
6469

6570
For getting started quickly, ClickHouse provides a web-based SQL console to which you will be redirected on completing onboarding.
6671

@@ -87,7 +92,43 @@ You should see 4 databases in the list, plus any that you may have added.
8792

8893
That's it - you are ready to start using your new ClickHouse service!
8994

90-
## 3. Create a database and table
95+
### Connect with your app
96+
97+
Press the connect button from the navigation menu. A modal will open offering the credentials to your service and offering you a set of instructions on how to connect with your interface or language clients.
98+
99+
<div class="eighty-percent">
100+
![Service Connect](@site/docs/en/_snippets/images/service_connect.png)
101+
</div>
102+
<br/>
103+
104+
If you can’t see your language client, you may want to check our list of [Integrations](https://clickhouse.com/docs/en/integrations).
105+
106+
## 3. Add data
107+
108+
ClickHouse is better with data! There are multiple ways to add data and most of them are available on the Data Sources page, which can be accessed in the navigation menu.
109+
110+
<div class="eighty-percent">
111+
![Data sources](@site/docs/en/_snippets/images/data_sources.png)
112+
</div>
113+
<br/>
114+
115+
You can upload data using the following methods:
116+
- Setup a ClickPipe to start ingesting data from data sources like S3, Postgres, Kafka, GCS
117+
- Use the SQL console
118+
- Use the ClickHouse client
119+
- Upload a file - accepted formats include JSON, CSV and TSV
120+
- Upload data from file URL
121+
122+
### ClickPipes
123+
124+
[ClickPipes](http://clickhouse.com/docs/en/integrations/clickpipes) is a managed integration platform that makes ingesting data from a diverse set of sources as simple as clicking a few buttons. Designed for the most demanding workloads, ClickPipes's robust and scalable architecture ensures consistent performance and reliability. ClickPipes can be used for long-term streaming needs or one-time data loading job.
125+
126+
<div class="eighty-percent">
127+
![Select data source](@site/docs/en/_snippets/images/select_data_source.png)
128+
</div>
129+
<br/>
130+
131+
### Add data using the SQL Console
91132

92133
Like most database management systems, ClickHouse logically groups tables into **databases**. Use the [`CREATE DATABASE`](../../sql-reference/statements/create/database.md) command to create a new database in ClickHouse:
93134

@@ -125,7 +166,7 @@ Table engines determine:
125166
There are many table engines to choose from, but for a simple table on a single-node ClickHouse server, [`MergeTree`](/en/engines/table-engines/mergetree-family/mergetree.md) is your likely choice.
126167
:::
127168

128-
### 3a. A Brief Intro to Primary Keys
169+
#### A Brief Intro to Primary Keys
129170

130171
Before you go any further, it is important to understand how primary keys work in ClickHouse (the implementation
131172
of primary keys might seem unexpected!):
@@ -147,6 +188,9 @@ For a deep dive into core ClickHouse concepts, see ["Core Concepts"](../../manag
147188

148189
## 4. Insert Data
149190

191+
#### Insert data into your table
192+
193+
150194
You can use the familiar [`INSERT INTO TABLE`](../../sql-reference/statements/insert-into.md) command with ClickHouse, but it is important to understand that each insert into a [`MergeTree`](/en/engines/table-engines/mergetree-family/mergetree.md) table causes a **part** to be created in storage.
151195

152196
:::tip ClickHouse best practice
@@ -176,9 +220,7 @@ Let's verify it worked:
176220
SELECT * FROM helloworld.my_first_table
177221
```
178222

179-
You should see the four rows of data that were inserted:
180-
181-
## 5. Using the ClickHouse Client
223+
### Add data using the ClickHouse Client
182224

183225
You can also connect to your ClickHouse Cloud service using a command-line tool named [**clickhouse client**](/docs/en/interfaces/cli). Click `Connect` on the left menu to access these details. From the dialog select `Native` from the drop-down:
184226

@@ -255,7 +297,7 @@ Query id: 3604df1c-acfd-4117-9c56-f86c69721121
255297
exit
256298
```
257299

258-
## 6. Insert a CSV file
300+
### Upload a File
259301

260302
A common task when getting started with a database is to insert some data that you already have in files. We have some
261303
sample data online that you can insert that represents clickstream data - it includes a user ID, a URL that was visited, and

docs/en/cloud/manage/backups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Start time and frequency are mutually exclusive. Start time takes precedence.
6363
:::
6464

6565
:::note
66-
Changing the backup schedule can cause higher monthly charges for storage as some of the backups might not be covered in the default backups for the service. See [Understanding backup cost](#understanding-backup-cost) section below.
66+
Changing the backup schedule can cause higher monthly charges for storage as some of the backups might not be covered in the default backups for the service. See ["Understanding backup cost"](#understanding-backup-cost) section below.
6767
:::
6868

6969
## Backup status list

docs/en/cloud/manage/jan2025_faq/summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ We are introducing new features to optimize the sizing and cost-efficiency of Cl
1515

1616
We are adding a new Enterprise tier to serve the needs of the most demanding customers and workloads, with focus on industry-specific security and compliance features, even more controls over underlying hardware and upgrades, and advanced disaster recovery features.
1717

18-
You can read about these and other functional changes in this [blog][LINK - TO ADD].
18+
You can read about these and other functional changes in this [blog][https://clickhouse.com/blog/evolution-of-clickhouse-cloud-new-features-superior-performance-tailored-offerings].
1919

2020
## What action is required?
2121

0 commit comments

Comments
 (0)