Skip to content

Commit

Permalink
docs: supplement ceresdb docs (#555)
Browse files Browse the repository at this point in the history
* add table operation doc

* refact docs summary

* refactor docs summary

* Update docs/guides/src/SUMMARY.md

Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>

* rm Chinese doc

* Update docs/guides/src/operation/monitor.md

Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>

* rename observability doc

* Update docs/guides/src/SUMMARY.md

Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>

* update summary && update doc path

* rename doc of table partitioning

* Update docs/guides/src/operation/observability.md

Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>

* rename headline

Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>
  • Loading branch information
MichaelLeeHZ and ShiKaiWi authored Jan 10, 2023
1 parent f9bbaad commit 85743ef
Show file tree
Hide file tree
Showing 19 changed files with 52 additions and 14 deletions.
25 changes: 16 additions & 9 deletions docs/guides/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

# User Guide

- [Data Model](model/README.md)
- [Data Types](model/data_types.md)
- [Special Columns](model/special_columns.md)
- [SQL Syntax](sql/README.md)
- [Data Model](sql/model/README.md)
- [Data Types](sql/model/data_types.md)
- [Special Columns](sql/model/special_columns.md)
- [Identifier](sql/identifier.md)
- [Data Definition Statements](sql/ddl/README.md)
- [CREATE TABLE](sql/ddl/create_table.md)
Expand All @@ -19,18 +19,24 @@
- [INSERT](sql/dml/insert.md)
- [SELECT](sql/dml/select.md)
- [Utility Statements](sql/utility.md)
- [Analytic Engine](analytic_engine/README.md)
- [Options](analytic_engine/options.md)
- [Engine Options](sql/engine_options.md)

- [Deployment](deploy/README.md)
- [Supported Platform](deploy/platform.md)
- [Static Routing](deploy/static_routing.md)
- [Dynamic Routing](deploy/dynamic_routing.md)

- [Develop Kits](sdk.md)
- [Protocol](protocol.md)
- [Java SDK](sdk/java.md)
- [Go SDK](sdk/go.md)
- [Python SDK](sdk/python.md)
- [Rust SDK](sdk/rust.md)

- [Operation](operation/README.md)
- [Table](operation/table.md)
- [System Table](operation/system_table.md)
- [Block List](operation/block_list.md)
- [Observability](operation/observability.md)

# Dev Guide
- [Supported Platform](dev/platform.md)
Expand All @@ -41,7 +47,8 @@

# Technical and Design
- [Architecture](architecture.md)
- [Storage](storage.md)
- [Query](query.md)
- [Wal](wal.md)
- [Table Partitioning](table_partitioning.md)

-----

- [Trouble Shooting](trouble_shooting.md)
2 changes: 1 addition & 1 deletion docs/guides/src/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ The basic design idea of CeresDB is to adopt a hybrid storage format and the cor

# How does CeresDB work?
- See [Quick Start](quick_start.md) to learn about how to get started
- For data model of CeresDB, see [Data Model](model)
- For data model of CeresDB, see [Data Model](sql/model)
- For the supported SQL data types, operators, and commands, please navigate to [SQL reference](sql)
1 change: 0 additions & 1 deletion docs/guides/src/analytic_engine/README.md

This file was deleted.

3 changes: 3 additions & 0 deletions docs/guides/src/operation/README-cn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 运维手册

本章主要介绍CeresDB系统相关的运维操作,包括集群安装,数据库表操作,容错,灾备,数据导入导出等。
6 changes: 6 additions & 0 deletions docs/guides/src/operation/observability.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Observability

CeresDB is observable with Prometheus and Grafana.



1 change: 1 addition & 0 deletions docs/guides/src/query.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Query
2 changes: 1 addition & 1 deletion docs/guides/src/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ See [sdk](./sdk.md)
## Next Step

Congrats, you have finished this tutorial. For more information about CeresDB, see the following:
- [Data Model](./model)
- [Data Model](sql/model)
- [Analytic Engine](./analytic_engine)
4 changes: 4 additions & 0 deletions docs/guides/src/sdk/go.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Go



5 changes: 5 additions & 0 deletions docs/guides/src/sdk/java.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Java




5 changes: 5 additions & 0 deletions docs/guides/src/sdk/python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Python




5 changes: 5 additions & 0 deletions docs/guides/src/sdk/rust.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Rust




4 changes: 2 additions & 2 deletions docs/guides/src/sql/ddl/create_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add `IF NOT EXIST` to tell CeresDB to ignore errors if the table name already ex

## Define Column

A column's definition should at least contains the name and type parts. All supported types are listed [here](../../model/data_types.md).
A column's definition should at least contains the name and type parts. All supported types are listed [here](../model/data_types.md).

Column is default be nullable. i.e. `NULL` keyword is implied. Adding `NOT NULL` constrains to make it required.
```sql
Expand All @@ -39,7 +39,7 @@ a_nullable int NULL
b_not_null NOT NULL
```

A column can be marked as [special column](../../model/special_columns.md) with related keyword.
A column can be marked as [special column](../model/special_columns.md) with related keyword.

## Engine

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions docs/guides/src/storage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Storage
1 change: 1 addition & 0 deletions docs/guides/src/table_partitioning.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Table Partitioning
1 change: 1 addition & 0 deletions docs/guides/src/wal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Wal

0 comments on commit 85743ef

Please sign in to comment.