forked from ClickHouse/clickhouse-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add landing pages to additional pages
- Loading branch information
Showing
12 changed files
with
109 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
sidebar_label: Overview | ||
sidebar_position: 1 | ||
keywords: [clickhouse, migrate, migration, migrating, data] | ||
--- | ||
|
||
# Migrating Data into ClickHouse | ||
|
||
<div class='vimeo-container'> | ||
<iframe src="https://player.vimeo.com/video/753082620?h=eb566c8c08" | ||
width="640" | ||
height="360" | ||
frameborder="0" | ||
allow="autoplay; | ||
fullscreen; | ||
picture-in-picture" | ||
allowfullscreen> | ||
</iframe> | ||
</div> | ||
|
||
<br/> | ||
|
||
There are several options for migrating data into ClickHouse Cloud, depending on where your data resides now: | ||
|
||
- [Self-managed to Cloud](./clickhouse-to-cloud.md): use the `remoteSecure` function to transfer data | ||
- [Another DBMS](./clickhouse-local-etl.md): use the [clickhouse-local] ETL tool along with the appropriate ClickHouse table function for your current DBMS | ||
- [Anywhere!](./etl-tool-to-clickhouse.md): use one of the many popular ETL/ELT tools that connect to all kinds of different data sources | ||
- [Object Storage](./object-storage-to-clickhouse.md): easily insert data from S3 into ClickHouse | ||
|
||
In the example [Migrate from Redshift](/docs/en/integrations/data-ingestion/redshift/index.md), we present three different ways to migrate data to ClickHouse. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
slug: /en/concepts | ||
title: Core Concepts | ||
description: Learn Core Concepts of how ClickHouse works | ||
keywords: [concepts, part, partition, primary index] | ||
--- | ||
|
||
In this section of the documentation, | ||
you will learn some of the core concepts of how ClickHouse works. | ||
|
||
| Page | Description | | ||
|-------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| [Table parts](/docs/en/parts) | Learn what table parts are in ClickHouse. | | ||
| [Table partitions](/docs/en/partitions) | Learn what table partitions are and what they are used for. | | ||
| [Primary indexes](/docs/en/optimize/sparse-primary-indexes) | A deep dive into ClickHouse indexing including how it differs from other DB systems, how ClickHouse builds and uses a table's spare primary index and what some of the best practices are for indexing in ClickHouse. | |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
slug: /en/managing-data/deleting-data/overview | ||
title: Deleting Data | ||
description: How to delete data in ClickHouse Table Of Contents | ||
keywords: [delete, truncate, drop, lightweight delete] | ||
--- | ||
|
||
In this section of the documentation, | ||
we will explore how to delete data in ClickHouse. | ||
|
||
| Page | Description | | ||
|---------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------| | ||
| [Overview](/docs/en/deletes/overview) | Provides an overview of the various ways to delete data in ClickHouse. | | ||
| [Lightweight Deletes](/docs/en/guides/developer/lightweight-delete) | Learn how to use the Lightweight Delete to delete data. | | ||
| [Delete Mutations](/docs/en/managing-data/delete_mutations) | Learn about Delete Mutations. | | ||
| [Truncate Table](/docs/en/managing-data/truncate) | Learn about how to use Truncate, which allows the data in a table or database to be removed, while preserving its existence. | | ||
| [Drop Partitions](/docs/en/managing-data/drop_partition) | Learn about Dropping Partitions in ClickHouse. | | ||
|
4 changes: 2 additions & 2 deletions
4
docs/en/managing-data/deletes.md → ...n/managing-data/deleting-data/overview.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
slug: /en/updating-data | ||
title: Updating Data | ||
description: Updating Data Table Of Contents | ||
keywords: [update, updating data] | ||
--- | ||
|
||
In this section of the documentation, you will learn how you can update your data. | ||
|
||
| Page | Description | | ||
|----------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| [Overview](/docs/en/updating-data/overview) | Provides an overview of the differences in updating data between ClickHouse and OLTP databases, as well as the various methods available to do so in ClickHouse. | | ||
| [Update Mutations](/docs/en/managing-data/update_mutations) | Learn how to update using Update Mutations. | | ||
| [Lightweight Updates](/docs/en/guides/developer/lightweight-update) | Learn how to update using Lightweight Updates. | | ||
| [ReplacingMergeTree](/docs/en/guides/replacing-merge-tree) | Learn how to update using the ReplacingMergeTree. | |
4 changes: 2 additions & 2 deletions
4
docs/en/managing-data/updates-index.md → ...n/managing-data/updating-data/overview.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters