Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] index page for query acceleration (backport #55504) #55505

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/docusaurus/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,15 +277,15 @@
"type": "category",
"label": "Query Acceleration",
"link": {
"type": "doc",
"id": "cover_pages/query_acceleration"
},
"items": [
{
"type": "autogenerated",
"dirName": "using_starrocks"
}
]
"type": "doc",
"id": "using_starrocks/using_starrocks"
},
"items": [
{
"type": "autogenerated",
"dirName": "administration/management/resource_management"
}
]
},
{
"type": "category",
Expand Down
2 changes: 1 addition & 1 deletion docs/en/table_design/table_types/primary_key_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,6 @@ During data loading, the data is stored after being sorted according to the sort

- To load data into the table created, you can refer to [Loading overview](../../loading/Loading_intro.md) to choose an appropriate load options.
- If you need to change data in the Primary Key table, you can refer to [change data through loading](../../loading/Load_to_Primary_Key_tables.md) or use DML ([INSERT](../../sql-reference/sql-statements/loading_unloading/INSERT.md), [UPDATE](../../sql-reference/sql-statements/table_bucket_part_index/UPDATE.md), and [DELETE](../../sql-reference/sql-statements/table_bucket_part_index/DELETE.md)).
- If you want to further accelerate queries, you can refer to [Query Acceleration](../../cover_pages/query_acceleration.mdx).
- If you want to further accelerate queries, you can refer to [Query Acceleration](../../using_starrocks/using_starrocks.mdx).
- If you need to modify the table schema, you can refer to [ALTER TABLE](../../sql-reference/sql-statements/Resource/ALTER_RESOURCE.md).
- An [AUTO_INCREMENT](../../sql-reference/sql-statements/generated_columns.md) column can be used as the Primary Key.
6 changes: 6 additions & 0 deletions docs/en/using_starrocks/_category_.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
position: 60 # float position is supported
label: 'Query Acceleration'
collapsible: true
collapsed: true
link:
type: generated-index
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
displayed_sidebar: docs
keywords: ['shitu']
---

# 查询加速
# Query Acceleration

import DocCardList from '@theme/DocCardList';

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/table_design/table_types/primary_key_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,6 @@ PROPERTIES (

- 建表后导入数据,您可以参考[导入概览](../../loading/Loading_intro.md)选择合适的导入方式。
- 如果需要对主键表中数据进行变更,则可以参考 [通过导入实现数据变更](../../loading/Load_to_Primary_Key_tables.md) 或者 DML 语句([INSERT](../../sql-reference/sql-statements/loading_unloading/INSERT.md)、[UPDATE](../../sql-reference/sql-statements/table_bucket_part_index/UPDATE.md)、[DELETE](../../sql-reference/sql-statements/table_bucket_part_index/DELETE.md))。
- 如果您需要进一步加速查询,则可以参考[查询加速](../../cover_pages/query_acceleration.mdx)。
- 如果您需要进一步加速查询,则可以参考[查询加速](../../using_starrocks/using_starrocks.mdx)。
- 如果需要修改表结构,则可以参考 [ALTER TABLE](../../sql-reference/sql-statements/Resource/ALTER_RESOURCE.md)。
- [自增列](../../sql-reference/sql-statements/generated_columns.md)可作为生成主键。
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
displayed_sidebar: docs
---

#
# 查询加速

import DocCardList from '@theme/DocCardList';

<DocCardList />

Loading