You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2020/04/20 03:11:48 UTC

[incubator-iotdb] branch cluster_new updated (3e4b531 -> 92ecbf2)

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

jiangtian pushed a change to branch cluster_new
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from 3e4b531  fix tests and integrate schema cache
     add 1c6cde5  add insert multiple batch in SessionPool
     add 57fc486  fix init MManager bug (#1058)
     add 8b96ae3  fix concurrent auto set storage group bug (#1061)
     add c865099  add howtocommit,committer,modify ContributeGuide (#1059)
     add a0c49d5  Fix Nullpointer bug in Previous Fill (#1062)
     add 50d710b  Avoid unnecessary close file in timed merge (#1063)
     add 839089b  remove unused import in TsFileProcessor
     add 3191fc4  disable mqtt server in default config and fix rpc and sync server startup problem (#1033)
     add f06460b  Switch to use new TsFile interfaces in Last query executor (#1048)
     add f79266d  [IOTDB-573]claim the error output can be igonred in UT/ITs (#1032)
     add 97e3b6d  Add judgment and Modify level3 cannot be a keyword (#1025)
     add edb7747  update Committer zh doc
     add 6f6c5c7  [IOTDB-598] add slides and videos from 2018 to 2020 (#1068)
     add d4f2a49  [IOTDB-185]fix start-client failed on WinOS if there is blank space in the file path; let start-server.bat suport jdk12,13 etc (#1069)
     add cb00cde  add materials audio & modify mqtt (#1070)
     add 92ecbf2  Merge branch 'master' into cluster_new

No new revisions were added by this update.

Summary of changes:
 .../src/assembly/resources/sbin/start-client.bat   |   6 +-
 docs/Community/Materials.md                        |  99 +++++++++++++++
 docs/Development/Committer.md                      |  77 ++++++++++++
 docs/Development/ContributeGuide.md                |  18 ++-
 docs/Development/HowToCommit.md                    | 139 +++++++++++++++++++++
 docs/Development/VoteRelease.md                    |   4 -
 docs/UserGuide/4-Client/6-Programming - MQTT.md    |   6 +-
 docs/zh/Community/Materials.md                     |  95 ++++++++++++++
 docs/zh/Development/Committer.md                   |  78 ++++++++++++
 docs/zh/Development/ContributeGuide.md             |  14 ++-
 docs/zh/Development/HowToCommit.md                 | 139 +++++++++++++++++++++
 docs/zh/UserGuide/4-Client/6-Programming - MQTT.md |   2 +-
 .../main/java/org/apache/iotdb/JDBCExample.java    |  19 ++-
 .../main/java/org/apache/iotdb/kafka/Constant.java |  11 +-
 .../apache/iotdb/kafka/KafkaConsumerThread.java    |   2 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 .../src/assembly/resources/sbin/start-server.bat   |  11 +-
 .../db/concurrent/IoTDBThreadPoolFactory.java      |   6 +-
 .../iotdb/db/concurrent/WrappedRunnable.java       |   9 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   2 +-
 .../engine/storagegroup/StorageGroupProcessor.java |   3 +-
 .../db/engine/storagegroup/TsFileProcessor.java    |  39 +++---
 .../org/apache/iotdb/db/metadata/MManager.java     |  36 ++++--
 .../query/dataset/groupby/GroupByFillDataSet.java  |   9 +-
 .../iotdb/db/query/executor/LastQueryExecutor.java |  46 ++++---
 .../iotdb/db/query/executor/QueryRouter.java       |   2 +-
 .../apache/iotdb/db/query/fill/PreviousFill.java   |  43 ++-----
 .../org/apache/iotdb/db/service/RPCService.java    |  43 ++++---
 .../iotdb/db/service/RPCServiceEventHandler.java   |  56 ---------
 .../iotdb/db/sync/receiver/SyncServerManager.java  |  28 +++--
 .../db/sync/thrift/SyncServiceEventHandler.java    |  56 ---------
 .../org/apache/iotdb/db/utils/FileLoaderUtils.java |  44 -------
 .../db/concurrent/IoTDBThreadPoolFactoryTest.java  |  32 ++---
 .../apache/iotdb/db/integration/IoTDBFillIT.java   |  77 ++++++++++++
 .../apache/iotdb/db/integration/IoTDBLastIT.java   |  55 ++++----
 .../iotdb/db/metadata/MManagerImproveTest.java     |   4 -
 .../org/apache/iotdb/db/metadata/MTreeTest.java    |  12 ++
 server/src/test/resources/logback.xml              |   4 +
 .../org/apache/iotdb/session/pool/SessionPool.java |  54 ++++++++
 site/src/main/.vuepress/config.js                  |   8 +-
 40 files changed, 1028 insertions(+), 362 deletions(-)
 create mode 100644 docs/Community/Materials.md
 create mode 100644 docs/Development/Committer.md
 create mode 100644 docs/Development/HowToCommit.md
 create mode 100644 docs/zh/Community/Materials.md
 create mode 100644 docs/zh/Development/Committer.md
 create mode 100644 docs/zh/Development/HowToCommit.md
 delete mode 100644 server/src/main/java/org/apache/iotdb/db/service/RPCServiceEventHandler.java
 delete mode 100644 server/src/main/java/org/apache/iotdb/db/sync/thrift/SyncServiceEventHandler.java