You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xu...@apache.org on 2020/12/14 01:08:13 UTC

[iotdb] branch virtual_partition_2_merge updated (4c261f0 -> 7d3349e)

This is an automated email from the ASF dual-hosted git repository.

xuekaifeng pushed a change to branch virtual_partition_2_merge
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 4c261f0  Merge branch 'master' of https://github.com/apache/iotdb into virtual_partition_2_merge
     add 27c28a1  Change variable names makes the logic easier to understand
     add 4fc4cf2  Merge pull request #2232 from liutaohua/add_comment
     add 3982645  Fix the dash in the data model doc (#2234)
     add baa317e  Fix the spelling of storage group in the server file list doc (#2235)
     add db49dae  [IOTDB-1049] Fix Nullpointer exception and a delete bug in Last query (#2229)
     add 678c2bf  [To rel/0.11] Fix sync failed bug (#2241) (#2242)
     add baa557d  Remove useless escaped characters (#2207)
     add 425d985  Clarify the data type when type conversion in batch mode (#2208)
     add 20fabd3  add examples for setting fetchSize of session and JDBC (#2244)
     add 69dbcfa  update download links (#2249)
     add ca24aaf  fix error in site/config.js.
     add 5a1ba81  [IoTDB-1051] Fix duplicate declaration of plugin :maven-assembly-plugin in hadoop/pom.xml
     add 61db87b  fix start-node script
     add c8bc153  fix
     add d7e291c  Merge pull request #2223 from LebronAl/cluster_fix_auto_create_schema_bug
     add 9e2a8f7  fix
     add 2455b69  Merge pull request #2252 from LebronAl/cluster_dispatcher_build_request_optimize
     add 2bd067b  [To rel/0.11] Remove unnecessary dependency of com.clearspring.analytics:stream and fastutil (#2254) (#2255)
     add f2e7413  getObject should not return String for all data types (#2247)
     add 9431e53  [IOTDB-1050] Fix Count timeserise column name is wrong (#2238)
     add 0288b76  Eliminate boost build logs to avoid exceeding maximum log length
     add bc02a56  disable travis for cpp module
     add 3c266e0  enable deploying the website automatically
     add a98eca4  fix tools declaration in Jenkinsfile
     add 6a5e527  [IOTDB-507] Add zeppelin-interpreter module  (#2096)
     add 316f30d  fix doc error
     add c666c3a  Merge pull request #2260 from neuyilan/apache_master_1213_fix_docs
     new 7d3349e  Merge branch 'master' of https://github.com/apache/iotdb into virtual_partition_2_merge

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |   2 +-
 Jenkinsfile                                        |  29 +-
 LICENSE-binary                                     |   2 -
 .../java/org/apache/iotdb/cli/AbstractCli.java     | 110 +-----
 cli/src/main/java/org/apache/iotdb/cli/Cli.java    |   5 +-
 cli/src/main/java/org/apache/iotdb/cli/WinCli.java |   5 +-
 .../main/java/org/apache/iotdb/tool/ExportCsv.java |   4 +-
 .../java/org/apache/iotdb/cli/AbstractCliIT.java   |  35 +-
 cluster/src/assembly/resources/sbin/add-node.bat   |   6 +-
 cluster/src/assembly/resources/sbin/add-node.sh    |   6 +-
 cluster/src/assembly/resources/sbin/start-node.bat |   8 +-
 cluster/src/assembly/resources/sbin/start-node.sh  |   6 +-
 .../java/org/apache/iotdb/cluster/ClusterMain.java |   9 +-
 .../apache/iotdb/cluster/log/LogDispatcher.java    |   4 +-
 .../cluster/log/applier/AsyncDataLogApplier.java   |   4 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   |  21 +-
 .../iotdb/cluster/query/LocalQueryExecutor.java    |   2 +-
 .../cluster/server/member/MetaGroupMember.java     |   4 +-
 compile-tools/boost/pom.xml                        |   4 +
 docs/Download/README.md                            |  16 +-
 docs/UserGuide/Server/Cluster Setup.md             |  10 +-
 docs/UserGuide/Server/ServerFileList.md            |   3 +-
 docs/zh/Download/README.md                         |  16 +-
 .../Concept/Data Model and Terminology.md          |   3 +-
 docs/zh/UserGuide/Server/Cluster Setup.md          |  14 +-
 docs/zh/UserGuide/Server/ServerFileList.md         |   3 +-
 .../main/java/org/apache/iotdb/JDBCExample.java    |   4 +
 .../main/java/org/apache/iotdb/SessionExample.java |   3 +
 hadoop/pom.xml                                     |  20 --
 pom.xml                                            |  12 +-
 server/pom.xml                                     |   5 -
 .../apache/iotdb/db/index/common/IndexUtils.java   |   4 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |   2 +-
 .../iotdb/db/qp/physical/crud/LastQueryPlan.java   |   2 +-
 .../db/query/dataset/ShowTimeseriesDataSet.java    |   7 +-
 .../iotdb/db/query/executor/LastQueryExecutor.java |   9 +-
 .../db/query/executor/fill/LastPointReader.java    |   3 +-
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |   4 +-
 .../apache/iotdb/db/integration/IOTDBInsertIT.java |   4 +-
 .../iotdb/db/integration/IoTDBAggregationIT.java   |  12 +-
 .../iotdb/db/integration/IoTDBDeletionIT.java      |  14 +-
 .../apache/iotdb/db/integration/IoTDBLastIT.java   |  75 ++--
 .../iotdb/db/integration/IoTDBRecoverIT.java       |  14 +-
 .../db/integration/IoTDBRecoverUnclosedIT.java     |  12 +-
 .../iotdb/db/integration/IoTDBResultSetIT.java     |   4 +-
 .../iotdb/db/query/dataset/ListDataSetTest.java    | 126 +++++++
 .../iotdb/db/query/dataset/SingleDataSetTest.java  | 133 ++++++++
 .../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java |  43 ++-
 .../main/java/org/apache/iotdb/rpc/RpcUtils.java   |  90 +++++
 .../java/org/apache/iotdb/session/Session.java     |   6 +
 .../iotdb/session/IoTDBSessionComplexIT.java       |   2 +-
 .../iotdb/session/IoTDBSessionIteratorIT.java      | 178 ++++++++--
 site/README-zh.md                                  |   2 +-
 site/README.md                                     |   2 +-
 site/src/main/.vuepress/config.js                  |   4 +-
 spark-iotdb-connector/pom.xml                      |   6 -
 .../apache/iotdb/spark/db/EnvironmentUtils.java    |  12 +-
 .../tsfile/read/common/DescReadWriteBatchData.java |  24 +-
 zeppelin-interpreter/IoTDB-Zeppelin-Demo.zpln      | 377 +++++++++++++++++++++
 zeppelin-interpreter/README.md                     | 186 ++++++++++
 zeppelin-interpreter/pom.xml                       | 126 +++++++
 .../apache/zeppelin/iotdb/IoTDBInterpreter.java    | 213 ++++++++++++
 .../src/main/resources/interpreter-setting.json    |  70 ++++
 .../zeppelin/iotdb/IoTDBInterpreterTest.java       | 273 +++++++++++++++
 64 files changed, 2045 insertions(+), 369 deletions(-)
 create mode 100644 server/src/test/java/org/apache/iotdb/db/query/dataset/ListDataSetTest.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/query/dataset/SingleDataSetTest.java
 create mode 100644 zeppelin-interpreter/IoTDB-Zeppelin-Demo.zpln
 create mode 100644 zeppelin-interpreter/README.md
 create mode 100644 zeppelin-interpreter/pom.xml
 create mode 100644 zeppelin-interpreter/src/main/java/org/apache/zeppelin/iotdb/IoTDBInterpreter.java
 create mode 100644 zeppelin-interpreter/src/main/resources/interpreter-setting.json
 create mode 100644 zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java


[iotdb] 01/01: Merge branch 'master' of https://github.com/apache/iotdb into virtual_partition_2_merge

Posted by xu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xuekaifeng pushed a commit to branch virtual_partition_2_merge
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 7d3349e58122993bddc4e21e1facdc1510e486cb
Merge: 4c261f0 c666c3a
Author: 151250176 <15...@smail.nju.edu.cn>
AuthorDate: Mon Dec 14 09:07:46 2020 +0800

    Merge branch 'master' of https://github.com/apache/iotdb into virtual_partition_2_merge

 .travis.yml                                        |   2 +-
 Jenkinsfile                                        |  29 +-
 LICENSE-binary                                     |   2 -
 .../java/org/apache/iotdb/cli/AbstractCli.java     | 110 +-----
 cli/src/main/java/org/apache/iotdb/cli/Cli.java    |   5 +-
 cli/src/main/java/org/apache/iotdb/cli/WinCli.java |   5 +-
 .../main/java/org/apache/iotdb/tool/ExportCsv.java |   4 +-
 .../java/org/apache/iotdb/cli/AbstractCliIT.java   |  35 +-
 cluster/src/assembly/resources/sbin/add-node.bat   |   6 +-
 cluster/src/assembly/resources/sbin/add-node.sh    |   6 +-
 cluster/src/assembly/resources/sbin/start-node.bat |   8 +-
 cluster/src/assembly/resources/sbin/start-node.sh  |   6 +-
 .../java/org/apache/iotdb/cluster/ClusterMain.java |   9 +-
 .../apache/iotdb/cluster/log/LogDispatcher.java    |   4 +-
 .../cluster/log/applier/AsyncDataLogApplier.java   |   4 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   |  21 +-
 .../iotdb/cluster/query/LocalQueryExecutor.java    |   2 +-
 .../cluster/server/member/MetaGroupMember.java     |   4 +-
 compile-tools/boost/pom.xml                        |   4 +
 docs/Download/README.md                            |  16 +-
 docs/UserGuide/Server/Cluster Setup.md             |  10 +-
 docs/UserGuide/Server/ServerFileList.md            |   3 +-
 docs/zh/Download/README.md                         |  16 +-
 .../Concept/Data Model and Terminology.md          |   3 +-
 docs/zh/UserGuide/Server/Cluster Setup.md          |  14 +-
 docs/zh/UserGuide/Server/ServerFileList.md         |   3 +-
 .../main/java/org/apache/iotdb/JDBCExample.java    |   4 +
 .../main/java/org/apache/iotdb/SessionExample.java |   3 +
 hadoop/pom.xml                                     |  20 --
 pom.xml                                            |  12 +-
 server/pom.xml                                     |   5 -
 .../apache/iotdb/db/index/common/IndexUtils.java   |   4 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |   2 +-
 .../iotdb/db/qp/physical/crud/LastQueryPlan.java   |   2 +-
 .../db/query/dataset/ShowTimeseriesDataSet.java    |   7 +-
 .../iotdb/db/query/executor/LastQueryExecutor.java |   9 +-
 .../db/query/executor/fill/LastPointReader.java    |   3 +-
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |   4 +-
 .../apache/iotdb/db/integration/IOTDBInsertIT.java |   4 +-
 .../iotdb/db/integration/IoTDBAggregationIT.java   |  12 +-
 .../iotdb/db/integration/IoTDBDeletionIT.java      |  14 +-
 .../apache/iotdb/db/integration/IoTDBLastIT.java   |  75 ++--
 .../iotdb/db/integration/IoTDBRecoverIT.java       |  14 +-
 .../db/integration/IoTDBRecoverUnclosedIT.java     |  12 +-
 .../iotdb/db/integration/IoTDBResultSetIT.java     |   4 +-
 .../iotdb/db/query/dataset/ListDataSetTest.java    | 126 +++++++
 .../iotdb/db/query/dataset/SingleDataSetTest.java  | 133 ++++++++
 .../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java |  43 ++-
 .../main/java/org/apache/iotdb/rpc/RpcUtils.java   |  90 +++++
 .../java/org/apache/iotdb/session/Session.java     |   6 +
 .../iotdb/session/IoTDBSessionComplexIT.java       |   2 +-
 .../iotdb/session/IoTDBSessionIteratorIT.java      | 178 ++++++++--
 site/README-zh.md                                  |   2 +-
 site/README.md                                     |   2 +-
 site/src/main/.vuepress/config.js                  |   4 +-
 spark-iotdb-connector/pom.xml                      |   6 -
 .../apache/iotdb/spark/db/EnvironmentUtils.java    |  12 +-
 .../tsfile/read/common/DescReadWriteBatchData.java |  24 +-
 zeppelin-interpreter/IoTDB-Zeppelin-Demo.zpln      | 377 +++++++++++++++++++++
 zeppelin-interpreter/README.md                     | 186 ++++++++++
 zeppelin-interpreter/pom.xml                       | 126 +++++++
 .../apache/zeppelin/iotdb/IoTDBInterpreter.java    | 213 ++++++++++++
 .../src/main/resources/interpreter-setting.json    |  70 ++++
 .../zeppelin/iotdb/IoTDBInterpreterTest.java       | 273 +++++++++++++++
 64 files changed, 2045 insertions(+), 369 deletions(-)