This is an automated email from the ASF dual-hosted git repository. qiaojialin pushed a commit to branch upgrade_to_0.13 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit a0db3d8481c1ed9df437008230c539b33c617c6d Author: qiaojialin <[email protected]> AuthorDate: Thu Apr 22 11:51:12 2021 +0800 change version to 0.13.0-SNAPSHOT --- antlr/pom.xml | 2 +- cli/pom.xml | 4 ++-- client-cpp/pom.xml | 2 +- client-py/README.md | 2 +- client-py/pom.xml | 2 +- cluster/pom.xml | 14 +++++++------- code-coverage/pom.xml | 2 +- compile-tools/pom.xml | 2 +- compile-tools/thrift/pom.xml | 2 +- cross-tests/pom.xml | 2 +- distribution/pom.xml | 2 +- docs/Development/VoteRelease.md | 8 ++++---- docs/SystemDesign/TsFile/Format.md | 12 ++++++------ docs/UserGuide/API/Programming-Java-Native-API.md | 2 +- docs/UserGuide/API/Programming-Python-Native-API.md | 2 +- docs/UserGuide/API/Programming-TsFile-API.md | 4 ++-- docs/UserGuide/Advanced-Features/Triggers.md | 6 +++--- .../Advanced-Features/UDF-User-Defined-Function.md | 8 ++++---- docs/UserGuide/Appendix/SQL-Reference.md | 2 +- docs/UserGuide/Cluster/Cluster-Setup-Example.md | 8 ++++---- docs/UserGuide/Ecosystem Integration/Hive TsFile.md | 8 ++++---- docs/UserGuide/Ecosystem Integration/MapReduce TsFile.md | 2 +- docs/UserGuide/Ecosystem Integration/Spark IoTDB.md | 8 ++++---- docs/UserGuide/Ecosystem Integration/Spark TsFile.md | 2 +- docs/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md | 2 +- docs/UserGuide/QuickStart/WayToGetIoTDB.md | 2 +- docs/zh/Development/VoteRelease.md | 8 ++++---- docs/zh/SystemDesign/TsFile/Format.md | 12 ++++++------ docs/zh/UserGuide/API/Programming-JDBC.md | 2 +- docs/zh/UserGuide/API/Programming-Java-Native-API.md | 2 +- docs/zh/UserGuide/API/Programming-Python-Native-API.md | 2 +- docs/zh/UserGuide/API/Programming-TsFile-API.md | 4 ++-- docs/zh/UserGuide/Advanced-Features/Triggers.md | 6 +++--- .../Advanced-Features/UDF-User-Defined-Function.md | 8 ++++---- docs/zh/UserGuide/Appendix/SQL-Reference.md | 2 +- docs/zh/UserGuide/Cluster/Cluster-Setup-Example.md | 8 ++++---- docs/zh/UserGuide/Ecosystem Integration/Hive TsFile.md | 8 ++++---- .../zh/UserGuide/Ecosystem Integration/MapReduce TsFile.md | 2 +- docs/zh/UserGuide/Ecosystem Integration/Spark IoTDB.md | 8 ++++---- docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md | 2 +- docs/zh/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md | 2 +- docs/zh/UserGuide/QuickStart/WayToGetIoTDB.md | 2 +- example/client-cpp-example/pom.xml | 2 +- example/flink/pom.xml | 2 +- example/hadoop/pom.xml | 6 +++--- example/jdbc/pom.xml | 2 +- example/kafka/pom.xml | 4 ++-- example/kafka/readme.md | 4 ++-- example/mqtt/pom.xml | 2 +- example/pom.xml | 2 +- example/pulsar/pom.xml | 2 +- example/rocketmq/pom.xml | 2 +- example/rocketmq/readme.md | 4 ++-- example/session/pom.xml | 2 +- example/trigger/pom.xml | 4 ++-- example/tsfile/pom.xml | 2 +- example/tsfile/readme.md | 2 +- example/udf/pom.xml | 4 ++-- flink-iotdb-connector/pom.xml | 2 +- flink-tsfile-connector/pom.xml | 2 +- grafana/pom.xml | 2 +- hadoop/README.md | 2 +- hadoop/pom.xml | 4 ++-- hive-connector/pom.xml | 6 +++--- jdbc/README.md | 4 ++-- jdbc/pom.xml | 2 +- pom.xml | 2 +- server/pom.xml | 2 +- service-rpc/pom.xml | 2 +- session/pom.xml | 2 +- site/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 ++-- thrift-cluster/pom.xml | 2 +- thrift-sync/pom.xml | 2 +- thrift/pom.xml | 2 +- tsfile/README.md | 2 +- tsfile/pom.xml | 2 +- zeppelin-interpreter/pom.xml | 2 +- 81 files changed, 151 insertions(+), 151 deletions(-) diff --git a/antlr/pom.xml b/antlr/pom.xml index 3f1cd44..b9d8c10 100644 --- a/antlr/pom.xml +++ b/antlr/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-antlr</artifactId> diff --git a/cli/pom.xml b/cli/pom.xml index 1fb8f29..1d692b9 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-cli</artifactId> @@ -72,7 +72,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>test</scope> </dependency> </dependencies> diff --git a/client-cpp/pom.xml b/client-cpp/pom.xml index aef589f..dfd9403 100644 --- a/client-cpp/pom.xml +++ b/client-cpp/pom.xml @@ -24,7 +24,7 @@ <parent> <artifactId>iotdb-parent</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>client-cpp</artifactId> diff --git a/client-py/README.md b/client-py/README.md index 2b80057..36e3810 100644 --- a/client-py/README.md +++ b/client-py/README.md @@ -89,7 +89,7 @@ class MyTestCase(unittest.TestCase): session.close() ``` -by default it will load the image `apache/iotdb:latest`, if you want a specific version just pass it like e.g. `IoTDBContainer("apache/iotdb:0.10.0")` to get version `0.10.0` running. +by default it will load the image `apache/iotdb:latest`, if you want a specific version just pass it like e.g. `IoTDBContainer("apache/iotdb:0.12.0")` to get version `0.12.0` running. ## Pandas Support diff --git a/client-py/pom.xml b/client-py/pom.xml index 2ebb58b..c2ca20b 100644 --- a/client-py/pom.xml +++ b/client-py/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-python-api</artifactId> diff --git a/cluster/pom.xml b/cluster/pom.xml index d211396..bffe9b3 100644 --- a/cluster/pom.xml +++ b/cluster/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-cluster</artifactId> @@ -58,7 +58,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>service-rpc</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.apache.thrift</groupId> @@ -69,7 +69,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.apache.thrift</groupId> @@ -84,7 +84,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-thrift-cluster</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.apache.thrift</groupId> @@ -96,20 +96,20 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-session</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-jdbc</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> diff --git a/code-coverage/pom.xml b/code-coverage/pom.xml index 13a3ffd..77c63f4 100644 --- a/code-coverage/pom.xml +++ b/code-coverage/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-code-coverage</artifactId> diff --git a/compile-tools/pom.xml b/compile-tools/pom.xml index e99532b..a5c7ad1 100644 --- a/compile-tools/pom.xml +++ b/compile-tools/pom.xml @@ -22,7 +22,7 @@ <parent> <artifactId>iotdb-parent</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>client-cpp-tools</artifactId> diff --git a/compile-tools/thrift/pom.xml b/compile-tools/thrift/pom.xml index 0564f9e..9087759 100644 --- a/compile-tools/thrift/pom.xml +++ b/compile-tools/thrift/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>client-cpp-tools</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>client-cpp-tools-thrift</artifactId> diff --git a/cross-tests/pom.xml b/cross-tests/pom.xml index 0d8cd64..e377150 100644 --- a/cross-tests/pom.xml +++ b/cross-tests/pom.xml @@ -23,7 +23,7 @@ <parent> <artifactId>iotdb-parent</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cross-tests</artifactId> diff --git a/distribution/pom.xml b/distribution/pom.xml index e94433a..43b5ac1 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-distribution</artifactId> diff --git a/docs/Development/VoteRelease.md b/docs/Development/VoteRelease.md index 2bef55e..b6243b9 100644 --- a/docs/Development/VoteRelease.md +++ b/docs/Development/VoteRelease.md @@ -88,11 +88,11 @@ mvn -B apache-rat:check * Verify signatures and hashes ``` -gpg2 --verify apache-iotdb-0.9.0-incubating-source-release.zip.asc apache-iotdb-0.9.0-incubating-source-release.zip +gpg2 --verify apache-iotdb-0.12.0-source-release.zip.asc apache-iotdb-0.12.0-source-release.zip appear Good Singnature -shasum -a512 apache-iotdb-0.9.0-incubating-source-release.zip +shasum -a512 apache-iotdb-0.12.0-source-release.zip Compared with the corresponding .sha512, the same is fine. ``` @@ -114,11 +114,11 @@ Should end up all SUCCESS * Verify signatures and hashes ``` -gpg2 --verify apache-iotdb-0.9.0-incubating-bin.zip.asc apache-iotdb-0.9.0-incubating-bin.zip +gpg2 --verify apache-iotdb-0.12.0-bin.zip.asc apache-iotdb-0.12.0-bin.zip appear Good Singnature -shasum -a512 apache-iotdb-0.9.0-incubating-bin.zip +shasum -a512 apache-iotdb-0.12.0-bin.zip Compared with the corresponding .sha512, the same is fine. ``` diff --git a/docs/SystemDesign/TsFile/Format.md b/docs/SystemDesign/TsFile/Format.md index 8189151..41a3ca1 100644 --- a/docs/SystemDesign/TsFile/Format.md +++ b/docs/SystemDesign/TsFile/Format.md @@ -246,7 +246,7 @@ Congratulations! You have finished the journey of discovering TsFile. #### 1.3.1 IoTDB Data Directory Overview Tool -After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.10.0\tools\tsfileToolSet` directory. +After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet` directory. Command: @@ -265,7 +265,7 @@ For Linux or MacOs: An example on Windows: ``` -D:\iotdb\server\target\iotdb-server-0.12.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data +D:\iotdb\server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data |```````````````````````` Starting Printing the IoTDB Data Directory Overview |```````````````````````` @@ -297,7 +297,7 @@ TsFile data dir num:1 #### 1.3.2 TsFileResource Print Tool -After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.10.0\tools\tsfileToolSet` directory. +After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet` directory. Command: @@ -316,7 +316,7 @@ For Linux or MacOs: An example on Windows: ```shell -D:\iotdb\server\target\iotdb-server-0.10.0\tools\tsfileToolSet>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle +D:\iotdb\server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle |```````````````````````` Starting Printing the TsFileResources |```````````````````````` @@ -328,7 +328,7 @@ analyzing the resource file finished. #### 1.3.3 TsFile Sketch Tool -After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.10.0\tools\tsfileToolSet` directory. +After building the server, the startup script of this tool will appear under the `server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet` directory. Command: @@ -351,7 +351,7 @@ For Linux or MacOs: An example on macOS: ```shell -/iotdb/server/target/iotdb-server-0.10.0/tools/tsfileToolSet$ ./print-tsfile-sketch.sh test.tsfile +/iotdb/server/target/iotdb-server-0.13.0-SNAPSHOT/tools/tsfileToolSet$ ./print-tsfile-sketch.sh test.tsfile |```````````````````````` Starting Printing the TsFile Sketch |```````````````````````` diff --git a/docs/UserGuide/API/Programming-Java-Native-API.md b/docs/UserGuide/API/Programming-Java-Native-API.md index 686e956..dcc6958 100644 --- a/docs/UserGuide/API/Programming-Java-Native-API.md +++ b/docs/UserGuide/API/Programming-Java-Native-API.md @@ -42,7 +42,7 @@ In root directory: <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-session</artifactId> - <version>0.12.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> ``` diff --git a/docs/UserGuide/API/Programming-Python-Native-API.md b/docs/UserGuide/API/Programming-Python-Native-API.md index 7c9c6b6..0fb0b4b 100644 --- a/docs/UserGuide/API/Programming-Python-Native-API.md +++ b/docs/UserGuide/API/Programming-Python-Native-API.md @@ -69,7 +69,7 @@ class MyTestCase(unittest.TestCase): session.close() ``` -by default it will load the image `apache/iotdb:latest`, if you want a specific version just pass it like e.g. `IoTDBContainer("apache/iotdb:0.10.0")` to get version `0.10.0` running. +by default it will load the image `apache/iotdb:latest`, if you want a specific version just pass it like e.g. `IoTDBContainer("apache/iotdb:0.12.0")` to get version `0.12.0` running. diff --git a/docs/UserGuide/API/Programming-TsFile-API.md b/docs/UserGuide/API/Programming-TsFile-API.md index ee09cbb..00ad837 100644 --- a/docs/UserGuide/API/Programming-TsFile-API.md +++ b/docs/UserGuide/API/Programming-TsFile-API.md @@ -62,7 +62,7 @@ Then, all the jars are in folder named `target/`. Import `target/tsfile-0.12.0-j <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>tsfile</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` @@ -96,7 +96,7 @@ Then, all the jars are in folder named `target/`. Import `target/tsfile-0.12.0-j <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>tsfile</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` diff --git a/docs/UserGuide/Advanced-Features/Triggers.md b/docs/UserGuide/Advanced-Features/Triggers.md index 2c63cbb..eb72538 100644 --- a/docs/UserGuide/Advanced-Features/Triggers.md +++ b/docs/UserGuide/Advanced-Features/Triggers.md @@ -41,7 +41,7 @@ You need to implement the trigger by writing a Java class, where the dependency <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>provided</scope> </dependency> ``` @@ -163,7 +163,7 @@ Registering a trigger can be carried out as follows: 2. Pack the project into a JAR package. If you use Maven to manage the project, you can refer to the above Maven project example. -3. Put the JAR package in the directory `iotdb-server-0.12.0-SNAPSHOT/ext/trigger` (or a subdirectory of `iotdb-server-0.12.0-SNAPSHOT/ext/trigger`). +3. Put the JAR package in the directory `iotdb-server-0.13.0-SNAPSHOT/ext/trigger` (or a subdirectory of `iotdb-server-0.13.0-SNAPSHOT/ext/trigger`). > You can specify the root path to load the trigger JAR packages by modifying the `trigger_root_dir` in the configuration file. @@ -709,7 +709,7 @@ You can try this trigger by following the steps below: CREATE TIMESERIES root.sg1.d1.s1 WITH DATATYPE=DOUBLE, ENCODING=PLAIN; ``` -* Place the JAR (`trigger-example-0.12.0-SNAPSHOT.jar`) of **trigger-example** in the directory `iotdb-server-0.12.0-SNAPSHOT/ext/trigger` (or in a subdirectory of `iotdb-server-0.12.0-SNAPSHOT/ext/trigger`) +* Place the JAR (`trigger-example-0.13.0-SNAPSHOT.jar`) of **trigger-example** in the directory `iotdb-server-0.13.0-SNAPSHOT/ext/trigger` (or in a subdirectory of `iotdb-server-0.13.0-SNAPSHOT/ext/trigger`) > You can specify the root path to load the trigger JAR package by modifying the `trigger_root_dir` in the configuration file. diff --git a/docs/UserGuide/Advanced-Features/UDF-User-Defined-Function.md b/docs/UserGuide/Advanced-Features/UDF-User-Defined-Function.md index 53e0113..5ed6539 100644 --- a/docs/UserGuide/Advanced-Features/UDF-User-Defined-Function.md +++ b/docs/UserGuide/Advanced-Features/UDF-User-Defined-Function.md @@ -48,7 +48,7 @@ If you use [Maven](http://search.maven.org/), you can search for the development <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>provided</scope> </dependency> ``` @@ -388,7 +388,7 @@ The process of registering a UDF in IoTDB is as follows: 1. Implement a complete UDF class, assuming the full class name of this class is `org.apache.iotdb.udf.ExampleUDTF`. 2. Package your project into a JAR. If you use Maven to manage your project, you can refer to the Maven project example above. -3. Place the JAR package in the directory `iotdb-server-0.12.0-SNAPSHOT/ext/udf` or in a subdirectory of `iotdb-server-0.12.0-SNAPSHOT/ext/udf`. +3. Place the JAR package in the directory `iotdb-server-0.13.0-SNAPSHOT/ext/udf` or in a subdirectory of `iotdb-server-0.13.0-SNAPSHOT/ext/udf`. > You can specify the root path for the UDF to load the Jar by modifying the 'udf_root_dir' in the configuration file. 4. Register the UDF with the SQL statement, assuming that the name given to the UDF is `example`. @@ -581,7 +581,7 @@ Q1: **How to modify the registered UDF? ** A1: Assume that the name of the UDF is `example` and the full class name is `org.apache.iotdb.udf.ExampleUDTF`, which is introduced by `example.jar`. 1. Unload the registered function by executing `DROP FUNCTION example`. -2. Delete `example.jar` under `iotdb-server-0.12.0-SNAPSHOT/ext/udf`. +2. Delete `example.jar` under `iotdb-server-0.13.0-SNAPSHOT/ext/udf`. 3. Modify the logic in `org.apache.iotdb.udf.ExampleUDTF` and repackage it. The name of the JAR package can still be `example.jar`. -4. Upload the new JAR package to `iotdb-server-0.12.0-SNAPSHOT/ext/udf`. +4. Upload the new JAR package to `iotdb-server-0.13.0-SNAPSHOT/ext/udf`. 5. Load the new UDF by executing `CREATE FUNCTION example AS "org.apache.iotdb.udf.ExampleUDTF"`. diff --git a/docs/UserGuide/Appendix/SQL-Reference.md b/docs/UserGuide/Appendix/SQL-Reference.md index 442b8dd..f315c73 100644 --- a/docs/UserGuide/Appendix/SQL-Reference.md +++ b/docs/UserGuide/Appendix/SQL-Reference.md @@ -40,7 +40,7 @@ show version +---------------+ | version| +---------------+ -|0.12.0-SNAPSHOT| +|0.13.0-SNAPSHOT| +---------------+ Total line number = 1 It costs 0.417s diff --git a/docs/UserGuide/Cluster/Cluster-Setup-Example.md b/docs/UserGuide/Cluster/Cluster-Setup-Example.md index 43aa65a..d3c2613 100644 --- a/docs/UserGuide/Cluster/Cluster-Setup-Example.md +++ b/docs/UserGuide/Cluster/Cluster-Setup-Example.md @@ -26,9 +26,9 @@ PLEASE BE DELIBERATE IF YOU RUN IT IN PRODUCT ENVIRONMENT.__ ``` mvn clean package -DskipTests chmod -R 777 ./cluster/target/ -nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node1conf/ >/dev/null 2>&1 & -nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node2conf/ >/dev/null 2>&1 & -nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node3conf/ >/dev/null 2>&1 & +nohup ./cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node1conf/ >/dev/null 2>&1 & +nohup ./cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node2conf/ >/dev/null 2>&1 & +nohup ./cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node3conf/ >/dev/null 2>&1 & ``` ## Example of distributed scaffolding for 3 nodes and 3 replicas @@ -40,7 +40,7 @@ The operation steps are as follows: 1. Make sure ports 6667, 9003, 9004, 40010, 40011 and 31999 are open on all three nodes. 2. Use 'mvn clean package -pl cluster -am -DskipTests' to compile the distributed module. -3. Send the generated package (iotdb-cluster-0.12.0-SNAPSHOT) to all servers. +3. Send the generated package (iotdb-cluster-0.13.0-SNAPSHOT) to all servers. 4. Configure all nodes' seed_nodes in conf/iotdb-cluster.properties as "A_private_ip:9003,B_private_ip:9003,C_private_ip:9003" 5. Configure the internal_ip in conf/iotdb-cluster.properties to be the private_ip of each node. 6. Configure rpc_address in conf/iotdb-engine.properties to be the public_ip of each node. diff --git a/docs/UserGuide/Ecosystem Integration/Hive TsFile.md b/docs/UserGuide/Ecosystem Integration/Hive TsFile.md index dbb3b26..7151625 100644 --- a/docs/UserGuide/Ecosystem Integration/Hive TsFile.md +++ b/docs/UserGuide/Ecosystem Integration/Hive TsFile.md @@ -35,7 +35,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.10.0+`| +| `2.7.3` or `3.2.1` | `2.3.6` or `3.1.2` | `1.8` | `0.13.0-SNAPSHOT`| > Note: For more information about how to download and use TsFile, please see > the following link: https://github.com/apache/iotdb/tree/master/tsfile. @@ -60,10 +60,10 @@ After downloading the code of iotdb from <https://github.com/apache/iotdb>, you Then in hive, use the command of `add jar XXX` to add the dependency. For example: ``` -hive> add jar /Users/hive/iotdb/hive-connector/target/hive-connector-0.10.0-jar-with-dependencies.jar; +hive> add jar /Users/hive/iotdb/hive-connector/target/hive-connector-0.13.0-SNAPSHOT-jar-with-dependencies.jar; -Added [/Users/hive/iotdb/hive-connector/target/hive-connector-0.10.0-jar-with-dependencies.jar] to class path -Added resources: [/Users/hive/iotdb/hive-connector/target/hive-connector-0.10.0-jar-with-dependencies.jar] +Added [/Users/hive/iotdb/hive-connector/target/hive-connector-0.13.0-SNAPSHOT-jar-with-dependencies.jar] to class path +Added resources: [/Users/hive/iotdb/hive-connector/target/hive-connector-0.13.0-SNAPSHOT-jar-with-dependencies.jar] ``` diff --git a/docs/UserGuide/Ecosystem Integration/MapReduce TsFile.md b/docs/UserGuide/Ecosystem Integration/MapReduce TsFile.md index d46be9c..09d47fb 100644 --- a/docs/UserGuide/Ecosystem Integration/MapReduce TsFile.md +++ b/docs/UserGuide/Ecosystem Integration/MapReduce TsFile.md @@ -34,7 +34,7 @@ With this connector, you can |Hadoop Version | Java Version | TsFile Version| |:---:|:---:|:---:| -| `2.7.3` | `1.8` | `0.10.0+`| +| `2.7.3` | `1.8` | `0.13.0-SNAPSHOT`| > Note: For more information about how to download and use TsFile, please see > the following link: https://github.com/apache/iotdb/tree/master/tsfile. diff --git a/docs/UserGuide/Ecosystem Integration/Spark IoTDB.md b/docs/UserGuide/Ecosystem Integration/Spark IoTDB.md index 863d323..2b8507d 100644 --- a/docs/UserGuide/Ecosystem Integration/Spark IoTDB.md +++ b/docs/UserGuide/Ecosystem Integration/Spark IoTDB.md @@ -25,7 +25,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.12.0`| +| `2.4.3` | `2.11` | `1.8` | `0.13.0-SNAPSHOT`| > Currently we only support spark version 2.4.3 and there are some known issue > on 2.4.7, do no use it @@ -41,7 +41,7 @@ mvn clean scala:compile compile install <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>spark-iotdb-connector</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` @@ -49,7 +49,7 @@ mvn clean scala:compile compile install #### spark-shell user guide ``` -spark-shell --jars spark-iotdb-connector-0.12.0.jar,iotdb-jdbc-0.12.0-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.13.0-SNAPSHOT.jar,iotdb-jdbc-0.13.0-SNAPSHOT-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ @@ -63,7 +63,7 @@ df.show() To partition rdd: ``` -spark-shell --jars spark-iotdb-connector-0.12.0.jar,iotdb-jdbc-0.12.0-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.13.0-SNAPSHOT.jar,iotdb-jdbc-0.13.0-SNAPSHOT-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ diff --git a/docs/UserGuide/Ecosystem Integration/Spark TsFile.md b/docs/UserGuide/Ecosystem Integration/Spark TsFile.md index 2c240b9..9c6cfe7 100644 --- a/docs/UserGuide/Ecosystem Integration/Spark TsFile.md +++ b/docs/UserGuide/Ecosystem Integration/Spark TsFile.md @@ -35,7 +35,7 @@ With this connector, you can |Spark Version | Scala Version | Java Version | TsFile | |:-------------: | :-------------: | :------------: |:------------: | -| `2.4.3` | `2.11.8` | `1.8` | `0.12.0`| +| `2.4.3` | `2.11.8` | `1.8` | `0.13.0-SNAPSHOT`| > Note: For more information about how to download and use TsFile, please see > the following link: https://github.com/apache/iotdb/tree/master/tsfile. > Currently we only support spark version 2.4.3 and there are some known issue > on 2.4.7, do no use it diff --git a/docs/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md b/docs/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md index 685cb8d..a599ed9 100644 --- a/docs/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md +++ b/docs/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md @@ -35,7 +35,7 @@ Zeppelin is a web-based notebook that enables interactive data analytics. You ca | IoTDB Version | Java Version | Zeppelin Version | | :-----------: | :-----------: | :--------------: | -| >=`0.12.0-SNAPSHOT` | >=`1.8.0_271` | `>=0.9.0` | +| >=`0.12.0` | >=`1.8.0_271` | `>=0.9.0` | Install IoTDB: Reference to [IoTDB Quick Start](../QuickStart/QuickStart.html). Suppose IoTDB is placed at `$IoTDB_HOME`. diff --git a/docs/UserGuide/QuickStart/WayToGetIoTDB.md b/docs/UserGuide/QuickStart/WayToGetIoTDB.md index e32cbbb..21f0d85 100644 --- a/docs/UserGuide/QuickStart/WayToGetIoTDB.md +++ b/docs/UserGuide/QuickStart/WayToGetIoTDB.md @@ -136,7 +136,7 @@ $ start-cli.sh -h localhost -p 6667 -u root -pw root <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-jdbc</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` Some examples about how to use IoTDB with IoTDB-JDBC can be found at: https://github.com/apache/iotdb/tree/master/example/jdbc/src/main/java/org/apache/iotdb diff --git a/docs/zh/Development/VoteRelease.md b/docs/zh/Development/VoteRelease.md index 5250df3..bdf3255 100644 --- a/docs/zh/Development/VoteRelease.md +++ b/docs/zh/Development/VoteRelease.md @@ -88,11 +88,11 @@ mvn -B apache-rat:check * 验证签名和哈希值 ``` -gpg2 --verify apache-iotdb-0.9.0-incubating-source-release.zip.asc apache-iotdb-0.9.0-incubating-source-release.zip +gpg2 --verify apache-iotdb-0.12.0-source-release.zip.asc apache-iotdb-0.12.0-source-release.zip 出现 Good Singnature -shasum -a512 apache-iotdb-0.9.0-incubating-source-release.zip +shasum -a512 apache-iotdb-0.12.0-source-release.zip 和对应的 .sha512 对比,一样就可以。 ``` @@ -114,11 +114,11 @@ mvnw.sh install * 验证签名和哈希值 ``` -gpg2 --verify apache-iotdb-0.9.0-incubating-bin.zip.asc apache-iotdb-0.9.0-incubating-bin.zip +gpg2 --verify apache-iotdb-0.12.0-bin.zip.asc apache-iotdb-0.12.0-bin.zip 出现 Good Singnature -shasum -a512 apache-iotdb-0.9.0-incubating-bin.zip +shasum -a512 apache-iotdb-0.12.0-bin.zip 和对应的 .sha512 对比,一样就可以。 ``` diff --git a/docs/zh/SystemDesign/TsFile/Format.md b/docs/zh/SystemDesign/TsFile/Format.md index 607fcc5..31c0019 100644 --- a/docs/zh/SystemDesign/TsFile/Format.md +++ b/docs/zh/SystemDesign/TsFile/Format.md @@ -246,7 +246,7 @@ TsFile 是以6个字节的magic string (`TsFile`) 作为结束. #### 1.3.1 IoTDB Data Directory 快速概览工具 -该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.10.0\tools\tsfileToolSet` 目录中。 +该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet` 目录中。 使用方式: @@ -265,7 +265,7 @@ For Linux or MacOs: 在Windows系统中的示例: ``` -D:\iotdb\server\target\iotdb-server-0.12.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data +D:\iotdb\server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet>.\print-iotdb-data-dir.bat D:\\data\data |```````````````````````` Starting Printing the IoTDB Data Directory Overview |```````````````````````` @@ -295,7 +295,7 @@ TsFile data dir num:1 #### 1.3.2 TsFileResource 打印工具 -该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.10.0\tools\tsfileToolSet` 目录中。 +该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet` 目录中。 使用方式: @@ -314,7 +314,7 @@ Linux or MacOs: 在Windows系统中的示例: ``` -D:\iotdb\server\target\iotdb-server-0.10.0\tools\tsfileToolSet>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle +D:\iotdb\server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet>.\print-tsfile-resource-files.bat D:\data\data\sequence\root.vehicle |```````````````````````` Starting Printing the TsFileResources |```````````````````````` @@ -326,7 +326,7 @@ analyzing the resource file finished. #### 1.3.3 TsFile 描述工具 -该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.10.0\tools\tsfileToolSet` 目录中。 +该工具的启动脚本会在编译 server 之后生成至 `server\target\iotdb-server-0.13.0-SNAPSHOT\tools\tsfileToolSet` 目录中。 使用方式: @@ -349,7 +349,7 @@ Linux or MacOs: 在mac系统中的示例: ``` -/iotdb/server/target/iotdb-server-0.10.0/tools/tsfileToolSet$ ./print-tsfile-sketch.sh test.tsfile +/iotdb/server/target/iotdb-server-0.13.0-SNAPSHOT/tools/tsfileToolSet$ ./print-tsfile-sketch.sh test.tsfile |```````````````````````` Starting Printing the TsFile Sketch |```````````````````````` diff --git a/docs/zh/UserGuide/API/Programming-JDBC.md b/docs/zh/UserGuide/API/Programming-JDBC.md index 395259f..ed25d90 100644 --- a/docs/zh/UserGuide/API/Programming-JDBC.md +++ b/docs/zh/UserGuide/API/Programming-JDBC.md @@ -44,7 +44,7 @@ mvn clean install -pl jdbc -am -Dmaven.test.skip=true <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-jdbc</artifactId> - <version>0.12.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> ``` diff --git a/docs/zh/UserGuide/API/Programming-Java-Native-API.md b/docs/zh/UserGuide/API/Programming-Java-Native-API.md index 694c6c1..fec6cfe 100644 --- a/docs/zh/UserGuide/API/Programming-Java-Native-API.md +++ b/docs/zh/UserGuide/API/Programming-Java-Native-API.md @@ -45,7 +45,7 @@ mvn clean install -pl session -am -Dmaven.test.skip=true <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-session</artifactId> - <version>0.12.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> ``` diff --git a/docs/zh/UserGuide/API/Programming-Python-Native-API.md b/docs/zh/UserGuide/API/Programming-Python-Native-API.md index b5bb058..1bcf436 100644 --- a/docs/zh/UserGuide/API/Programming-Python-Native-API.md +++ b/docs/zh/UserGuide/API/Programming-Python-Native-API.md @@ -70,7 +70,7 @@ class MyTestCase(unittest.TestCase): session.close() ``` -默认情况下,它会拉取最新的IoTDB镜像 `apache/iotdb:latest`进行测试,如果您想指定待测IoTDB的版本,您只需要将版本信息像这样声明:`IoTDBContainer("apache/iotdb:0.10.0")`,此时,您就会得到一个`0.10.0`版本的IoTDB实例。 +默认情况下,它会拉取最新的IoTDB镜像 `apache/iotdb:latest`进行测试,如果您想指定待测IoTDB的版本,您只需要将版本信息像这样声明:`IoTDBContainer("apache/iotdb:0.12.0")`,此时,您就会得到一个`0.12.0`版本的IoTDB实例。 diff --git a/docs/zh/UserGuide/API/Programming-TsFile-API.md b/docs/zh/UserGuide/API/Programming-TsFile-API.md index 53a08bc..bfcfab8 100644 --- a/docs/zh/UserGuide/API/Programming-TsFile-API.md +++ b/docs/zh/UserGuide/API/Programming-TsFile-API.md @@ -38,7 +38,7 @@ cd tsfile/ mvn clean package -Dmaven.test.skip=true ``` -命令执行完成之后,所有的 jar 包都可以从 `target/` 目录下找到。之后您可以在自己的工程中导入 `target/tsfile-0.12.0-SNAPSHOT.jar`. +命令执行完成之后,所有的 jar 包都可以从 `target/` 目录下找到。之后您可以在自己的工程中导入 `target/tsfile-0.13.0-SNAPSHOT.jar`. * 使用 Maven 依赖: @@ -95,7 +95,7 @@ mvn clean install -Dmaven.test.skip=true <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>tsfile</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` diff --git a/docs/zh/UserGuide/Advanced-Features/Triggers.md b/docs/zh/UserGuide/Advanced-Features/Triggers.md index b73ab9e..501d7ad 100644 --- a/docs/zh/UserGuide/Advanced-Features/Triggers.md +++ b/docs/zh/UserGuide/Advanced-Features/Triggers.md @@ -43,7 +43,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>provided</scope> </dependency> ``` @@ -165,7 +165,7 @@ default int[] fire(long[] timestamps, int[] values) throws Exception { 2. 将项目打成JAR包,如果您使用Maven管理项目,可以参考上述Maven项目示例的写法 -3. 将JAR包放置到目录 `iotdb-server-0.12.0-SNAPSHOT/ext/trigger` (也可以是`iotdb-server-0.12.0-SNAPSHOT/ext/trigger`的子目录)下。 +3. 将JAR包放置到目录 `iotdb-server-0.13.0-SNAPSHOT/ext/trigger` (也可以是`iotdb-server-0.13.0-SNAPSHOT/ext/trigger`的子目录)下。 > 您可以通过修改配置文件中的`trigger_root_dir`来指定加载触发器JAR包的根路径。 @@ -726,7 +726,7 @@ public class TriggerExample implements Trigger { CREATE TIMESERIES root.sg1.d1.s1 WITH DATATYPE=DOUBLE, ENCODING=PLAIN; ``` -* 将 **trigger-example** 中打包好的JAR(`trigger-example-0.12.0-SNAPSHOT.jar`)放置到目录 `iotdb-server-0.12.0-SNAPSHOT/ext/trigger` (也可以是`iotdb-server-0.12.0-SNAPSHOT/ext/trigger`的子目录)下 +* 将 **trigger-example** 中打包好的JAR(`trigger-example-0.13.0-SNAPSHOT.jar`)放置到目录 `iotdb-server-0.13.0-SNAPSHOT/ext/trigger` (也可以是`iotdb-server-0.13.0-SNAPSHOT/ext/trigger`的子目录)下 > 您可以通过修改配置文件中的`trigger_root_dir`来指定加载触发器JAR包的根路径。 diff --git a/docs/zh/UserGuide/Advanced-Features/UDF-User-Defined-Function.md b/docs/zh/UserGuide/Advanced-Features/UDF-User-Defined-Function.md index 31e5b01..ee95744 100644 --- a/docs/zh/UserGuide/Advanced-Features/UDF-User-Defined-Function.md +++ b/docs/zh/UserGuide/Advanced-Features/UDF-User-Defined-Function.md @@ -48,7 +48,7 @@ IoTDB 支持两种类型的 UDF 函数,如下表所示。 <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>provided</scope> </dependency> ``` @@ -388,7 +388,7 @@ UDTF的结束方法,您可以在此方法中进行一些资源释放等的操 1. 实现一个完整的UDF类,假定这个类的全类名为`org.apache.iotdb.udf.UDTFExample` 2. 将项目打成JAR包,如果您使用Maven管理项目,可以参考上述Maven项目示例的写法 -3. 将JAR包放置到目录 `iotdb-server-0.12.0-SNAPSHOT/ext/udf` (也可以是`iotdb-server-0.12.0-SNAPSHOT/ext/udf`的子目录)下。 +3. 将JAR包放置到目录 `iotdb-server-0.13.0-SNAPSHOT/ext/udf` (也可以是`iotdb-server-0.13.0-SNAPSHOT/ext/udf`的子目录)下。 > 您可以通过修改配置文件中的`udf_root_dir`来指定UDF加载Jar的根路径。 4. 使用SQL语句注册该UDF,假定赋予该UDF的名字为`example` @@ -589,7 +589,7 @@ SHOW FUNCTIONS A1: 假设UDF的名称为`example`,全类名为`org.apache.iotdb.udf.UDTFExample`,由`example.jar`引入 1. 首先卸载已经注册的`example`函数,执行`DROP FUNCTION example` -2. 删除 `iotdb-server-0.12.0-SNAPSHOT/ext/udf` 目录下的`example.jar` +2. 删除 `iotdb-server-0.13.0-SNAPSHOT/ext/udf` 目录下的`example.jar` 3. 修改`org.apache.iotdb.udf.UDTFExample`中的逻辑,重新打包,JAR包的名字可以仍然为`example.jar` -4. 将新的JAR包上传至 `iotdb-server-0.12.0-SNAPSHOT/ext/udf` 目录下 +4. 将新的JAR包上传至 `iotdb-server-0.13.0-SNAPSHOT/ext/udf` 目录下 5. 装载新的UDF,执行`CREATE FUNCTION example AS "org.apache.iotdb.udf.UDTFExample"` diff --git a/docs/zh/UserGuide/Appendix/SQL-Reference.md b/docs/zh/UserGuide/Appendix/SQL-Reference.md index 9d5e59e..c74c338 100644 --- a/docs/zh/UserGuide/Appendix/SQL-Reference.md +++ b/docs/zh/UserGuide/Appendix/SQL-Reference.md @@ -31,7 +31,7 @@ show version +---------------+ | version| +---------------+ -|0.12.0-SNAPSHOT| +|0.13.0-SNAPSHOT| +---------------+ Total line number = 1 It costs 0.417s diff --git a/docs/zh/UserGuide/Cluster/Cluster-Setup-Example.md b/docs/zh/UserGuide/Cluster/Cluster-Setup-Example.md index 3fd72f1..5f6a6c1 100644 --- a/docs/zh/UserGuide/Cluster/Cluster-Setup-Example.md +++ b/docs/zh/UserGuide/Cluster/Cluster-Setup-Example.md @@ -25,9 +25,9 @@ __集群模式目前是测试版!请谨慎在生产环境中使用。__ ``` mvn clean package -DskipTests chmod -R 777 ./cluster/target/ -nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node1conf/ >/dev/null 2>&1 & -nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node2conf/ >/dev/null 2>&1 & -nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node3conf/ >/dev/null 2>&1 & +nohup ./cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node1conf/ >/dev/null 2>&1 & +nohup ./cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node2conf/ >/dev/null 2>&1 & +nohup ./cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/sbin/start-node.sh ./cluster/target/test-classes/node3conf/ >/dev/null 2>&1 & ``` ## 3节点3副本分布式搭建示例 @@ -39,7 +39,7 @@ nohup ./cluster/target/iotdb-cluster-0.12.0-SNAPSHOT/sbin/start-node.sh ./cluste 1. 保证三个节点的 6667, 9003, 9004, 40010, 40011 和 31999 端口是开放的。 2. 使用 `mvn clean package -pl cluster -am -DskipTests` 编译分布式模块。 -3. 将打出来的包(iotdb-cluster-0.12.0-SNAPSHOT)传到所有的服务器上。 +3. 将打出来的包(iotdb-cluster-0.13.0-SNAPSHOT)传到所有的服务器上。 4. 配置所有节点 conf/iotdb-cluster.properties 配置文件中的 seed_nodes 为 "A_private_ip:9003,B_private_ip:9003,C_private_ip:9003" 5. 配置所有节点 conf/iotdb-cluster.properties 配置文件中的 internal_ip 为各自节点的 private_ip。 6. 配置所有节点 conf/iotdb-engine.properties 配置文件中的 rpc_address 为各自节点的 public_ip。 diff --git a/docs/zh/UserGuide/Ecosystem Integration/Hive TsFile.md b/docs/zh/UserGuide/Ecosystem Integration/Hive TsFile.md index 1609e22..6031b61 100644 --- a/docs/zh/UserGuide/Ecosystem Integration/Hive TsFile.md +++ b/docs/zh/UserGuide/Ecosystem Integration/Hive TsFile.md @@ -37,7 +37,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.10.0+`| +| `2.7.3` or `3.2.1` | `2.3.6` or `3.1.2` | `1.8` | `0.13.0-SNAPSHOT+`| ### 数据类型对应关系 @@ -61,10 +61,10 @@ TsFile的Hive连接器实现了对Hive读取外部Tsfile类型的文件格式的 然后在hive的命令行中,使用`add jar XXX`命令添加依赖。例如: ```shell -hive> add jar /Users/hive/iotdb/hive-connector/target/hive-connector-0.12.0-SNAPSHOT-jar-with-dependencies.jar; +hive> add jar /Users/hive/iotdb/hive-connector/target/hive-connector-0.13.0-SNAPSHOT-jar-with-dependencies.jar; -Added [/Users/hive/iotdb/hive-connector/target/hive-connector-0.12.0-SNAPSHOT-jar-with-dependencies.jar] to class path -Added resources: [/Users/hive/iotdb/hive-connector/target/hive-connector-0.12.0-SNAPSHOT-jar-with-dependencies.jar] +Added [/Users/hive/iotdb/hive-connector/target/hive-connector-0.13.0-SNAPSHOT-jar-with-dependencies.jar] to class path +Added resources: [/Users/hive/iotdb/hive-connector/target/hive-connector-0.13.0-SNAPSHOT-jar-with-dependencies.jar] ``` diff --git a/docs/zh/UserGuide/Ecosystem Integration/MapReduce TsFile.md b/docs/zh/UserGuide/Ecosystem Integration/MapReduce TsFile.md index e64af00..945ff40 100644 --- a/docs/zh/UserGuide/Ecosystem Integration/MapReduce TsFile.md +++ b/docs/zh/UserGuide/Ecosystem Integration/MapReduce TsFile.md @@ -33,7 +33,7 @@ TsFile的Hadoop连接器实现了对Hadoop读取外部Tsfile类型的文件格 |Hadoop 版本 | Java 版本 | TsFile 版本 | |------------- | ------------ |------------ | -| `2.7.3` | `1.8` | `0.10.0+`| +| `2.7.3` | `1.8` | `0.13.0-SNAPSHOT+`| >注意:关于如何下载和使用Tsfile, 请参考以下链接: >https://github.com/apache/iotdb/tree/master/tsfile. diff --git a/docs/zh/UserGuide/Ecosystem Integration/Spark IoTDB.md b/docs/zh/UserGuide/Ecosystem Integration/Spark IoTDB.md index 6a9666c..4d7b0a9 100644 --- a/docs/zh/UserGuide/Ecosystem Integration/Spark IoTDB.md +++ b/docs/zh/UserGuide/Ecosystem Integration/Spark IoTDB.md @@ -27,7 +27,7 @@ Spark和Java所需的版本如下: | Spark Version | Scala Version | Java Version | TsFile | | ------------- | ------------- | ------------ | -------- | -| `2.4.3` | `2.11` | `1.8` | `0.12.0` | +| `2.4.3` | `2.11` | `1.8` | `0.13.0-SNAPSHOT` | ### 安装 @@ -39,14 +39,14 @@ mvn clean scala:compile compile install <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>spark-iotdb-connector</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` #### Spark-shell用户指南 ``` -spark-shell --jars spark-iotdb-connector-0.12.0.jar,iotdb-jdbc-0.12.0-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.13.0-SNAPSHOT.jar,iotdb-jdbc-0.13.0-SNAPSHOT-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ @@ -60,7 +60,7 @@ df.show() 如果要对rdd进行分区,可以执行以下操作 ``` -spark-shell --jars spark-iotdb-connector-0.12.0.jar,iotdb-jdbc-0.12.0-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.13.0-SNAPSHOT.jar,iotdb-jdbc-0.13.0-SNAPSHOT-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ diff --git a/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md b/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md index de3785d..8718855 100644 --- a/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md +++ b/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md @@ -35,7 +35,7 @@ TsFile-Spark-Connector对Tsfile类型的外部数据源实现Spark的支持。 | Spark Version | Scala Version | Java Version | TsFile | | ------------- | ------------- | ------------ | -------- | -| `2.4.3` | `2.11.8` | `1.8` | `0.12.0` | +| `2.4.3` | `2.11.8` | `1.8` | `0.13.0-SNAPSHOT` | > 注意:有关如何下载和使用TsFile的更多信息,请参见以下链接:https://github.com/apache/iotdb/tree/master/tsfile > 注意:spark版本目前仅支持2.4.3, 其他版本可能存在不适配的问题, 目前已知2.4.7的版本存在不适配的问题 diff --git a/docs/zh/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md b/docs/zh/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md index 2d41a35..8898e81 100644 --- a/docs/zh/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md +++ b/docs/zh/UserGuide/Ecosystem Integration/Zeppelin-IoTDB.md @@ -36,7 +36,7 @@ Apache Zeppelin 是一个基于网页的交互式数据分析系统。用户可 | IoTDB 版本 | Java 版本 | Zeppelin 版本 | | :--------: | :-----------: | :-----------: | -| >=`0.12.0-SNAPSHOT` | >=`1.8.0_271` | `>=0.9.0` | +| >=`0.12.0` | >=`1.8.0_271` | `>=0.9.0` | 安装 IoTDB:参考 [Quick Start](QuickStart/QuickStart.html). 假设 IoTDB 安装在 `$IoTDB_HOME`. diff --git a/docs/zh/UserGuide/QuickStart/WayToGetIoTDB.md b/docs/zh/UserGuide/QuickStart/WayToGetIoTDB.md index 4a40d60..27a7769 100644 --- a/docs/zh/UserGuide/QuickStart/WayToGetIoTDB.md +++ b/docs/zh/UserGuide/QuickStart/WayToGetIoTDB.md @@ -147,7 +147,7 @@ $ start-cli.sh -h localhost -p 6667 -u root -pw root <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-jdbc</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` 这里是一些使用 IoTDB-JDBC 连接 IoTDB 的示例: https://github.com/apache/iotdb/tree/master/example/jdbc/src/main/java/org/apache/iotdb diff --git a/example/client-cpp-example/pom.xml b/example/client-cpp-example/pom.xml index 528c701..d3bb9ba 100644 --- a/example/client-cpp-example/pom.xml +++ b/example/client-cpp-example/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>client-cpp-example</artifactId> diff --git a/example/flink/pom.xml b/example/flink/pom.xml index 31220fd..05b7fb9 100644 --- a/example/flink/pom.xml +++ b/example/flink/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>flink-example</artifactId> diff --git a/example/hadoop/pom.xml b/example/hadoop/pom.xml index 51f2ab3..e4a06db 100644 --- a/example/hadoop/pom.xml +++ b/example/hadoop/pom.xml @@ -24,17 +24,17 @@ <parent> <artifactId>iotdb-examples</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hadoop-example</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <name>hadoop-example</name> <dependencies> <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>hadoop-tsfile</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> </project> diff --git a/example/jdbc/pom.xml b/example/jdbc/pom.xml index 019d998..aaaf718 100644 --- a/example/jdbc/pom.xml +++ b/example/jdbc/pom.xml @@ -23,7 +23,7 @@ <parent> <artifactId>iotdb-examples</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jdbc-example</artifactId> diff --git a/example/kafka/pom.xml b/example/kafka/pom.xml index 886c5ac..19564a0 100644 --- a/example/kafka/pom.xml +++ b/example/kafka/pom.xml @@ -24,12 +24,12 @@ <!-- you need to add the following content if you remove the parent pom. <groupId>org.apache.iotdb.example</groupId> <artifactId>kafka-example</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> --> <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>kafka-example</artifactId> diff --git a/example/kafka/readme.md b/example/kafka/readme.md index d65aa17..21fa3d8 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.10.0 +IoTDB: 0.13.0-SNAPSHOT Kafka: 0.8.2.0 ### Dependencies with Maven @@ -39,7 +39,7 @@ Kafka: 0.8.2.0 <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-jdbc</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> ``` diff --git a/example/mqtt/pom.xml b/example/mqtt/pom.xml index 04a97f1..a07fad7 100644 --- a/example/mqtt/pom.xml +++ b/example/mqtt/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>mqtt-example</artifactId> diff --git a/example/pom.xml b/example/pom.xml index 588fc7c..8d09e08 100644 --- a/example/pom.xml +++ b/example/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <packaging>pom</packaging> diff --git a/example/pulsar/pom.xml b/example/pulsar/pom.xml index f20ce92..bb1a9fc 100644 --- a/example/pulsar/pom.xml +++ b/example/pulsar/pom.xml @@ -23,7 +23,7 @@ <parent> <artifactId>iotdb-examples</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/example/rocketmq/pom.xml b/example/rocketmq/pom.xml index d4bb60d..d3cb119 100644 --- a/example/rocketmq/pom.xml +++ b/example/rocketmq/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>rocketmq-example</artifactId> diff --git a/example/rocketmq/readme.md b/example/rocketmq/readme.md index f342d89..2198dad 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.10.0 +IoTDB: 0.13.0-SNAPSHOT RocketMQ: 4.4.0 ### Dependencies with Maven @@ -55,7 +55,7 @@ RocketMQ: 4.4.0 <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-session</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.rocketmq</groupId> diff --git a/example/session/pom.xml b/example/session/pom.xml index 6fd056b..18de9bd 100644 --- a/example/session/pom.xml +++ b/example/session/pom.xml @@ -23,7 +23,7 @@ <parent> <artifactId>iotdb-examples</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>client-example</artifactId> diff --git a/example/trigger/pom.xml b/example/trigger/pom.xml index 8701de2..9d82b97 100644 --- a/example/trigger/pom.xml +++ b/example/trigger/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>trigger-example</artifactId> @@ -32,7 +32,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> diff --git a/example/tsfile/pom.xml b/example/tsfile/pom.xml index 3dfaf1e..13a53a9 100644 --- a/example/tsfile/pom.xml +++ b/example/tsfile/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>tsfile-example</artifactId> diff --git a/example/tsfile/readme.md b/example/tsfile/readme.md index 46408e1..557bda7 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. <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>tsfile</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> ``` diff --git a/example/udf/pom.xml b/example/udf/pom.xml index 7ec17e7..5bb6712 100644 --- a/example/udf/pom.xml +++ b/example/udf/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-examples</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>udf-example</artifactId> @@ -32,7 +32,7 @@ <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-server</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> diff --git a/flink-iotdb-connector/pom.xml b/flink-iotdb-connector/pom.xml index 8c1e280..39c9d90 100644 --- a/flink-iotdb-connector/pom.xml +++ b/flink-iotdb-connector/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>flink-iotdb-connector</artifactId> diff --git a/flink-tsfile-connector/pom.xml b/flink-tsfile-connector/pom.xml index f4437e6..aee76b0 100644 --- a/flink-tsfile-connector/pom.xml +++ b/flink-tsfile-connector/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>flink-tsfile-connector</artifactId> diff --git a/grafana/pom.xml b/grafana/pom.xml index a24ba06..d535c50 100644 --- a/grafana/pom.xml +++ b/grafana/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <!--parent> diff --git a/hadoop/README.md b/hadoop/README.md index 1c4ba18..2621039 100644 --- a/hadoop/README.md +++ b/hadoop/README.md @@ -47,7 +47,7 @@ With this connector, you can |Hadoop Version | Java Version | TsFile Version| |------------- | ------------ |------------ | -| `2.7.3` | `1.8` | `0.10.0`| +| `2.7.3` | `1.8` | `0.13.0-SNAPSHOT`| > 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/hadoop/pom.xml b/hadoop/pom.xml index 776e377..09d3c4d 100644 --- a/hadoop/pom.xml +++ b/hadoop/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.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.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> diff --git a/hive-connector/pom.xml b/hive-connector/pom.xml index 5afd8da..a7053ae 100644 --- a/hive-connector/pom.xml +++ b/hive-connector/pom.xml @@ -24,11 +24,11 @@ <parent> <artifactId>iotdb-parent</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hive-connector</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.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.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.hive</groupId> diff --git a/jdbc/README.md b/jdbc/README.md index 1847071..bb47d38 100644 --- a/jdbc/README.md +++ b/jdbc/README.md @@ -47,7 +47,7 @@ mvn clean install -pl jdbc -am -Dmaven.test.skip=true <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-jdbc</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> </dependencies> ``` @@ -255,7 +255,7 @@ Put the iotdb-jdbc jars into your maven repository: `mvn install -DskipTests -pl iotdb-jdbc -am` In your Karaf client shell: -feature:repo-add mvn:org.apache.iotdb/iotdb-jdbc/0.10.0-SNPASHOT/xml/features +feature:repo-add mvn:org.apache.iotdb/iotdb-jdbc/0.13.0-SNAPSHOT/xml/features NOTE: that you must install JDBC first and then iotdb-feature diff --git a/jdbc/pom.xml b/jdbc/pom.xml index dd17752..63f60b6 100644 --- a/jdbc/pom.xml +++ b/jdbc/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-jdbc</artifactId> diff --git a/pom.xml b/pom.xml index 8fabc43..c0df5d4 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ </parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Apache IoTDB Project Parent POM</name> <description>This is the top level project that builds, packages the tsfile, iotdb engine, jdbc, and integration libs.</description> diff --git a/server/pom.xml b/server/pom.xml index c30b7d0..5b7abba 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-server</artifactId> diff --git a/service-rpc/pom.xml b/service-rpc/pom.xml index f517fdd..73aa2ce 100644 --- a/service-rpc/pom.xml +++ b/service-rpc/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>service-rpc</artifactId> diff --git a/session/pom.xml b/session/pom.xml index e1330c5..b79f4a3 100644 --- a/session/pom.xml +++ b/session/pom.xml @@ -23,7 +23,7 @@ <parent> <artifactId>iotdb-parent</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/site/pom.xml b/site/pom.xml index 5b4a2e8..20013f7 100644 --- a/site/pom.xml +++ b/site/pom.xml @@ -23,7 +23,7 @@ <parent> <artifactId>iotdb-parent</artifactId> <groupId>org.apache.iotdb</groupId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/spark-iotdb-connector/Readme.md b/spark-iotdb-connector/Readme.md index 1b29530..277f97e 100644 --- a/spark-iotdb-connector/Readme.md +++ b/spark-iotdb-connector/Readme.md @@ -25,7 +25,7 @@ The versions required for Spark and Java are as follow: | Spark Version | Scala Version | Java Version | TsFile | | ------------- | ------------- | ------------ |------------ | -| `>= 2.2` | `2.11` | `1.8` | `0.10.0`| +| `>= 2.2` | `2.11` | `1.8` | `0.13.0-SNAPSHOT`| ## install @@ -38,7 +38,7 @@ mvn clean scala:compile compile install <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>spark-iotdb-connector</artifactId> - <version>0.10.0</version> + <version>0.13.0-SNAPSHOT</version> </dependency> ``` @@ -46,7 +46,7 @@ mvn clean scala:compile compile install # 2. spark-shell user guide ``` -spark-shell --jars spark-iotdb-connector-0.10.0.jar,iotdb-jdbc-0.10.0-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.13.0-SNAPSHOT.jar,iotdb-jdbc-0.13.0-SNAPSHOT-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ @@ -59,7 +59,7 @@ df.show() ### if you want to partition your rdd, you can do as following ``` -spark-shell --jars spark-iotdb-connector-0.10.0.jar,iotdb-jdbc-0.10.0-jar-with-dependencies.jar +spark-shell --jars spark-iotdb-connector-0.13.0-SNAPSHOT.jar,iotdb-jdbc-0.13.0-SNAPSHOT-jar-with-dependencies.jar import org.apache.iotdb.spark.db._ diff --git a/spark-iotdb-connector/pom.xml b/spark-iotdb-connector/pom.xml index 56489a4..1f278bd 100644 --- a/spark-iotdb-connector/pom.xml +++ b/spark-iotdb-connector/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>spark-iotdb-connector</artifactId> diff --git a/spark-tsfile/README.md b/spark-tsfile/README.md index f41ad03..1deae48 100644 --- a/spark-tsfile/README.md +++ b/spark-tsfile/README.md @@ -33,7 +33,7 @@ With this connector, you can |Spark Version | Scala Version | Java Version | TsFile | |------------- | ------------- | ------------ |------------ | -| `>= 2.2` | `2.11` | `1.8` | `0.10.0`| +| `>= 2.2` | `2.11` | `1.8` | `0.13.0-SNAPSHOT`| > 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. @@ -43,7 +43,7 @@ With this connector, you can Start Spark with TsFile-Spark-Connector in local mode: ``` -./<spark-shell-path> --jars tsfile-spark-connector.jar,tsfile-0.10.0-jar-with-dependencies.jar +./<spark-shell-path> --jars tsfile-spark-connector.jar,tsfile-0.13.0-SNAPSHOT-jar-with-dependencies.jar ``` Note: @@ -58,7 +58,7 @@ Note: Start Spark with TsFile-Spark-Connector in distributed mode (That is, the spark cluster is connected by spark-shell): ``` -. /<spark-shell-path> --jars tsfile-spark-connector.jar,tsfile-0.10.0-jar-with-dependencies.jar --master spark://ip:7077 +. /<spark-shell-path> --jars tsfile-spark-connector.jar,tsfile-0.13.0-SNAPSHOT-jar-with-dependencies.jar --master spark://ip:7077 ``` Note: diff --git a/spark-tsfile/pom.xml b/spark-tsfile/pom.xml index f1cdf8d..bad7249 100644 --- a/spark-tsfile/pom.xml +++ b/spark-tsfile/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.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.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.spark</groupId> diff --git a/thrift-cluster/pom.xml b/thrift-cluster/pom.xml index f4c4eea..c482190 100644 --- a/thrift-cluster/pom.xml +++ b/thrift-cluster/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-thrift-cluster</artifactId> diff --git a/thrift-sync/pom.xml b/thrift-sync/pom.xml index 111b3c9..5c1a696 100644 --- a/thrift-sync/pom.xml +++ b/thrift-sync/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-thrift-sync</artifactId> diff --git a/thrift/pom.xml b/thrift/pom.xml index 7a0e2c6..89d0146 100644 --- a/thrift/pom.xml +++ b/thrift/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>iotdb-thrift</artifactId> diff --git a/tsfile/README.md b/tsfile/README.md index 8fd876b..fa5a31d 100644 --- a/tsfile/README.md +++ b/tsfile/README.md @@ -25,7 +25,7 @@ ___________ ___________.__.__ \__ ___/____\_ _____/|__| | ____ | | / ___/| __) | | | _/ __ \ | | \___ \ | \ | | |_\ ___/ - |____|/____ >\___ / |__|____/\___ > version 0.10.0 + |____|/____ >\___ / |__|____/\___ > version 0.13.0-SNAPSHOT \/ \/ \/ </pre> ## Abstract diff --git a/tsfile/pom.xml b/tsfile/pom.xml index b5e1370..d48a9ac 100644 --- a/tsfile/pom.xml +++ b/tsfile/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>tsfile</artifactId> diff --git a/zeppelin-interpreter/pom.xml b/zeppelin-interpreter/pom.xml index fd7a718..6d51058 100644 --- a/zeppelin-interpreter/pom.xml +++ b/zeppelin-interpreter/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-parent</artifactId> - <version>0.12.0-SNAPSHOT</version> + <version>0.13.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>zeppelin-iotdb</artifactId>
