Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Commit 3a13c3c

Browse files
authored
fix: Fix some problems (#46)
* fix link available * fix some problem * fix * update roadmap * add note for hybrid * exist->exists
1 parent f34cfdd commit 3a13c3c

17 files changed

Lines changed: 39 additions & 35 deletions

docs/src/cn/dev/roadmap.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232

3333
### v1.0.0
3434

35-
- [ ] 正式发布 CeresDB 和相关 SDK,并完成所有的 breaking changes
36-
- [ ] 完成分区表的主要工作
37-
- [ ] 优化查询性能,特别是云原生集群模式下,包括:
35+
- [x] 正式发布 CeresDB 和相关 SDK,并完成所有的 breaking changes
36+
- [x] 完成分区表的主要工作
37+
- [x] 优化查询性能,特别是云原生集群模式下,包括:
3838
- 多级缓存
3939
- 多种方式减少从远端获取的数据量(提高 SST 数据过滤精度)
4040
- 提高获取远程对象存储数据的并发度
41-
- [ ] 通过控制合并时的资源消耗,提高数据写入性能
41+
- [x] 通过控制合并时的资源消耗,提高数据写入性能
4242

4343
### Afterwards
4444

docs/src/cn/operation/cluster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# 集群运维
22

3-
集群运维的接口,必须在 CeresDB 集群模式,部署了 CeresMeta 的前提下才能使用
3+
集群运维接口的使用前提是,CeresDB 部署为使用 CeresMeta 的集群模式
44

55
## 运维接口
66

7-
你需要将 {CeresMetaAddr} 替换为 CeresMeta 的实际地址,如果部署在本地,可以直接替换为 `127.0.0.1`
7+
注意: 如下接口在实际使用时需要将 {CeresMetaAddr} 替换为 CeresMeta 的真实地址,如果部署在本地,可以直接替换为 `127.0.0.1`
88

99
- 查询表的路由信息
1010

docs/src/cn/operation/observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 监控
22

3-
CeresDB 使用 Prometheus 和 Grafana 做自监控。
3+
CeresDB 支持使用 Prometheus 和 Grafana 做自监控。
44

55
## Prometheus
66

docs/src/cn/quick_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## 启动
66

7-
使用 [CeresDB docker 镜像](https://hub.docker.com/r/ceresdb/ceresdb-server) 是一种最简单的启动方式;如果你还没有一个安装 Docker,请首先参考 [这里](https://www.docker.com/products/docker-desktop/) 安装 Docker。
7+
使用 [CeresDB docker 镜像](https://hub.docker.com/r/ceresdb/ceresdb-server) 是一种最简单的启动方式;如果你还没有安装 Docker,请首先参考 [这里](https://www.docker.com/products/docker-desktop/) 安装 Docker。
88

99
使用如下命令安装并启动一个单机版 CeresDB。
1010

@@ -84,7 +84,7 @@ DROP TABLE `demo`
8484

8585
## 使用 SDK
8686

87-
当前我们支持多种开发语言 SDK,例如 Java,Rust,Python, Go 等 , 具体使用请参考 [sdk](sdk/README.md)
87+
当前我们支持多种开发语言 SDK,例如 Java,Rust,Python, Go 等, 具体使用方式请参考 [sdk](sdk/README.md)
8888

8989
## 下一步
9090

docs/src/cn/sdk/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ let resp = client
9292

9393
## 写入数据
9494

95-
我们支持使用类似 [influxdb](https://awesome.influxdata.com/docs/part-2/influxdb-data-model) 的时序数据模型进行写入。
95+
我们支持使用类似 [InfluxDB](https://awesome.influxdata.com/docs/part-2/influxdb-data-model) 的时序数据模型进行写入。
9696

9797
- 利用 `PointBuilder` 创建 `point``tag value``field value` 的相关数据结构为 `Value`[`Value` 的详细信息](detail about Value](https://github.com/CeresDB/ceresdb-client-rs/blob/main/src/model/value.rs:
9898

docs/src/cn/sql/ddl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 表结构操作
22

3-
本章介绍表结构相关
3+
本章介绍表结构相关 SQL 语句:
44

55
- [建表](create_table.md)
66
- [表结构变更](alter_table.md)

docs/src/cn/sql/ddl/create_table.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
建表的基础语法如下 ( `[]` 之间的内容是可选部分):
66

77
```sql
8-
CREATE TABLE [IF NOT EXIST]
8+
CREATE TABLE [IF NOT EXISTS]
99
table_name ( column_definitions )
1010
ENGINE = engine_type
1111
[WITH ( table_options )];
@@ -23,9 +23,9 @@ column_name column_type [[NOT] NULL] {[TAG] | [TIMESTAMP KEY] | [PRIMARY KEY]}
2323
... WITH ( enable_ttl='false' )
2424
```
2525

26-
## IF NOT EXIST
26+
## IF NOT EXISTS
2727

28-
添加 `IF NOT EXIST` 时,CeresDB 在表名已经存在时会忽略建表错误。
28+
添加 `IF NOT EXISTS` 时,CeresDB 在表名已经存在时会忽略建表错误。
2929

3030
## 定义列
3131

@@ -43,8 +43,8 @@ a_nullable int NULL
4343
b_not_null NOT NULL
4444
```
4545

46-
定义列时可以使用相关的关键字标记列为 [特殊列](../model/special_columns.md)
46+
定义列时可以使用相关的关键字将列标记为 [特殊列](../model/special_columns.md)
4747

4848
## 引擎设置
4949

50-
CeresDB 支持指定某个表使用哪种引擎,目前支持的引擎类型为 [`Analytic`](../../analytic_engine/README.md)。注意这个属性设置后不可更改。
50+
CeresDB 支持指定某个表使用哪种引擎,目前支持的引擎类型为 `Analytic`。注意这个属性设置后不可更改。

docs/src/cn/sql/ddl/drop_table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
删除表的基础语法如下:
66

77
```sql
8-
DROP TABLE [IF EXIST] table_name
8+
DROP TABLE [IF EXISTS] table_name
99
```
1010

1111
`Drop Table` 用来删除一个表,请谨慎使用这个语句,因为会同时删除表的定义和表的数据,并且无法恢复。

docs/src/cn/sql/engine_options.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
建表时可以使用下列的选项配置引擎:
44

5-
- `enable_ttl`, `bool`. 默认为 `true`当一个表打开 TTL 能力,早于 `ttl` 的数据不会被查询到并且会被删除。
6-
- `ttl`, `duration`. 默认值为`7d`,此项定义数据的生命周期,只在 `enable_ttl``true` 的情况下使用。
7-
- `storage_format`, `string`. 数据存储的格式,有两种可选:
5+
- `enable_ttl`:布尔类型,默认为 `true`当一个表配置 TTL ,早于 `ttl` 的数据不会被查询到并且会被删除。
6+
- `ttl``duration` 类型,默认值为`7d`,此项定义数据的生命周期,只在 `enable_ttl``true` 的情况下使用。
7+
- `storage_format` `string` 类型,数据存储的格式,有两种可选:
88

99
- `columnar`, 默认值
10-
- `hybrid`
10+
- `hybrid`, 注意:此功能仍在开发中,将来可能会发生变化。
1111

1212
上述两种存储格式详见 [存储格式](#存储格式) 部分。
1313

docs/src/cn/sql/model/data_types.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ CeresDB 实现了 `Table` 模型,支持的数据类型和 MySQL 比较类似
2222
| int16/smallint | Int16 |
2323
| int8/tinyint | Int8 |
2424
| boolean | Boolean |
25+
| date | Date |
26+
| time | Time |

0 commit comments

Comments
 (0)