This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a change to branch tag_manage
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.
from 431d6a4 basically ok
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 050ede8 resolve conflicts
No new revisions were added by this update.
Summary of changes:
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/Development/Committer.md | 78 ++++++++++++
docs/zh/Development/ContributeGuide.md | 14 ++-
docs/zh/Development/HowToCommit.md | 139 +++++++++++++++++++++
.../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 +-
.../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 | 35 ++++--
.../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 | 41 ++----
.../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 | 5 +
.../org/apache/iotdb/session/pool/SessionPool.java | 54 ++++++++
site/src/main/.vuepress/config.js | 6 +-
35 files changed, 822 insertions(+), 351 deletions(-)
create mode 100644 docs/Development/Committer.md
create mode 100644 docs/Development/HowToCommit.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