提交 121e2e79 编写于 作者: X xiangdong huang 提交者: Jialin Qiao

prepare for announcing releasing v0.10

上级 903fee09
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>iotdb-cli</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>iotdb-distribution</artifactId>
......
......@@ -32,9 +32,9 @@ RUN apt update \
&& cd incubator-iotdb-master \
&& mvn package -pl server,client -am -Papache-release -DskipTests -Dthrift.download-url="http://www.apache.org/licenses/LICENSE-2.0.txt" -Dthrift.exec.absolute.path="/usr/bin/thrift" \
&& cd target/ \
&& unzip apache-iotdb-0.10.0-SNAPSHOT-incubating-bin.zip \
&& unzip apache-iotdb-0.11.0-SNAPSHOT-incubating-bin.zip \
&& mkdir /iotdb \
&& mv apache-iotdb-0.10.0-SNAPSHOT-incubating/* /iotdb/ \
&& mv apache-iotdb-0.11.0-SNAPSHOT-incubating/* /iotdb/ \
&& cd ../../ \
&& mvn clean \
&& ls -lh ~/.m2 \
......
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
FROM openjdk:11-jre-slim
RUN apt update \
# procps is for `free` command
&& apt install wget unzip lsof procps -y \
&& wget https://www-us.apache.org/dist/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip \
# if you are in China, use the following URL
#&& wget http://mirrors.tuna.tsinghua.edu.cn/apache/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip \
&& unzip apache-iotdb-0.10.0-incubating-bin.zip \
&& rm apache-iotdb-0.10.0-incubating-bin.zip \
&& mv apache-iotdb-0.10.0-incubating /iotdb \
&& apt remove wget unzip -y \
&& apt autoremove -y \
&& apt purge --auto-remove -y \
&& apt clean -y
EXPOSE 6667
EXPOSE 31999
EXPOSE 5555
EXPOSE 8181
VOLUME /iotdb/data
VOLUME /iotdb/logs
ENV PATH="/iotdb/sbin/:/iotdb/tools/:${PATH}"
ENTRYPOINT ["/iotdb/sbin/start-server.sh"]
......@@ -28,6 +28,16 @@
<th colspan="3">IoTDB Sources</th>
<th>release notes</th>
</tr>
<tr>
<td>0.10.0</td>
<td><a href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip">Release</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip.sha512">SHA512</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip.asc">ASC</a></td>
<td><a href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-source-release.zip">Sources</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-source-release.zip.sha512">SHA512</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-source-release.zip.asc">ASC</a></td>
<td><a href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.10.0/RELEASE_NOTES.md">release notes</a></td>
</tr>
<tr>
<td>0.9.3</td>
<td><a href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip">Release</a></td>
......@@ -51,8 +61,34 @@
</table>
**<font color=red>Attention</font>**:
- How to upgrade a minor version (e.g., from v0.9.0 to v0.0.3)?
* versions which have the same major version are compatible.
* Just download and unzip the new version. Then modify the configuration files to keep consistent
with what you set in the old version.
* stop the old vesion instance, and start the new one.
- How to upgrade from v.9.x to v0.10.x?
* Upgrading from v0.9 to v0.10 is more complex than v0.8 to v0.9.
* Stop writing new data.
* Call `flush` command using sbin/start-client.sh in v0.9 to close all TsFiles.
* We recommend to backup the data file (also the wal files and mlog.txt) before upgrading for rolling back.
* Just download, unzip v0.10.x.zip, and modify conf/iotdb-engine.proeprties to let all the
directories point to the folders set in v0.9.x (or the backup folder).
You can also modify other settings if you want.
* Stop IoTDB v0.9 instance, and start v0.10.x, then the IoTDB will upgrade data file format automatically.
- How to upgrade from 0.8.x to v0.9.x?
* We recommend to backup the data file (also the wal files and mlog.txt) before upgrading for rolling back.
* Just download, unzip v0.9.x.zip, and modify conf/iotdb-engine.proeprties to let all the
directories point to the folders set in v0.8.x (or the backup folder).
You can also modify other settings if you want.
* Stop IoTDB v0.8 instance, and start v0.9.x, then the IoTDB will upgrade data file format automatically.
# All releases
......
......@@ -248,7 +248,7 @@ For Linux or MacOs:
An example on Windows:
```
D:\incubator-iotdb\server\target\iotdb-server-0.10.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data
D:\incubator-iotdb\server\target\iotdb-server-0.11.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data
​````````````````````````
Starting Printing the IoTDB Data Directory Overview
​````````````````````````
......
......@@ -55,7 +55,7 @@ show version
+---------------+
| version|
+---------------+
|0.10.0-SNAPSHOT|
|0.11.0-SNAPSHOT|
+---------------+
Total line number = 1
It costs 0.417s
......
......@@ -27,6 +27,16 @@
<th colspan="3">IoTDB Sources</th>
<th>release notes</th>
</tr>
<tr>
<td>0.10.0</td>
<td><a href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip">Release</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip.sha512">SHA512</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-bin.zip.asc">ASC</a></td>
<td><a href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-source-release.zip">Sources</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-source-release.zip.sha512">SHA512</a></td>
<td><a href="https://downloads.apache.org/incubator/iotdb/0.10.0-incubating/apache-iotdb-0.10.0-incubating-source-release.zip.asc">ASC</a></td>
<td><a href="https://raw.githubusercontent.com/apache/incubator-iotdb/release/0.10.0/RELEASE_NOTES.md">release notes</a></td>
</tr>
<tr>
<td>0.9.3</td>
<td><a href="https://www.apache.org/dyn/closer.cgi/incubator/iotdb/0.9.3-incubating/apache-iotdb-0.9.3-incubating-bin.zip">Release</a></td>
......@@ -50,6 +60,26 @@
</table>
**<font color=red>升级注意事项</font>**:
- 如何升级小版本 (例如,从 v0.9.0 to v0.0.3)?
* 同一个大版本下的多个小版本是互相兼容的。
* 只需要下载新的小版本, 然后修改其配置文件,使其与原有版本的设置一致。
* 停掉旧版本进程,启动新版本即可。
- 如何从v0.9.x 升级到 v0.10.x?
* 停掉0.9的新数据写入。
* 用CLI调用`flush`,确保关闭所有的TsFile文件.
* 我们推荐提前备份数据文件(以及写前日志和mlog文件),以备回滚。
* 下载最新版,解压并修改配置文件。将各数据目录都指向备份的或者v0.9原来使用的数据目录。
* 停止v0.9的实例,启动v0.10的实例。IoTDB将自动升级数据文件格式。
- 如何从0.8.x 升级到 v0.9.x?
* 我们推荐提前备份数据文件(以及写前日志和mlog文件),以备回滚。
* 下载最新版,解压并修改配置文件。将各数据目录都指向备份的或者v0.8原来使用的数据目录。
* 停止v0.8的实例,启动v0.9.x的实例。IoTDB将自动升级数据文件格式。
# 所有版本
......
......@@ -248,7 +248,7 @@ For Linux or MacOs:
在Windows系统中的示例:
```
D:\incubator-iotdb\server\target\iotdb-server-0.10.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data
D:\incubator-iotdb\server\target\iotdb-server-0.11.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data
​````````````````````````
Starting Printing the IoTDB Data Directory Overview
​````````````````````````
......
......@@ -74,10 +74,10 @@ TsFile的Hive连接器实现了对Hive读取外部Tsfile类型的文件格式的
然后在hive的命令行中,使用`add jar XXX`命令添加依赖。例如:
```
hive> add jar /Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.10.0-SNAPSHOT-jar-with-dependencies.jar;
hive> add jar /Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.11.0-SNAPSHOT-jar-with-dependencies.jar;
Added [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.10.0-SNAPSHOT-jar-with-dependencies.jar] to class path
Added resources: [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.10.0-SNAPSHOT-jar-with-dependencies.jar]
Added [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.11.0-SNAPSHOT-jar-with-dependencies.jar] to class path
Added resources: [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.11.0-SNAPSHOT-jar-with-dependencies.jar]
```
......
......@@ -46,7 +46,7 @@ show version
+---------------+
| version|
+---------------+
|0.10.0-SNAPSHOT|
|0.11.0-SNAPSHOT|
+---------------+
Total line number = 1
It costs 0.417s
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-examples</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>flink-example</artifactId>
......
......@@ -24,17 +24,17 @@
<parent>
<artifactId>iotdb-examples</artifactId>
<groupId>org.apache.iotdb</groupId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hadoop-example</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<name>hadoop-example</name>
<dependencies>
<dependency>
<groupId>org.apache.iotdb</groupId>
<artifactId>hadoop-tsfile</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
......@@ -23,7 +23,7 @@
<parent>
<artifactId>iotdb-examples</artifactId>
<groupId>org.apache.iotdb</groupId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jdbc-example</artifactId>
......
......@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-examples</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>kafka-example</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-examples</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>mqtt-example</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-examples</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>rocketmq-example</artifactId>
......
......@@ -23,7 +23,7 @@
<parent>
<artifactId>iotdb-examples</artifactId>
<groupId>org.apache.iotdb</groupId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>client-example</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-examples</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>tsfile-example</artifactId>
......
......@@ -20,7 +20,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>flink-iotdb-connector</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>flink-tsfile-connector</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<!--parent>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hadoop-tsfile</artifactId>
......@@ -40,7 +40,7 @@
<dependency>
<groupId>org.apache.iotdb</groupId>
<artifactId>tsfile</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
......
......@@ -24,11 +24,11 @@
<parent>
<artifactId>iotdb-parent</artifactId>
<groupId>org.apache.iotdb</groupId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hive-connector</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
......@@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.iotdb</groupId>
<artifactId>hadoop-tsfile</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>iotdb-jdbc</artifactId>
......
......@@ -28,7 +28,7 @@
</parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache IoTDB (incubating) Project Parent POM</name>
<description>This is the top level project that builds, packages the tsfile, iotdb engine, jdbc, and integration libs.</description>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>iotdb-server</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>service-rpc</artifactId>
......
......@@ -23,7 +23,7 @@
<parent>
<artifactId>iotdb-parent</artifactId>
<groupId>org.apache.iotdb</groupId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
......
......@@ -23,7 +23,7 @@
<parent>
<artifactId>iotdb-parent</artifactId>
<groupId>org.apache.iotdb</groupId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
......@@ -194,6 +194,18 @@
<artifactId>download-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>get-0.10-docs</id>
<phase>generate-sources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://github.com/apache/incubator-iotdb/archive/rel/0.10.zip</url>
<outputDirectory>${project.build.directory}/download</outputDirectory>
<outputFileName>0.10.x.zip</outputFileName>
</configuration>
</execution>
<execution>
<id>get-0.9-docs</id>
<phase>generate-sources</phase>
......@@ -227,6 +239,32 @@
<version>1.2</version>
<inherited>false</inherited>
<executions>
<execution>
<id>copy-0.10-documentation</id>
<goals>
<goal>copy</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<fileset>
<directory>${project.build.directory}/download/0.10.x.zip/incubator-iotdb-rel-0.10/docs/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/UserGuide/V0.10.x</outputDirectory>
</fileset>
</configuration>
</execution>
<execution>
<id>copy-0.10-zh-documentation</id>
<goals>
<goal>copy</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<fileset>
<directory>${project.build.directory}/download/0.10.x.zip/incubator-iotdb-rel-0.10/docs/zh/UserGuide</directory>
<outputDirectory>${project.build.directory}/vue-source/src/zh/UserGuide/V0.10.x</outputDirectory>
</fileset>
</configuration>
</execution>
<execution>
<id>copy-0.9-documentation</id>
<goals>
......
......@@ -73,8 +73,9 @@ var config = {
text: 'Document',
items: [
{ text: 'In progress', link: '/UserGuide/Master/Get Started/QuickStart' },
{ text: 'V0.10.x', link: '/UserGuide/V0.10.x/Get Started/QuickStart' },
{ text: 'V0.9.x', link: '/UserGuide/V0.9.x/0-Get Started/1-QuickStart' },
{ text: 'V0.8.x', link: '/UserGuide/V0.8.x/0-Get Started/1-QuickStart'},
{ text: 'V0.8.x', link: '/UserGuide/V0.8.x/0-Get Started/1-QuickStart'},
]
},
{
......@@ -301,6 +302,100 @@ var config = {
]
},
],
'/UserGuide/V0.10.x/': [
{
title:'IoTDB User Guide (V0.10.x)',
collapsable: false,
},
{
title: 'Get Started',
children: [
['Get Started/QuickStart','QuickStart'],
['Get Started/Frequently asked questions','Frequently asked questions'],
['Get Started/Publication','Research Papers']
]
},
{
title: 'Overview',
children: [
['Overview/What is IoTDB','What is IoTDB'],
['Overview/Architecture','Architecture'],
['Overview/Scenario','Scenario'],
['Overview/Features','Features']
]
},
{
title: 'Concept',
children: [
['Concept/Data Model and Terminology','Data Model and Terminology'],
['Concept/Data Type','Data Type'],
['Concept/Encoding','Encoding'],
['Concept/Compression','Compression']
]
},
{
title: 'Server',
children: [
['Server/Download','Download'],
['Server/Single Node Setup','Single Node Setup'],
['Server/Cluster Setup','Cluster Setup'],
['Server/Config Manual','Config Manual'],
['Server/Docker Image','Docker Image']
]
},
{
title: 'Client',
children: [
['Client/Command Line Interface','Command Line Interface'],
['Client/Programming - Native API','Native API'],
['Client/Programming - JDBC','JDBC'],
['Client/Programming - Other Languages','Other Languages'],
['Client/Programming - TsFile API','TsFile API'],
['Client/Programming - MQTT','MQTT'],
['Client/Status Codes','Status Codes']
]
},
{
title: 'Operation Manual',
children: [
['Operation Manual/DDL Data Definition Language','DDL (Data Definition Language)'],
['Operation Manual/DML Data Manipulation Language','DML (Data Manipulation Language)'],
['Operation Manual/Administration','Administration'],
['Operation Manual/SQL Reference','SQL Reference']
]
},
{
title: 'System Tools',
children: [
['System Tools/Sync Tool','Sync Tool'],
['System Tools/Memory Estimation Tool','Memory Estimation Tool'],
['System Tools/JMX Tool','JMX Tool'],
['System Tools/Watermark Tool','Watermark Tool'],
['System Tools/Log Visualizer','Log Visualizer'],
['System Tools/Query History Visualization Tool','Query History Visualization Tool'],
['System Tools/Monitor and Log Tools','Monitor and Log Tools'],
['System Tools/Load External Tsfile','Load External Tsfile']
]
},
{
title: 'Ecosystem Integration',
children: [
['Ecosystem Integration/Grafana','Grafana'],
['Ecosystem Integration/MapReduce TsFile','MapReduce TsFile'],
['Ecosystem Integration/Spark TsFile','Spark TsFile'],
['Ecosystem Integration/Spark IoTDB','Spark IoTDB'],
['Ecosystem Integration/Hive TsFile','Hive TsFile']
]
},
{
title: 'Architecture',
children: [
['Architecture/Files','Files'],
['Architecture/Writing Data on HDFS','Writing Data on HDFS'],
['Architecture/Shared Nothing Cluster','Shared Nothing Cluster']
]
},
],
'/UserGuide/Master/': [
{
title:'IoTDB User Guide (In progress)',
......@@ -501,6 +596,7 @@ var config = {
text: '文档',
items: [
{ text: 'In progress', link: '/zh/UserGuide/Master/Get Started/QuickStart' },
{ text: 'V0.10.x', link: '/zh/UserGuide/V0.10.x/Get Started/QuickStart' },
{ text: 'V0.9.x', link: '/zh/UserGuide/V0.9.x/0-Get Started/1-QuickStart' },
{ text: 'V0.8.x', link: '/zh/UserGuide/V0.8.x/0-Get Started/1-QuickStart'},
]
......@@ -722,6 +818,100 @@ var config = {
]
},
],
'/zh/UserGuide/V0.10.x/': [
{
title: 'IoTDB用户手册 (v0.10.x)',
collapsable: false,
},
{
title: '开始',
children: [
['Get Started/QuickStart','快速入门'],
['Get Started/Frequently asked questions','经常问的问题'],
['Get Started/Publication','调查报告']
]
},
{
title: '概述',
children: [
['Overview/What is IoTDB','什么是IoTDB'],
['Overview/Architecture','架构'],
['Overview/Scenario','场景'],
['Overview/Features','特征']
]
},
{
title: '概念',
children: [
['Concept/Data Model and Terminology','数据模型与技术'],
['Concept/Data Type','数据类型'],
['Concept/Encoding','编码方式'],
['Concept/Compression','压缩方式']
]
},
{
title: '服务器端',
children: [
['Server/Download','下载'],
['Server/Single Node Setup','单节点安装'],
['Server/Cluster Setup','集群设置'],
['Server/Config Manual','配置手册'],
['Server/Docker Image','Docker镜像']
]
},
{
title: '客户端',
children: [
['Client/Command Line Interface','命令行接口(CLI)'],
['Client/Programming - Native API','原生接口'],
['Client/Programming - JDBC','JDBC'],
['Client/Programming - Other Languages','其他语言'],
['Client/Programming - TsFile API','TsFile API'],
['Client/Programming - MQTT','MQTT'],
['Client/Status Codes','状态码']
]
},
{
title: '操作指南',
children: [
['Operation Manual/DDL Data Definition Language','DDL (数据定义语言)'],
['Operation Manual/DML Data Manipulation Language','DML (数据操作语言)'],
['Operation Manual/Administration','权限管理语句'],
['Operation Manual/SQL Reference','SQL 参考文档']
]
},
{
title: '系统工具',
children: [
['System Tools/Sync Tool','同步工具'],
['System Tools/Memory Estimation Tool','内存预估'],
['System Tools/JMX Tool','JMX工具'],
['System Tools/Watermark Tool','水印工具'],
['System Tools/Log Visualizer','日志可视化工具'],
['System Tools/Query History Visualization Tool','查询历史可视化工具'],
['System Tools/Monitor and Log Tools','监控与日志工具'],
['System Tools/Load External Tsfile','加载外部tsfile文件']
]
},
{
title: '生态集成',
children: [
['Ecosystem Integration/Grafana','Grafana'],
['Ecosystem Integration/MapReduce TsFile','MapReduce TsFile'],
['Ecosystem Integration/Spark TsFile','Spark TsFile'],
['Ecosystem Integration/Spark IoTDB','Spark IoTDB'],
['Ecosystem Integration/Hive TsFile','Hive TsFile']
]
},
{
title: '系统设计',
children: [
['Architecture/Files','文件'],
['Architecture/Writing Data on HDFS','使用HDFS存储数据'],
['Architecture/Shared Nothing Cluster','Shared-nothing 架构']
]
}
],
'/zh/UserGuide/Master/': [
{
title: 'IoTDB用户手册 (In progress)',
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>spark-iotdb-connector</artifactId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>spark-tsfile</artifactId>
......@@ -39,7 +39,7 @@
<dependency>
<groupId>org.apache.iotdb</groupId>
<artifactId>hadoop-tsfile</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
......
......@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.iotdb</groupId>
<artifactId>iotdb-parent</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.11.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>tsfile</artifactId>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册