Skip to content

Commit

Permalink
move quick start overview
Browse files Browse the repository at this point in the history
Signed-off-by: DanRoscigno <[email protected]>
  • Loading branch information
DanRoscigno committed Sep 16, 2024
1 parent 34a923c commit 74c6b8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/_assets/commonMarkdown/loadMethodIntro.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ Each of these options has its own advantages, which are detailed in the followin

In most cases, we recommend that you use the INSERT+`FILES()` method, which is much easier to use.

However, the INSERT+`FILES()` method currently supports only the Parquet and ORC file formats. Therefore, if you need to load data of other file formats such as CSV, or perform data changes such as DELETE during data loading, you can resort to Broker Load.
However, the INSERT+`FILES()` method currently supports only the Parquet, ORC, and CSV file formats. Therefore, if you need to load data of other file formats such as JSON, or perform data changes such as DELETE during data loading, you can resort to Broker Load.

If you need to load a large number of data files with a significant data volume in total (for example, more than 100 GB or even 1 TB), we recommend that you use the Pipe method. Pipe can split the files based on their number or size, breaking down the load job into smaller, sequential tasks. This approach ensures that errors in one file do not impact the entire load job and minimizes the need for retries due to data errors.
3 changes: 3 additions & 0 deletions docs/en/_assets/commonMarkdown/quickstart-overview-tip.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Learn by doing

Try the [Quick Starts](../../quick_start/quick_start.mdx) to get an overview of using StarRocks with realistic scenarios.
2 changes: 2 additions & 0 deletions docs/en/introduction/Architecture.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
displayed_sidebar: docs
---
import QSOverview from '../_assets/commonMarkdown/quickstart-overview-tip.mdx'

# Architecture

Expand Down Expand Up @@ -79,3 +80,4 @@ Queries against hot data scan the cache directly and then the local disk, while

Caching can be enabled when creating tables. If caching is enabled, data will be written to both the local disk and backend object storage. During queries, the CN nodes first read data from the local disk. If the data is not found, it will be retrieved from the backend object storage and simultaneously cached on the local disk.

<QSOverview />

0 comments on commit 74c6b8e

Please sign in to comment.