-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdir.yaml
358 lines (351 loc) · 11.4 KB
/
dir.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
---
# How it is organised
#
# - Each doc node is a yaml dict
# - A doc node is either a grouping node or a content node
#
# Grouping node
# - Must have a 'title_en' (English), 'title_cn' (Chinese) is optional when no need to translate. e.g. FAQ
# - Parent nodes must NOT have a 'path'
#
# Content node can be one of:
# - Just the path to the markdown file (the first line of which is extracted as its title)
# the path is relative inside the per-language sub-dir i.e. en_US and zh_CN
# - A node with 'title_en' 'title_cn' and 'path'
- title_en: Overview
title_cn: 概述
path: "./" # this is the index page, {en_US,zh_CN}/README.md is the content
#- title_en: Introduction
# title_cn: 关于Datalayers
# collapsed: false
# children:
# - title_en: Introduction
# title_cn: 产品简介
# path: introduction/introduction
# - title_en: Architecture
# title_cn: 系统架构
# path: introduction/architecture
- title_en: Getting Started
title_cn: 快速开始
collapsed: false
children:
- title_en: Installation
title_cn: 安装部署
children:
- title_en: Docker
title_cn: Docker
path: getting-started/docker
- title_en: Ubuntu
title_cn: Ubuntu
path: getting-started/ubuntu
- title_en: Centos
title_cn: Centos
path: getting-started/centos
- title_en: Command-line tool
title_cn: 命令行工具
path: getting-started/command-line-tool
- title_en: Development Guide
title_cn: 开发指南
collapsed: false
children:
- title_en: Concepts
title_cn: 概念
path: development-guide/concepts
- title_en: Data Writing
title_cn: 数据写入与查询
path: development-guide/data-writing
children:
- title_en: REST API
title_cn: REST API
collapsed: true
children:
- title_en: Authentication
title_cn: 认证
path: development-guide/auth-with-restapi
- title_en: Insert
title_cn: 数据写入
path: development-guide/insert-with-restapi
- title_en: Query
title_cn: 数据查询
path: development-guide/query-with-restapi
- title_en: ERROR CODE
title_cn: 错误码说明
path: development-guide/errno-with-restapi
- title_en: Multi-language Access Examples
title_cn: 多语言接入示例
path: development-guide/multi-language-examples
- title_en: InfluxDB Line Protocol
title_cn: InfluxDB Line Protocol
path: development-guide/writing-with-influxdb-line-protocol
- title_en: Arrow Flight SQL
title_cn: Arrow Flight SQL
path: development-guide/arrow-flight-sql
- title_en: Downsampling
title_cn: 时间窗口查询
path: development-guide/downsampling
- title_en: High-performance writing
title_cn: 高性能写入
path: development-guide/high-performance-writing
- title_en: High-performance reading
title_cn: 高性能查询
path: development-guide/high-performance-reading
- title_en: SQL Reference
title_cn: SQL 参考
collapsed: true
children:
- title_en: Data Type
title_cn: 数据类型
path: sql-reference/data-type
- title_en: operator
title_cn: 运算符
path: sql-reference/operators
- title_en: Table Engine
title_cn: 表引擎
collapsed: true
path: sql-reference/table-engine
children:
- title_en: Time-Series Engine
title_cn: 时序引擎
path: sql-reference/table-engine/timeseries
- title_en: key-Value Engine
title_cn: Key-Value引擎
path: sql-reference/table-engine/kv
- title_en: Streaming Engine
title_cn: 流引擎
path: sql-reference/table-engine/streaming
- title_en: Log Engine
title_cn: 日志引擎
path: sql-reference/table-engine/log
- title_en: SQL STATEMENTS
title_cn: SQL 语句
collapsed: true
children:
- title_en: CREATE
title_cn: CREATE
path: sql-reference/statements/create
- title_en: INSERT
title_cn: INSERT
path: sql-reference/statements/insert
- title_en: SELECT
title_cn: SELECT
path: sql-reference/statements/select
collapsed: true
children:
- title_en: WHERE
title_cn: WHERE
path: sql-reference/statements/where
- title_en: LIMIT
title_cn: LIMIT
path: sql-reference/statements/limit
- title_en: GROUP BY
title_cn: GROUP BY
path: sql-reference/statements/group-by
- title_en: ORDER BY
title_cn: ORDER BY
path: sql-reference/statements/order-by
- title_en: DISTINCT
title_cn: DISTINCT
path: sql-reference/statements/distinct
- title_en: HAVING
title_cn: HAVING
path: sql-reference/statements/having
- title_en: ALTER
title_cn: ALTER
path: sql-reference/statements/alter
- title_en: USE
title_cn: USE
path: sql-reference/statements/use
- title_en: SHOW
title_cn: SHOW
path: sql-reference/statements/show
- title_en: DESC
title_cn: DESC
path: sql-reference/statements/desc
- title_en: DROP
title_cn: DROP
path: sql-reference/statements/drop
- title_en: EXPLAIN
title_cn: EXPLAIN
path: sql-reference/statements/explain
- title_en: TRIM
title_cn: TRIM
path: sql-reference/statements/trim
- title_en: TRUNCATE
title_cn: TRUNCATE
path: sql-reference/statements/truncate
- title_en: FLUSH
title_cn: FLUSH
path: sql-reference/statements/flush
- title_en: COMPACT
title_cn: COMPACT
path: sql-reference/statements/compact
- title_en: Functions
title_cn: 函数
collapsed: true
children:
- title_en: Aggregation
title_cn: 聚合函数
path: sql-reference/aggregation
- title_en: Date
title_cn: 时间与日期函数
path: sql-reference/date
- title_en: Math
title_cn: 数学函数
path: sql-reference/math
- title_en: Gap Fill
title_cn: 插值
path: sql-reference/gap_fill
#- title_en: String
# title_cn: 字符串函数
# path: sql-reference/string
- title_en: INFORMATION_SCHEMA
title_cn: INFORMATION_SCHEMA
path: sql-reference/information-schema
- title_en: Configure column codec
title_cn: 列编码与压缩算法
path: sql-reference/column-codec
#- title_en: Clustering
# title_cn: 构建集群
# path: cluster/introduction
# collapsed: true
# children:
# - title_en: Concept & Architecture
# title_cn: 概念与架构
# path: cluster/concept-architecture
# - title_en: Docker
# title_cn: Docker
# path: cluster/docker
# - title_en: Manual deployment
# title_cn: 手动部署
# path: cluster/manual-deployment
# - title_en: Kubernetes
# title_cn: Kubernetes
# path: cluster/kubernetes
# - title_en: Performance and Tuning
# title_cn: 性能与调优
# path: cluster/server-config-optimization
#- title_en: Edge to Cloud
# title_cn: 边云同步
# collapsed: true
# children:
# - title_en: introduction
# title_cn: 介绍
# path: edge2cloud/introduction
- title_en: Key Value Data Model
title_cn: Key-Value 存储
collapsed: true
children:
- title_en: Overview
title_cn: 概述
path: key-value-data-model/overview
- title_en: Quick Start
title_cn: 快速开始
path: key-value-data-model/quick-start
- title_en: Redis Compatibility
title_cn: Redis 兼容性
path: key-value-data-model/redis-compatibility
- title_en: Operation Guide
title_cn: 运维指南
collapsed: true
children:
#- title_en: Support Platform
# title_cn: 支持平台
# path: admin/support-platform
- title_en: Performance and Tuning
title_cn: 性能与调优
collapsed: true
children:
- title_en: Performance Tuning (Linux)
title_cn: 操作系统优化
path: admin/system-tune
- title_en: Optimize configuration
title_cn: 优化配置
path: admin/optimize-configuration
- title_en: Datalayers configuration
title_cn: 配置手册
path: admin/datalayers-configuration
collapsed: true
children:
- title_en: Server Configuration
title_cn: Server 配置
path: admin/configuration-fields/server
- title_en: Time Series Engine Configuration
title_cn: 时序引擎配置
path: admin/configuration-fields/ts-engine
- title_en: Storage Configuration
title_cn: 存储配置
path: admin/configuration-fields/storage
- title_en: Cluster Configuration
title_cn: 集群配置
path: admin/configuration-fields/node
- title_en: Scheduler Configuration
title_cn: 调度器配置
path: admin/configuration-fields/scheduler
- title_en: Runtime Configuration
title_cn: Runtime 配置
path: admin/configuration-fields/runtime
- title_en: Log Configuration
title_cn: 日志配置
path: admin/configuration-fields/log
- title_en: License Configuration
title_cn: License 配置
path: admin/configuration-fields/license
- title_en: Command Line Interface
title_cn: 命令行接口
path: admin/datalayers-cli
#- title_en: Capacity Model
# title_cn: 容量模型
# path: admin/capacity-model
- title_en: Backup and Restore
title_cn: 备份与恢复
path: admin/backup-restore
#- title_en: Compute Node Scaling
# title_cn: 计算节点扩缩容
# path: admin/compute-node-scaling
#- title_en: Storage Node Scaling
# title_cn: 存储节点扩缩容
# path: admin/storage-node-scaling
- title_en: Statistics and Metrics
title_cn: 可观测性
collapsed: false
children:
- title_en: Metrics
title_cn: 指标
path: admin/system-metrics
- title_en: Monitor
title_cn: 系统监控
path: admin/system-monitor-grafana
- title_en: Integration
title_cn: 应用集成
collapsed: true
children:
- title_en: EMQX
title_cn: EMQX
path: integration/datalayers-with-emqx
- title_en: Grafana
title_cn: Grafana
path: integration/datalayers-with-grafana
- title_en: OpenTelemetry
title_cn: OpenTelemetry
path: integration/datalayers-with-opentelemetry
- title_en: Tools
title_cn: 管理工具
collapsed: true
children:
- title_en: DBeaver
title_cn: DBeaver
path: integration/datalayers-with-dbeaver
- title_en: User & Security
title_cn: 用户与安全
collapsed: true
children:
- title_en: TLS
title_cn: TLS
path: user-security/tls
- title_en: Release Notes
title_cn: 版本发布说明
collapsed: true
children:
- title_en: Releases
title_cn: 版本发布
path: releases/changes