Skip to content

Commit af68f9b

Browse files
committed
Iteration V1.3.3
1 parent ae48d43 commit af68f9b

File tree

589 files changed

+151822
-1916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

589 files changed

+151822
-1916
lines changed

src/.vuepress/navbar/en.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export const enNavbar = navbar([
2424
text: 'Documentation',
2525
children: [
2626
// { text: 'latest', link: '/UserGuide/Master/QuickStart/QuickStart_apache' },
27-
{ text: 'v1.3.0/1/2', link: '/UserGuide/latest/QuickStart/QuickStart_apache' },
27+
{ text: 'v1.3.3', link: '/UserGuide/latest/QuickStart/QuickStart_apache' },
28+
{ text: 'v1.3.0/1/2', link: '/UserGuide/V1.3.0-2/QuickStart/QuickStart_apache' },
2829
{ text: 'v1.2.x', link: '/UserGuide/V1.2.x/QuickStart/QuickStart' },
2930
{ text: 'v1.1.x', link: '/UserGuide/V1.1.x/QuickStart/QuickStart' },
3031
{ text: 'v1.0.x', link: '/UserGuide/V1.0.x/QuickStart/QuickStart' },

src/.vuepress/navbar/zh.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export const zhNavbar = navbar([
2424
text: '文档',
2525
children: [
2626
// { text: 'latest', link: '/zh/UserGuide/Master/QuickStart/QuickStart_apache' },
27-
{ text: 'v1.3.0/1/2', link: '/zh/UserGuide/latest/QuickStart/QuickStart_apache' },
27+
{ text: 'v1.3.3', link: '/zh/UserGuide/latest/QuickStart/QuickStart_apache' },
28+
{ text: 'v1.3.0/1/2', link: '/zh/UserGuide/V1.3.0-2/QuickStart/QuickStart_apache' },
2829
{ text: 'v1.2.x', link: '/zh/UserGuide/V1.2.x/QuickStart/QuickStart' },
2930
{ text: 'v1.1.x', link: '/zh/UserGuide/V1.1.x/QuickStart/QuickStart' },
3031
{ text: 'v1.0.x', link: '/zh/UserGuide/V1.0.x/QuickStart/QuickStart' },
Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
/*
2+
Licensed to the Apache Software Foundation (ASF) under one
3+
or more contributor license agreements. See the NOTICE file
4+
distributed with this work for additional information
5+
regarding copyright ownership. The ASF licenses this file
6+
to you under the Apache License, Version 2.0 (the
7+
"License"); you may not use this file except in compliance
8+
with the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing,
13+
software distributed under the License is distributed on an
14+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
KIND, either express or implied. See the License for the
16+
specific language governing permissions and limitations
17+
under the License.
18+
*/
19+
20+
export const enSidebar = {
21+
'/UserGuide/V1.3.0-2/': [
22+
{
23+
text: 'IoTDB User Guide (V1.3.0/1/2)',
24+
children: [],
25+
},
26+
{
27+
text: 'About IoTDB',
28+
collapsible: true,
29+
prefix: 'IoTDB-Introduction/',
30+
// children: 'structure',
31+
children: [
32+
{ text: 'What is IoTDB', link: 'IoTDB-Introduction_apache' },
33+
{ text: 'Features', link: 'Features' },
34+
{ text: 'System Architecture', link: 'Architecture' },
35+
{ text: 'Performance', link: 'Performance' },
36+
{ text: 'Scenario', link: 'Scenario' },
37+
{ text: 'Academic Achievement', link: 'Publication' },
38+
],
39+
},
40+
{
41+
text: 'Quick Start',
42+
link: 'QuickStart/QuickStart_apache',
43+
},
44+
{
45+
text: 'Basic Concept',
46+
collapsible: true,
47+
prefix: 'Basic-Concept/',
48+
// children: 'structure',
49+
children: [
50+
{ text: 'Navigating Time Series Data', link: 'Navigating_Time_Series_Data' },
51+
{ text: 'Data Model', link: 'Data-Model-and-Terminology' },
52+
{ text: 'Data Type', link: 'Data-Type' },
53+
{ text: 'Encoding and Compression', link: 'Encoding-and-Compression' },
54+
{ text: 'Data Partitioning & Load Balancing', link: 'Cluster-data-partitioning' },
55+
],
56+
},
57+
{
58+
text: 'Deployment & Maintenance',
59+
collapsible: true,
60+
prefix: 'Deployment-and-Maintenance/',
61+
// children: 'structure',
62+
children: [
63+
{ text: 'Obtain IoTDB', link: 'IoTDB-Package_apache' },
64+
{ text: 'Database Resources', link: 'Database-Resources' },
65+
{ text: 'System Requirements', link: 'Environment-Requirements' },
66+
{ text: 'Stand-Alone Deployment', link: 'Stand-Alone-Deployment_apache' },
67+
{ text: 'Cluster Deployment', link: 'Cluster-Deployment_apache' },
68+
{ text: 'Docker Deployment', link: 'Docker-Deployment_apache' },
69+
],
70+
},
71+
72+
{
73+
text: 'User Manual',
74+
collapsible: true,
75+
prefix: 'User-Manual/',
76+
// children: 'structure',
77+
children: [
78+
{ text: 'Syntax Rule', link: 'Syntax-Rule' },
79+
{ text: 'Operate Metadata', link: 'Operate-Metadata_apache' },
80+
{ text: 'Write & Delete Data', link: 'Write-Delete-Data' },
81+
{ text: 'Query Data', link: 'Query-Data' },
82+
{ text: 'Operator and Expression', link: 'Operator-and-Expression' },
83+
{ text: 'Stream Processing', link: 'Streaming_apache' },
84+
{ text: 'Data Sync', link: 'Data-Sync_apache' },
85+
{ text: 'Database Programming', link: 'Database-Programming' },
86+
{ text: 'UDF', link: 'User-defined-function' },
87+
{ text: 'Database Administration', link: 'Authority-Management' },
88+
{ text: 'Maintennance', link: 'Maintennance' },
89+
],
90+
},
91+
{
92+
text: 'Tools System',
93+
collapsible: true,
94+
prefix: 'Tools-System/',
95+
// children: 'structure',
96+
children: [
97+
{ text: 'Command Line Interface (CLI)', link: 'CLI' },
98+
{ text: 'Monitor Tool', link: 'Monitor-Tool_apache' },
99+
{ text: 'Benchmark Tool', link: 'Benchmark' },
100+
{ text: 'Maintenance Tool', link: 'Maintenance-Tool_apache' },
101+
{ text: 'Data Import Export Script', link: 'Data-Import-Export-Tool' },
102+
{ text: 'TsFile Import Export Script', link: 'TsFile-Import-Export-Tool' },
103+
],
104+
},
105+
{
106+
text: 'API',
107+
collapsible: true,
108+
prefix: 'API/',
109+
// children: 'structure',
110+
children: [
111+
{ text: 'Java Native API', link: 'Programming-Java-Native-API' },
112+
{ text: 'Python Native API', link: 'Programming-Python-Native-API' },
113+
{ text: 'C++ Native API', link: 'Programming-Cpp-Native-API' },
114+
{ text: 'Go Native API', link: 'Programming-Go-Native-API' },
115+
{ text: 'C# Native API', link: 'Programming-CSharp-Native-API' },
116+
{ text: 'Node.js Native API', link: 'Programming-NodeJS-Native-API' },
117+
{ text: 'Rust Native API', link: 'Programming-Rust-Native-API' },
118+
{ text: 'JDBC (Not Recommend)', link: 'Programming-JDBC' },
119+
{ text: 'MQTT Protocol', link: 'Programming-MQTT' },
120+
{ text: 'Kafka', link: 'Programming-Kafka' },
121+
{ text: 'REST API V1 (Not Recommend)', link: 'RestServiceV1' },
122+
{ text: 'REST API V2', link: 'RestServiceV2' },
123+
],
124+
},
125+
{
126+
text: 'Ecosystem Integration',
127+
collapsible: true,
128+
prefix: 'Ecosystem-Integration/',
129+
// children: 'structure',
130+
children: [
131+
{ text: 'Apache Flink(IoTDB)', link: 'Flink-IoTDB' },
132+
{ text: 'Apache Flink(TsFile)', link: 'Flink-TsFile' },
133+
{ text: 'Apache Hive(TsFile)', link: 'Hive-TsFile' },
134+
{ text: 'Apache NiFi', link: 'NiFi-IoTDB' },
135+
{ text: 'Apache Spark(TsFile)', link: 'Spark-TsFile' },
136+
{ text: 'Apache Spark(IoTDB)', link: 'Spark-IoTDB' },
137+
{ text: 'Apache Zeppelin', link: 'Zeppelin-IoTDB_apache' },
138+
{ text: 'DBeaver', link: 'DBeaver' },
139+
{ text: 'Grafana(IoTDB)', link: 'Grafana-Connector' },
140+
{ text: 'Grafana Plugin', link: 'Grafana-Plugin' },
141+
{ text: 'ThingsBoard', link: 'Thingsboard' },
142+
],
143+
},
144+
{
145+
text: 'SQL Manual',
146+
collapsible: true,
147+
prefix: 'SQL-Manual/',
148+
// children: 'structure',
149+
children: [
150+
{ text: 'SQL Manual', link: 'SQL-Manual' },
151+
],
152+
},
153+
{
154+
text: 'FAQ',
155+
collapsible: true,
156+
prefix: 'FAQ/',
157+
// children: 'structure',
158+
children: [
159+
{ text: 'Frequently Asked Questions', link: 'Frequently-asked-questions' }],
160+
},
161+
{
162+
text: 'Reference',
163+
collapsible: true,
164+
prefix: 'Reference/',
165+
// children: 'structure',
166+
children: [
167+
{ text: 'UDF Libraries', link: 'UDF-Libraries' },
168+
{ text: 'UDF development', link: 'UDF-development' },
169+
{ text: 'Function and Expression', link: 'Function-and-Expression' },
170+
{ text: 'Common Config Manual', link: 'Common-Config-Manual' },
171+
{ text: 'Status Codes', link: 'Status-Codes' },
172+
{ text: 'Keywords', link: 'Keywords' },
173+
],
174+
},
175+
],
176+
};
Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
/*
2+
Licensed to the Apache Software Foundation (ASF) under one
3+
or more contributor license agreements. See the NOTICE file
4+
distributed with this work for additional information
5+
regarding copyright ownership. The ASF licenses this file
6+
to you under the Apache License, Version 2.0 (the
7+
"License"); you may not use this file except in compliance
8+
with the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing,
13+
software distributed under the License is distributed on an
14+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
KIND, either express or implied. See the License for the
16+
specific language governing permissions and limitations
17+
under the License.
18+
*/
19+
20+
export const zhSidebar = {
21+
'/zh/UserGuide/V1.3.0-2/': [
22+
{
23+
text: 'IoTDB用户手册 (V1.3.0/1/2)',
24+
children: [],
25+
},
26+
{
27+
text: '关于IoTDB',
28+
collapsible: true,
29+
prefix: 'IoTDB-Introduction/',
30+
// children: 'structure', 使用该方式自动获取文件夹下的文件
31+
children: [
32+
{ text: '产品简介', link: 'IoTDB-Introduction_apache' },
33+
{ text: '主要功能特点', link: 'Features' },
34+
{ text: '系统架构', link: 'Architecture' },
35+
{ text: '性能特点', link: 'Performance' },
36+
{ text: '应用场景', link: 'Scenario' },
37+
{ text: '学术成果', link: 'Publication' },
38+
],
39+
},
40+
{
41+
text: '快速上手',
42+
link: 'QuickStart/QuickStart_apache',
43+
},
44+
{
45+
text: '基础概念',
46+
collapsible: true,
47+
prefix: 'Basic-Concept/',
48+
// children: 'structure',
49+
children: [
50+
{ text: '走进时序数据', link: 'Navigating_Time_Series_Data' },
51+
{ text: '数据模型', link: 'Data-Model-and-Terminology' },
52+
{ text: '数据类型', link: 'Data-Type' },
53+
{ text: '编码和压缩', link: 'Encoding-and-Compression' },
54+
{ text: '数据分区与负载均衡', link: 'Cluster-data-partitioning' },
55+
],
56+
},
57+
{
58+
text: '部署与运维',
59+
collapsible: true,
60+
prefix: 'Deployment-and-Maintenance/',
61+
// children: 'structure',
62+
children: [
63+
{ text: '安装包获取', link: 'IoTDB-Package_apache' },
64+
{ text: '资源规划', link: 'Database-Resources' },
65+
{ text: '系统配置', link: 'Environment-Requirements' },
66+
{ text: '单机版部署', link: 'Stand-Alone-Deployment_apache' },
67+
{ text: '集群版部署', link: 'Cluster-Deployment_apache' },
68+
{ text: 'Docker部署', link: 'Docker-Deployment_apache' },
69+
],
70+
},
71+
72+
{
73+
text: '使用手册',
74+
collapsible: true,
75+
prefix: 'User-Manual/',
76+
// children: 'structure',
77+
children: [
78+
{ text: '语法约定', link: 'Syntax-Rule' },
79+
{ text: '元数据管理', link: 'Operate-Metadata_apache' },
80+
{ text: '数据写入与删除', link: 'Write-Delete-Data' },
81+
{ text: '数据查询', link: 'Query-Data' },
82+
{ text: '运算符、函数和表达式', link: 'Operator-and-Expression' },
83+
{ text: '流处理框架', link: 'Streaming_apache' },
84+
{ text: '数据同步', link: 'Data-Sync_apache' },
85+
{ text: '数据库编程', link: 'Database-Programming' },
86+
{ text: '用户自定义函数', link: 'User-defined-function' },
87+
{ text: '权限管理', link: 'Authority-Management' },
88+
{ text: '运维语句', link: 'Maintennance' },
89+
],
90+
},
91+
{
92+
text: '工具体系',
93+
collapsible: true,
94+
prefix: 'Tools-System/',
95+
// children: 'structure',
96+
children: [
97+
{ text: 'SQL命令行终端 (CLI)', link: 'CLI' },
98+
{ text: '监控工具', link: 'Monitor-Tool_apache' },
99+
{ text: '测试工具', link: 'Benchmark' },
100+
{ text: '运维工具', link: 'Maintenance-Tool_apache' },
101+
{ text: '数据导入导出脚本', link: 'Data-Import-Export-Tool' },
102+
{ text: 'TsFile导入导出脚本', link: 'TsFile-Import-Export-Tool' },
103+
],
104+
},
105+
{
106+
text: '应用编程接口',
107+
collapsible: true,
108+
prefix: 'API/',
109+
// children: 'structure',
110+
children: [
111+
{ text: 'Java原生接口', link: 'Programming-Java-Native-API' },
112+
{ text: 'Python原生接口', link: 'Programming-Python-Native-API' },
113+
{ text: 'C++原生接口', link: 'Programming-Cpp-Native-API' },
114+
{ text: 'Go原生接口', link: 'Programming-Go-Native-API' },
115+
{ text: 'C#原生接口', link: 'Programming-CSharp-Native-API' },
116+
{ text: 'Node.js原生接口', link: 'Programming-NodeJS-Native-API' },
117+
{ text: 'Rust原生接口', link: 'Programming-Rust-Native-API' },
118+
{ text: 'JDBC (不推荐)', link: 'Programming-JDBC' },
119+
{ text: 'MQTT协议', link: 'Programming-MQTT' },
120+
{ text: 'Kafka', link: 'Programming-Kafka' },
121+
{ text: 'REST API V1 (不推荐)', link: 'RestServiceV1' },
122+
{ text: 'REST API V2', link: 'RestServiceV2' },
123+
],
124+
},
125+
{
126+
text: '系统集成',
127+
collapsible: true,
128+
prefix: 'Ecosystem-Integration/',
129+
// children: 'structure',
130+
children: [
131+
{ text: 'Apache Flink(IoTDB)', link: 'Flink-IoTDB' },
132+
{ text: 'Apache Flink(TsFile)', link: 'Flink-TsFile' },
133+
{ text: 'Apache Hive(TsFile)', link: 'Hive-TsFile' },
134+
{ text: 'Apache NiFi', link: 'NiFi-IoTDB' },
135+
{ text: 'Apache Spark(TsFile)', link: 'Spark-TsFile' },
136+
{ text: 'Apache Spark(IoTDB)', link: 'Spark-IoTDB' },
137+
{ text: 'Apache Zeppelin', link: 'Zeppelin-IoTDB_apache' },
138+
{ text: 'DBeaver', link: 'DBeaver' },
139+
{ text: 'Grafana(IoTDB)', link: 'Grafana-Connector' },
140+
{ text: 'Grafana插件', link: 'Grafana-Plugin' },
141+
{ text: 'ThingsBoard', link: 'Thingsboard' },
142+
],
143+
},
144+
{
145+
text: 'SQL手册',
146+
collapsible: true,
147+
prefix: 'SQL-Manual/',
148+
// children: 'structure',
149+
children: [
150+
{ text: 'SQL手册', link: 'SQL-Manual' },
151+
],
152+
},
153+
{
154+
text: 'FAQ',
155+
collapsible: true,
156+
prefix: 'FAQ/',
157+
// children: 'structure',
158+
children: [
159+
{ text: '常见问题', link: 'Frequently-asked-questions' }],
160+
},
161+
{
162+
text: '参考',
163+
collapsible: true,
164+
prefix: 'Reference/',
165+
// children: 'structure',
166+
children: [
167+
{ text: 'UDF函数库', link: 'UDF-Libraries' },
168+
{ text: 'UDF开发', link: 'UDF-development' },
169+
{ text: '内置函数与表达式', link: 'Function-and-Expression' },
170+
{ text: '配置参数', link: 'Common-Config-Manual' },
171+
{ text: 'ConfigNode配置参数', link: 'ConfigNode-Config-Manual' },
172+
{ text: 'DataNode配置参数', link: 'DataNode-Config-Manual' },
173+
{ text: '状态码', link: 'Status-Codes' },
174+
{ text: '关键字', link: 'Keywords' },
175+
],
176+
},
177+
],
178+
};

src/.vuepress/sidebar/V1.3.x/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
export const enSidebar = {
2121
'/UserGuide/latest/': [
2222
{
23-
text: 'IoTDB User Guide (V1.3.0/1/2)',
23+
text: 'IoTDB User Guide (V1.3.3)',
2424
children: [],
2525
},
2626
{

src/.vuepress/sidebar/V1.3.x/zh.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
export const zhSidebar = {
2121
'/zh/UserGuide/latest/': [
2222
{
23-
text: 'IoTDB用户手册 (V1.3.0/1/2)',
23+
text: 'IoTDB用户手册 (V1.3.3)',
2424
children: [],
2525
},
2626
{

0 commit comments

Comments
 (0)