From 036968e556eecbdef356e0802b5928f7f2978516 Mon Sep 17 00:00:00 2001 From: Jialin Qiao Date: Tue, 3 Dec 2019 19:36:55 +0800 Subject: [PATCH] update version (#618) --- README.md | 4 ++-- client/pom.xml | 2 +- distribution/pom.xml | 2 +- docker/src/main/Dockerfile | 4 ++-- .../UserGuide/4-Client/3-Programming - Session.md | 2 +- .../UserGuide/5-Operation Manual/4-SQL Reference.md | 2 +- .../UserGuide/6-System Tools/5-Log Visualizer.md | 2 +- .../7-Ecosystem Integration/2-MapReduce TsFile.md | 2 +- .../UserGuide/7-Ecosystem Integration/5-Hive TsFile.md | 8 ++++---- .../8-System Design (Developer)/1-Hierarchy.md | 8 ++++---- .../3-Writing Data on HDFS.md | 6 +++--- .../0-Get Started/2-Frequently asked questions.md | 2 +- .../Documentation/UserGuide/3-Server/5-Docker Image.md | 2 +- .../UserGuide/4-Client/2-Programming - JDBC.md | 2 +- .../UserGuide/4-Client/3-Programming - Session.md | 2 +- .../UserGuide/4-Client/5-Programming - TsFile API.md | 6 +++--- .../UserGuide/5-Operation Manual/4-SQL Reference.md | 2 +- .../UserGuide/6-System Tools/5-Log Visualizer.md | 2 +- .../7-Ecosystem Integration/2-MapReduce TsFile.md | 2 +- .../7-Ecosystem Integration/3-Spark TsFile.md | 6 +++--- .../UserGuide/7-Ecosystem Integration/4-Spark IoTDB.md | 8 ++++---- .../UserGuide/7-Ecosystem Integration/5-Hive TsFile.md | 10 +++++----- .../8-System Design (Developer)/1-Hierarchy.md | 8 ++++---- .../3-Writing Data on HDFS.md | 6 +++--- example/hadoop/pom.xml | 6 +++--- example/jdbc/pom.xml | 2 +- example/kafka/pom.xml | 4 ++-- example/kafka/readme.md | 4 ++-- example/pom.xml | 2 +- example/rocketmq/pom.xml | 2 +- example/rocketmq/readme.md | 4 ++-- example/session/pom.xml | 2 +- example/tsfile/pom.xml | 2 +- example/tsfile/readme.md | 2 +- grafana/pom.xml | 2 +- hadoop/README.md | 2 +- hadoop/pom.xml | 4 ++-- hive-connector/pom.xml | 6 +++--- jdbc/README.md | 2 +- jdbc/pom.xml | 2 +- pom.xml | 4 ++-- server/pom.xml | 2 +- .../java/org/apache/iotdb/db/conf/IoTDBConstant.java | 2 +- service-rpc/pom.xml | 2 +- session/pom.xml | 2 +- spark-iotdb-connector/Readme.md | 8 ++++---- spark-iotdb-connector/pom.xml | 2 +- spark-tsfile/README.md | 6 +++--- spark-tsfile/pom.xml | 4 ++-- tsfile/README.md | 2 +- tsfile/pom.xml | 2 +- .../apache/iotdb/tsfile/common/conf/TSFileConfig.java | 6 +++--- 52 files changed, 95 insertions(+), 95 deletions(-) diff --git a/README.md b/README.md index 16a3b64e869..5676fac42eb 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ For the latest information about IoTDB, please visit our [IoTDB official website # Quick Start -This short guide will walk you through the basic process of using IoTDB. For a more-complete guide, please visit our website's [User Guide](https://iotdb.apache.org/#/Documents/0.8.0/chap1/sec1). +This short guide will walk you through the basic process of using IoTDB. For a more-complete guide, please visit our website's [User Guide](https://iotdb.apache.org/#/Documents/0.10.0/chap1/sec1). ## Prerequisites @@ -276,7 +276,7 @@ or IoTDB> exit ``` -For more on what commands are supported by IoTDB SQL, see [Chapter 5: IoTDB SQL Documentation](https://iotdb.apache.org/#/Documents/0.8.0/chap5/sec1). +For more on what commands are supported by IoTDB SQL, see [Chapter 5: IoTDB SQL Documentation](https://iotdb.apache.org/#/Documents/0.10.0/chap5/sec1). ### Stop IoTDB diff --git a/client/pom.xml b/client/pom.xml index 480b599ed17..38dbee7462b 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -24,7 +24,7 @@ org.apache.iotdb iotdb-parent - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml iotdb-client diff --git a/distribution/pom.xml b/distribution/pom.xml index b9055ab21b3..5faf8e3c210 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -24,7 +24,7 @@ org.apache.iotdb iotdb-parent - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml iotdb-distribution diff --git a/docker/src/main/Dockerfile b/docker/src/main/Dockerfile index ec2efb80444..f6d0397fb88 100644 --- a/docker/src/main/Dockerfile +++ b/docker/src/main/Dockerfile @@ -31,9 +31,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.9.0-SNAPSHOT-incubating-bin.zip \ + && unzip apache-iotdb-0.10.0-SNAPSHOT-incubating-bin.zip \ && mkdir /iotdb \ - && mv apache-iotdb-0.9.0-SNAPSHOT-incubating/* /iotdb/ \ + && mv apache-iotdb-0.10.0-SNAPSHOT-incubating/* /iotdb/ \ && cd ../../ \ && mvn clean \ && ls -lh ~/.m2 \ diff --git a/docs/Documentation-CHN/UserGuide/4-Client/3-Programming - Session.md b/docs/Documentation-CHN/UserGuide/4-Client/3-Programming - Session.md index 919af6e84bf..49dbb1f9704 100644 --- a/docs/Documentation-CHN/UserGuide/4-Client/3-Programming - Session.md +++ b/docs/Documentation-CHN/UserGuide/4-Client/3-Programming - Session.md @@ -45,7 +45,7 @@ org.apache.iotdb iotdb-session - 0.9.0-SNAPSHOT + 0.10.0 ``` diff --git a/docs/Documentation-CHN/UserGuide/5-Operation Manual/4-SQL Reference.md b/docs/Documentation-CHN/UserGuide/5-Operation Manual/4-SQL Reference.md index a8f74b39e66..8e643522fe4 100644 --- a/docs/Documentation-CHN/UserGuide/5-Operation Manual/4-SQL Reference.md +++ b/docs/Documentation-CHN/UserGuide/5-Operation Manual/4-SQL Reference.md @@ -30,7 +30,7 @@ show version ``` +---------------------------------------------------------------------------+ -| 0.9.0-SNAPSHOT| +| 0.10.0| +---------------------------------------------------------------------------+ It costs 0.001s ``` diff --git a/docs/Documentation-CHN/UserGuide/6-System Tools/5-Log Visualizer.md b/docs/Documentation-CHN/UserGuide/6-System Tools/5-Log Visualizer.md index 2640afa1775..de77116d96b 100644 --- a/docs/Documentation-CHN/UserGuide/6-System Tools/5-Log Visualizer.md +++ b/docs/Documentation-CHN/UserGuide/6-System Tools/5-Log Visualizer.md @@ -67,7 +67,7 @@ > mvn clean package -pl server -DskipTests 之后您能在这个目录下找到LogVisualizer的启动脚本: -`server/target/iotdb-server-{project-version}-SNAPSHOT/tools/logVisualize` +`server/target/iotdb-server-{project-version}/tools/logVisualize` 如果您想要掌握本工具的一些进阶使用方法,您需要对正则表达式(特别是Java风格的正则表达式)有一些基本的 了解。您只有在熟悉正则表达式以后才能新建可视化计划或者对已有的计划进行修改。如果您对正则表达式一无所知, diff --git a/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md b/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md index f82b06dc06e..3d39a7fbac1 100644 --- a/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md +++ b/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md @@ -48,7 +48,7 @@ TsFile的Hadoop连接器实现了对Hadoop读取外部Tsfile类型的文件格 |Hadoop 版本 | Java 版本 | TsFile 版本 | |------------- | ------------ |------------ | -| `2.7.3` | `1.8` | `0.8.0-SNAPSHOT`| +| `2.7.3` | `1.8` | `0.10.0`| >注意:关于如何下载和使用Tsfile, 请参考以下链接: https://github.com/apache/incubator-iotdb/tree/master/tsfile. diff --git a/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md b/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md index a6c1a8e1db7..a1d3ab320df 100644 --- a/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md +++ b/docs/Documentation-CHN/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md @@ -52,7 +52,7 @@ TsFile的Hive连接器实现了对Hive读取外部Tsfile类型的文件格式的 |Hadoop Version |Hive Version | Java Version | TsFile | |------------- |------------ | ------------ |------------ | -| `2.7.3` or `3.2.1` | `2.3.6` or `3.1.2` | `1.8` | `0.9.0-SNAPSHOT`| +| `2.7.3` or `3.2.1` | `2.3.6` or `3.1.2` | `1.8` | `0.10.0`| > 注意:关于如何下载和使用Tsfile, 请参考以下链接: 。 @@ -77,10 +77,10 @@ TsFile的Hive连接器实现了对Hive读取外部Tsfile类型的文件格式的 然后在hive的命令行中,使用`add jar XXX`命令添加依赖。例如: ``` -hive> add jar /Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.9.0-SNAPSHOT-jar-with-dependencies.jar; +hive> add jar /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.9.0-SNAPSHOT-jar-with-dependencies.jar] to class path -Added resources: [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.9.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] ``` diff --git a/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/1-Hierarchy.md b/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/1-Hierarchy.md index 1c07a047ec7..2ff37c75ead 100644 --- a/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/1-Hierarchy.md +++ b/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/1-Hierarchy.md @@ -272,7 +272,7 @@ TsFile 是以6个字节的magic string (`TsFile`) 作为结束. #### 1.3.1 TsFileResource 打印工具 -该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.9.0-SNAPSHOT\tools` 目录中。 +该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.10.0\tools` 目录中。 使用方式: @@ -291,7 +291,7 @@ Linux or MacOs: 在Windows系统中的示例: ``` -D:\incubator-iotdb\server\target\iotdb-server-0.9.0-SNAPSHOT\tools>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle +D:\incubator-iotdb\server\target\iotdb-server-0.10.0\tools>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle ​```````````````````````` Starting Printing the TsFileResources ​```````````````````````` @@ -303,7 +303,7 @@ analyzing the resource file finished. #### 1.3.2 TsFile 描述工具 -该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.9.0-SNAPSHOT\tools` 目录中。 +该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.10.0\tools` 目录中。 使用方式: @@ -326,7 +326,7 @@ Linux or MacOs: 在Windows系统中的示例: ```$xslt -D:\incubator-iotdb\server\target\iotdb-server-0.9.0-SNAPSHOT\tools>.\print-tsfile-sketch.bat D:\data\data\sequence\root.vehicle\1572496142067-101-0.tsfile +D:\incubator-iotdb\server\target\iotdb-server-0.10.0\tools>.\print-tsfile-sketch.bat D:\data\data\sequence\root.vehicle\1572496142067-101-0.tsfile ​```````````````````````` Starting Printing the TsFile Sketch ​```````````````````````` diff --git a/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md b/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md index bdfb63d6df3..549d3edade8 100644 --- a/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md +++ b/docs/Documentation-CHN/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md @@ -39,7 +39,7 @@ 首先,使用maven打包server和Hadoop模块:`mvn clean package -pl server,hadoop -am -Dmaven.test.skip=true` -然后,将Hadoop模块的target jar包`hadoop-tsfile-0.9.0-SNAPSHOT-jar-with-dependencies.jar`复制到server模块的target lib文件夹 `.../server/target/iotdb-server-0.9.0-SNAPSHOT/lib`下。 +然后,将Hadoop模块的target jar包`hadoop-tsfile-0.10.0-jar-with-dependencies.jar`复制到server模块的target lib文件夹 `.../server/target/iotdb-server-0.10.0/lib`下。 编辑`iotdb-engine.properties`中的用户配置。相关配置项包括: @@ -153,7 +153,7 @@ 启动server, Tsfile将会被存储到HDFS上。 -如果你想要恢复将TSFile存储到本地文件系统,只需编辑配置项`tsfile_storage_fs`为`LOCAL`。在这种情况下,如果你已经在HDFS上存储了一些数据文件,你需要将它们下载到本地,并移动到你所配置的数据文件文件夹(默认为`../server/target/iotdb-server-0.9.0-SNAPSHOT/data/data`), 或者重新开始你的整个导入数据过程。 +如果你想要恢复将TSFile存储到本地文件系统,只需编辑配置项`tsfile_storage_fs`为`LOCAL`。在这种情况下,如果你已经在HDFS上存储了一些数据文件,你需要将它们下载到本地,并移动到你所配置的数据文件文件夹(默认为`../server/target/iotdb-server-0.10.0/data/data`), 或者重新开始你的整个导入数据过程。 ### 常见问题 @@ -168,4 +168,4 @@ ERROR org.apache.iotdb.tsfile.fileSystem.fsFactory.HDFSFactory:62 - Failed to ge A: 这表明你没有将Hadoop模块的以来放到IoTDB server中。你可以这样解决: * 使用Maven打包Hadoop模块: `mvn clean package -pl hadoop -am -Dmaven.test.skip=true` -* 将Hadoop模块的target jar包`hadoop-tsfile-0.9.0-SNAPSHOT-jar-with-dependencies.jar`复制到server模块的target lib文件夹 `.../server/target/iotdb-server-0.9.0-SNAPSHOT/lib`下。 +* 将Hadoop模块的target jar包`hadoop-tsfile-0.10.0-jar-with-dependencies.jar`复制到server模块的target lib文件夹 `.../server/target/iotdb-server-0.10.0/lib`下。 diff --git a/docs/Documentation/UserGuide/0-Get Started/2-Frequently asked questions.md b/docs/Documentation/UserGuide/0-Get Started/2-Frequently asked questions.md index 7af8b03fe7f..22ed1a8b89c 100644 --- a/docs/Documentation/UserGuide/0-Get Started/2-Frequently asked questions.md +++ b/docs/Documentation/UserGuide/0-Get Started/2-Frequently asked questions.md @@ -55,7 +55,7 @@ There are several ways to identify the version of IoTDB that you are using: * Check pom.xml file: ``` -0.9.0-SNAPSHOT +0.10.0 ``` * Use JDBC API: diff --git a/docs/Documentation/UserGuide/3-Server/5-Docker Image.md b/docs/Documentation/UserGuide/3-Server/5-Docker Image.md index 6d547e57be8..5a3f2c86d19 100644 --- a/docs/Documentation/UserGuide/3-Server/5-Docker Image.md +++ b/docs/Documentation/UserGuide/3-Server/5-Docker Image.md @@ -82,7 +82,7 @@ $ start-client.sh -h localhost -p 6667 -u root -pw root org.apache.iotdb iotdb-jdbc - 0.8.0-SNAPSHOT + 0.8.0 ``` Some examples about how to use IoTDB with IoTDB-JDBC can be found at: https://github.com/apache/incubator-iotdb/tree/master/example/jdbc/src/main/java/org/apache/iotdb diff --git a/docs/Documentation/UserGuide/4-Client/2-Programming - JDBC.md b/docs/Documentation/UserGuide/4-Client/2-Programming - JDBC.md index d65556c85ac..79dd5382747 100644 --- a/docs/Documentation/UserGuide/4-Client/2-Programming - JDBC.md +++ b/docs/Documentation/UserGuide/4-Client/2-Programming - JDBC.md @@ -50,7 +50,7 @@ mvn clean install -pl jdbc -am -Dmaven.test.skip=true org.apache.iotdb iotdb-jdbc - 0.8.0-SNAPSHOT + 0.8.0 ``` diff --git a/docs/Documentation/UserGuide/4-Client/3-Programming - Session.md b/docs/Documentation/UserGuide/4-Client/3-Programming - Session.md index 48f21d513dd..87d949a6619 100644 --- a/docs/Documentation/UserGuide/4-Client/3-Programming - Session.md +++ b/docs/Documentation/UserGuide/4-Client/3-Programming - Session.md @@ -45,7 +45,7 @@ In root directory: org.apache.iotdb iotdb-session - 0.9.0-SNAPSHOT + 0.10.0 ``` diff --git a/docs/Documentation/UserGuide/4-Client/5-Programming - TsFile API.md b/docs/Documentation/UserGuide/4-Client/5-Programming - TsFile API.md index fd76adc40b8..b4771d8190c 100644 --- a/docs/Documentation/UserGuide/4-Client/5-Programming - TsFile API.md +++ b/docs/Documentation/UserGuide/4-Client/5-Programming - TsFile API.md @@ -37,7 +37,7 @@ There are two ways to use TsFile in your own project. cd tsfile/ mvn clean package -Dmaven.test.skip=true ``` - Then, all the jars can be get in folder named `target/`. Import `target/tsfile-0.9.0-SNAPSHOT-jar-with-dependencies.jar` to your project. + Then, all the jars can be get in folder named `target/`. Import `target/tsfile-0.10.0-jar-with-dependencies.jar` to your project. * Using as a maven dependency: @@ -60,7 +60,7 @@ There are two ways to use TsFile in your own project. org.apache.iotdb tsfile - 0.9.0-SNAPSHOT + 0.10.0 ``` @@ -93,7 +93,7 @@ There are two ways to use TsFile in your own project. org.apache.iotdb tsfile - 0.9.0-SNAPSHOT + 0.10.0 ``` diff --git a/docs/Documentation/UserGuide/5-Operation Manual/4-SQL Reference.md b/docs/Documentation/UserGuide/5-Operation Manual/4-SQL Reference.md index ff98ea62665..7e02f3d718a 100644 --- a/docs/Documentation/UserGuide/5-Operation Manual/4-SQL Reference.md +++ b/docs/Documentation/UserGuide/5-Operation Manual/4-SQL Reference.md @@ -38,7 +38,7 @@ show version ``` +---------------------------------------------------------------------------+ -| 0.9.0-SNAPSHOT| +| 0.10.0| +---------------------------------------------------------------------------+ It costs 0.001s ``` diff --git a/docs/Documentation/UserGuide/6-System Tools/5-Log Visualizer.md b/docs/Documentation/UserGuide/6-System Tools/5-Log Visualizer.md index 6730a649b5c..18c9599345f 100644 --- a/docs/Documentation/UserGuide/6-System Tools/5-Log Visualizer.md +++ b/docs/Documentation/UserGuide/6-System Tools/5-Log Visualizer.md @@ -72,7 +72,7 @@ server module as a tool, you can build the server together with LogVisualizer us > mvn clean package -pl server -DskipTests Then you fan find the scripts to start LogVisualizer in: -`server/target/iotdb-server-{project-version}-SNAPSHOT/tools/logVisualize` +`server/target/iotdb-server-{project-version}/tools/logVisualize` To have access to the advanced usages of this tool, you must have some basic knowledge about regular expressions, especially Java style ones. Knowing about regular expressions enables to create your own diff --git a/docs/Documentation/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md b/docs/Documentation/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md index 8cc1f9cfa2d..c207b906042 100644 --- a/docs/Documentation/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md +++ b/docs/Documentation/UserGuide/7-Ecosystem Integration/2-MapReduce TsFile.md @@ -48,7 +48,7 @@ With this connector, you can |Hadoop Version | Java Version | TsFile Version| |------------- | ------------ |------------ | -| `2.7.3` | `1.8` | `0.8.0-SNAPSHOT`| +| `2.7.3` | `1.8` | `0.8.0`| > Note: For more information about how to download and use TsFile, please see the following link: https://github.com/apache/incubator-iotdb/tree/master/tsfile. diff --git a/docs/Documentation/UserGuide/7-Ecosystem Integration/3-Spark TsFile.md b/docs/Documentation/UserGuide/7-Ecosystem Integration/3-Spark TsFile.md index 261cf09fce7..076ecdd46c7 100644 --- a/docs/Documentation/UserGuide/7-Ecosystem Integration/3-Spark TsFile.md +++ b/docs/Documentation/UserGuide/7-Ecosystem Integration/3-Spark TsFile.md @@ -36,7 +36,7 @@ With this connector, you can |Spark Version | Scala Version | Java Version | TsFile | |------------- | ------------- | ------------ |------------ | -| `2.4.3` | `2.11.8` | `1.8` | `0.8.0-SNAPSHOT`| +| `2.4.3` | `2.11.8` | `1.8` | `0.10.0`| > Note: For more information about how to download and use TsFile, please see the following link: https://github.com/apache/incubator-iotdb/tree/master/tsfile. @@ -46,7 +46,7 @@ With this connector, you can Start Spark with TsFile-Spark-Connector in local mode: ``` -./ --jars tsfile-spark-connector.jar,tsfile-0.8.0-SNAPSHOT-jar-with-dependencies.jar +./ --jars tsfile-spark-connector.jar,tsfile-0.10.0-jar-with-dependencies.jar ``` Note: @@ -61,7 +61,7 @@ Note: Start Spark with TsFile-Spark-Connector in distributed mode (That is, the spark cluster is connected by spark-shell): ``` -. / --jars tsfile-spark-connector.jar,tsfile-0.8.0-SNAPSHOT-jar-with-dependencies.jar --master spark://ip:7077 +. / --jars tsfile-spark-connector.jar,tsfile-0.8.0-jar-with-dependencies.jar --master spark://ip:7077 ``` Note: diff --git a/docs/Documentation/UserGuide/7-Ecosystem Integration/4-Spark IoTDB.md b/docs/Documentation/UserGuide/7-Ecosystem Integration/4-Spark IoTDB.md index b316aff777f..6ce5a97dc63 100644 --- a/docs/Documentation/UserGuide/7-Ecosystem Integration/4-Spark IoTDB.md +++ b/docs/Documentation/UserGuide/7-Ecosystem Integration/4-Spark IoTDB.md @@ -26,7 +26,7 @@ The versions required for Spark and Java are as follow: | Spark Version | Scala Version | Java Version | TsFile | | ------------- | ------------- | ------------ |------------ | -| `2.4.3` | `2.11` | `1.8` | `0.9.0-SNAPSHOT`| +| `2.4.3` | `2.11` | `1.8` | `0.10.0`| ## install @@ -39,7 +39,7 @@ mvn clean scala:compile compile install org.apache.iotdb spark-iotdb-connector - 0.9.0-SNAPSHOT + 0.10.0 ``` @@ -47,7 +47,7 @@ mvn clean scala:compile compile install # 2. spark-shell user guide ``` -spark-shell --jars spark-iotdb-connector-0.9.0-SNAPSHOT.jar,iotdb-jdbc-0.9.0-SNAPSHOT-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.10.0.jar,iotdb-jdbc-0.10.0-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ @@ -60,7 +60,7 @@ df.show() ### if you want to partition your rdd, you can do as following ``` -spark-shell --jars spark-iotdb-connector-0.9.0-SNAPSHOT.jar,iotdb-jdbc-0.9.0-SNAPSHOT-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.10.0.jar,iotdb-jdbc-0.10.0-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ diff --git a/docs/Documentation/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md b/docs/Documentation/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md index 97e5ebdbf82..45fcb550df5 100644 --- a/docs/Documentation/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md +++ b/docs/Documentation/UserGuide/7-Ecosystem Integration/5-Hive TsFile.md @@ -50,7 +50,7 @@ With this connector, you can |Hadoop Version |Hive Version | Java Version | TsFile | |------------- |------------ | ------------ |------------ | -| `2.7.3` or `3.2.1` | `2.3.6` or `3.1.2` | `1.8` | `0.9.0-SNAPSHOT`| +| `2.7.3` or `3.2.1` | `2.3.6` or `3.1.2` | `1.8` | `0.10.0`| > Note: For more information about how to download and use TsFile, please see the following link: https://github.com/apache/incubator-iotdb/tree/master/tsfile. @@ -70,15 +70,15 @@ With this connector, you can To use hive-connector in hive, we should add the hive-connector jar into hive. -After downloading the code of iotdb from , you can use the command of `mvn clean package -pl hive-connector -am -Dmaven.test.skip=true` to get a `hive-connector-X.X.X-SNAPSHOT-jar-with-dependencies.jar`. +After downloading the code of iotdb from , you can use the command of `mvn clean package -pl hive-connector -am -Dmaven.test.skip=true` to get a `hive-connector-X.X.X-jar-with-dependencies.jar`. Then in hive, use the command of `add jar XXX` to add the dependency. For example: ``` -hive> add jar /Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.9.0-SNAPSHOT-jar-with-dependencies.jar; +hive> add jar /Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.10.0-jar-with-dependencies.jar; -Added [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.9.0-SNAPSHOT-jar-with-dependencies.jar] to class path -Added resources: [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.9.0-SNAPSHOT-jar-with-dependencies.jar] +Added [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.10.0-jar-with-dependencies.jar] to class path +Added resources: [/Users/hive/incubator-iotdb/hive-connector/target/hive-connector-0.10.0-jar-with-dependencies.jar] ``` diff --git a/docs/Documentation/UserGuide/8-System Design (Developer)/1-Hierarchy.md b/docs/Documentation/UserGuide/8-System Design (Developer)/1-Hierarchy.md index 7deed227208..70ac1750cad 100644 --- a/docs/Documentation/UserGuide/8-System Design (Developer)/1-Hierarchy.md +++ b/docs/Documentation/UserGuide/8-System Design (Developer)/1-Hierarchy.md @@ -271,7 +271,7 @@ Congratulations! You have finished the journey of discovering TsFile. #### 1.3.1 TsFileResource Print Tool -After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.9.0-SNAPSHOT\tools` directory. +After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.10.0\tools` directory. Command: @@ -290,7 +290,7 @@ For Linux or MacOs: An example on Windows: ``` -D:\incubator-iotdb\server\target\iotdb-server-0.9.0-SNAPSHOT\tools>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle +D:\incubator-iotdb\server\target\iotdb-server-0.10.0\tools>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle ​```````````````````````` Starting Printing the TsFileResources ​```````````````````````` @@ -302,7 +302,7 @@ analyzing the resource file finished. #### 1.3.2 TsFile Sketch Tool -After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.9.0-SNAPSHOT\tools` directory. +After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.10.0\tools` directory. Command: @@ -325,7 +325,7 @@ For Linux or MacOs: An example on Windows: ```$xslt -D:\incubator-iotdb\server\target\iotdb-server-0.9.0-SNAPSHOT\tools>.\print-tsfile-sketch.bat D:\data\data\sequence\root.vehicle\1572496142067-101-0.tsfile +D:\incubator-iotdb\server\target\iotdb-server-0.10.0\tools>.\print-tsfile-sketch.bat D:\data\data\sequence\root.vehicle\1572496142067-101-0.tsfile ​```````````````````````` Starting Printing the TsFile Sketch ​```````````````````````` diff --git a/docs/Documentation/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md b/docs/Documentation/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md index b1dfc98a94e..fbfd5978222 100644 --- a/docs/Documentation/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md +++ b/docs/Documentation/UserGuide/8-System Design (Developer)/3-Writing Data on HDFS.md @@ -39,7 +39,7 @@ If you want to store TSFile and related data files in HDFS, here are the steps: First, build server and Hadoop module by: `mvn clean package -pl server,hadoop -am -Dmaven.test.skip=true` -Then, copy the target jar of Hadoop module `hadoop-tsfile-0.9.0-SNAPSHOT-jar-with-dependencies.jar` into server target lib folder `.../server/target/iotdb-server-0.9.0-SNAPSHOT/lib`. +Then, copy the target jar of Hadoop module `hadoop-tsfile-0.10.0-jar-with-dependencies.jar` into server target lib folder `.../server/target/iotdb-server-0.10.0/lib`. Edit user config in `iotdb-engine.properties`. Related configurations are: @@ -153,7 +153,7 @@ Edit user config in `iotdb-engine.properties`. Related configurations are: Start server, and Tsfile will be stored on HDFS. -If you'd like to reset storage file system to local, just edit configuration `tsfile_storage_fs` to `LOCAL`. In this situation, if you have already had some data files on HDFS, you should either download them to local and move them to your config data file folder (`../server/target/iotdb-server-0.9.0-SNAPSHOT/data/data` by default), or restart your process and import data to IoTDB. +If you'd like to reset storage file system to local, just edit configuration `tsfile_storage_fs` to `LOCAL`. In this situation, if you have already had some data files on HDFS, you should either download them to local and move them to your config data file folder (`../server/target/iotdb-server-0.10.0/data/data` by default), or restart your process and import data to IoTDB. ### Frequent questions @@ -168,4 +168,4 @@ ERROR org.apache.iotdb.tsfile.fileSystem.fsFactory.HDFSFactory:62 - Failed to ge A: It indicates that you forget to put Hadoop module dependency in IoTDB server. You can solve it by: * Build Hadoop module: `mvn clean package -pl hadoop -am -Dmaven.test.skip=true` -* Copy the target jar of Hadoop module `hadoop-tsfile-0.9.0-SNAPSHOT-jar-with-dependencies.jar` into server target lib folder `.../server/target/iotdb-server-0.9.0-SNAPSHOT/lib`. +* Copy the target jar of Hadoop module `hadoop-tsfile-0.10.0-jar-with-dependencies.jar` into server target lib folder `.../server/target/iotdb-server-0.10.0/lib`. diff --git a/example/hadoop/pom.xml b/example/hadoop/pom.xml index 44e75d58f81..37ef618ad2d 100644 --- a/example/hadoop/pom.xml +++ b/example/hadoop/pom.xml @@ -24,17 +24,17 @@ iotdb-examples org.apache.iotdb - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml hadoop-example - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT hadoop-example org.apache.iotdb hadoop-tsfile - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT diff --git a/example/jdbc/pom.xml b/example/jdbc/pom.xml index 25d5c11dd72..c578ff957d4 100644 --- a/example/jdbc/pom.xml +++ b/example/jdbc/pom.xml @@ -23,7 +23,7 @@ iotdb-examples org.apache.iotdb - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT 4.0.0 jdbc-example diff --git a/example/kafka/pom.xml b/example/kafka/pom.xml index 11d41bfbc94..a86fa4c4f3e 100644 --- a/example/kafka/pom.xml +++ b/example/kafka/pom.xml @@ -24,12 +24,12 @@ org.apache.iotdb iotdb-examples - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml kafka-example diff --git a/example/kafka/readme.md b/example/kafka/readme.md index 231b87fa4be..b992a2fcf02 100644 --- a/example/kafka/readme.md +++ b/example/kafka/readme.md @@ -25,7 +25,7 @@ The example is to show how to send data from localhost to IoTDB through Kafka. ``` ## Usage ### Version usage -IoTDB: 0.9.0-SNAPSHOT +IoTDB: 0.10.0 Kafka: 0.8.2.0 ### Dependencies with Maven @@ -39,7 +39,7 @@ Kafka: 0.8.2.0 org.apache.iotdb iotdb-jdbc - 0.9.0-SNAPSHOT + 0.10.0 ``` diff --git a/example/pom.xml b/example/pom.xml index 40866e584ed..88c6bf0bc17 100644 --- a/example/pom.xml +++ b/example/pom.xml @@ -24,7 +24,7 @@ org.apache.iotdb iotdb-parent - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml pom diff --git a/example/rocketmq/pom.xml b/example/rocketmq/pom.xml index da589642f63..94f58a0abdc 100644 --- a/example/rocketmq/pom.xml +++ b/example/rocketmq/pom.xml @@ -24,7 +24,7 @@ org.apache.iotdb iotdb-examples - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml rocketmq-example diff --git a/example/rocketmq/readme.md b/example/rocketmq/readme.md index fac4cca3c72..d0ac03a0684 100644 --- a/example/rocketmq/readme.md +++ b/example/rocketmq/readme.md @@ -46,7 +46,7 @@ Producers insert IoTDB insert statements into partitions according to devices, e ## Usage ### Version usage -IoTDB: 0.8.0-SNAPSHOT +IoTDB: 0.10.0 Kafka: 4.4.0 ### Dependencies with Maven @@ -55,7 +55,7 @@ Kafka: 4.4.0 org.apache.iotdb iotdb-jdbc - 0.8.0-SNAPSHOT + 0.10.0 org.apache.rocketmq diff --git a/example/session/pom.xml b/example/session/pom.xml index 9ad0199d65d..42f1376a871 100644 --- a/example/session/pom.xml +++ b/example/session/pom.xml @@ -23,7 +23,7 @@ iotdb-examples org.apache.iotdb - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT 4.0.0 client-example diff --git a/example/tsfile/pom.xml b/example/tsfile/pom.xml index ad34cf572c3..58e97200471 100644 --- a/example/tsfile/pom.xml +++ b/example/tsfile/pom.xml @@ -24,7 +24,7 @@ org.apache.iotdb iotdb-examples - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml tsfile-example diff --git a/example/tsfile/readme.md b/example/tsfile/readme.md index 000cb7c2d21..c9e2b70d3c8 100644 --- a/example/tsfile/readme.md +++ b/example/tsfile/readme.md @@ -31,7 +31,7 @@ The example is to show how to write and read a TsFile File. org.apache.iotdb tsfile - 0.9.0-SNAPSHOT + 0.10.0 ``` diff --git a/grafana/pom.xml b/grafana/pom.xml index b2e1eda6f6b..9def167717a 100644 --- a/grafana/pom.xml +++ b/grafana/pom.xml @@ -24,7 +24,7 @@ org.apache.iotdb iotdb-parent - 0.9.0-SNAPSHOT + 0.10.0-SNAPSHOT ../pom.xml