You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by yu...@apache.org on 2020/07/06 09:46:22 UTC

[incubator-iotdb] branch kyy updated (2a5a48e -> 9758f2f)

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

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


    from 2a5a48e  extract getMatchedPaths
     add 55d7fdc  fix dead wait in SyncServerManager and add retry
     add 830349e  Merge branch 'cluster_premerge2' into cluster_new
     add 6603dfe  add insertStringRecord rpc method (#1450)
     add 11e1f57  Fix logic of creating MTree snapshot (#1452)
     add 5f08035  [IOTDB-787] set thrift and antlr as two independent module (#1451)
     add 6f8e68d  Merge branch 'master' into cluster_premerge2
     add c4f16c4  Merge branch 'cluster_premerge2' into cluster_new
     add 9f208b7  fix thrift_max_frame_size bug && add thrift_init_buffer_size config
     add 9478426  fix instanceof insertplan
     add ffabaaa  Merge pull request #1454 from LebronAl/cluster_new_fix_thrift_config_bug
     add 0c9a99e  Merge branch 'cluster_new' of https://github.com/apache/incubator-iotdb into cluster_new
     add 03ac3ac  fix ClientMain
     add 883e869  adjust log level and fix close file deadlock
     add beb9c6f  fix method name
     add f8eaf79  fix upgrade
     add 172ab45  [IoTDB-786]refactor the thrift rpc service to reduce duplicate codes of RPC and Sync module (#1453)
     add ddd6790  Merge branch 'master' into cluster_premerge2
     add 0bbe813  Merge branch 'cluster_premerge2' into cluster_new
     add 6ecda8f  Merge remote-tracking branch 'origin/cluster_new' into kyy
     add 9758f2f  path strings

No new revisions were added by this update.

Summary of changes:
 README.md                                          |   2 +-
 README_ZH.md                                       |   2 +-
 {example/mqtt => antlr}/pom.xml                    |  28 ++-
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |   0
 client-py/compile.bat                              |   2 +-
 client-py/compile.sh                               |   2 +-
 client-py/readme.md                                |   2 +-
 client-py/src/client_example.py                    |   2 +-
 .../src/assembly/resources/conf/cluster-env.bat    |   5 +-
 .../resources/conf/iotdb-engine.properties         |   5 +-
 .../java/org/apache/iotdb/cluster/ClientMain.java  |  28 ++-
 .../iotdb/cluster/log/catchup/CatchUpTask.java     |  37 ++--
 .../iotdb/cluster/log/manage/RaftLogManager.java   |   9 +-
 .../apache/iotdb/cluster/server/ClientServer.java  |   1 +
 .../apache/iotdb/cluster/server/RaftServer.java    |   1 +
 .../cluster/server/member/MetaGroupMember.java     |   5 +-
 .../iotdb/cluster/server/member/RaftMember.java    |   6 +-
 .../cluster/log/manage/RaftLogManagerTest.java     |   2 +-
 docs/Development/ContributeGuide.md                |   6 +-
 docs/SystemDesign/Client/RPC.md                    |  11 +-
 docs/SystemDesign/QueryEngine/Planner.md           |   6 +-
 .../Client/Programming - Other Languages.md        |   2 +-
 docs/UserGuide/Server/Download.md                  |   2 +-
 docs/zh/Development/ContributeGuide.md             |   4 +-
 docs/zh/SystemDesign/Client/RPC.md                 |  12 +-
 docs/zh/SystemDesign/QueryEngine/Planner.md        |   4 +-
 .../Client/Programming - Other Languages.md        |   2 +-
 jdbc/src/main/feature/feature.xml                  |   1 +
 pom.xml                                            |   2 +
 server/pom.xml                                     |  21 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  13 ++
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   4 +
 .../engine/storagegroup/StorageGroupProcessor.java |   4 +-
 .../org/apache/iotdb/db/metadata/MManager.java     |  51 ++---
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |   8 +-
 .../db/qp/physical/crud/DeletePartitionPlan.java   |   5 +
 .../iotdb/db/qp/physical/crud/DeletePlan.java      |   9 +
 .../iotdb/db/qp/physical/crud/InsertRowPlan.java   |  25 ++-
 .../db/qp/physical/crud/InsertTabletPlan.java      |  17 ++
 .../iotdb/db/qp/physical/crud/QueryPlan.java       |  10 +
 .../iotdb/db/qp/physical/crud/UpdatePlan.java      |   9 +
 .../org/apache/iotdb/db/service/RPCService.java    | 224 +++------------------
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  88 +++++++-
 .../iotdb/db/service/thrift/ThriftService.java     | 150 ++++++++++++++
 .../db/service/thrift/ThriftServiceThread.java     | 143 +++++++++++++
 .../iotdb/db/sync/receiver/SyncServerManager.java  | 190 +++++------------
 .../receiver/SyncServerManagerMBean.java}          |   4 +-
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |   3 +-
 service-rpc/pom.xml                                | 108 +---------
 .../java/org/apache/iotdb/session/Session.java     |  63 ++----
 site/pom.xml                                       |   4 +-
 {service-rpc => thrift}/pom.xml                    |  69 +------
 {service-rpc => thrift}/rpc-changelist.md          |   0
 .../src/main/thrift/cluster.thrift                 |   0
 {service-rpc => thrift}/src/main/thrift/rpc.thrift |  26 ++-
 .../src/main/thrift/sync.thrift                    |   0
 {service-rpc => thrift}/src/pypi/README.md         |   2 +-
 {service-rpc => thrift}/src/pypi/setup.py          |   0
 .../apache/iotdb/tsfile/write/page/PageWriter.java |   4 +-
 59 files changed, 749 insertions(+), 696 deletions(-)
 copy {example/mqtt => antlr}/pom.xml (64%)
 rename {server => antlr}/src/main/antlr4/org/apache/iotdb/db/qp/strategy/SqlBase.g4 (100%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/service/thrift/ThriftService.java
 create mode 100644 server/src/main/java/org/apache/iotdb/db/service/thrift/ThriftServiceThread.java
 copy server/src/main/java/org/apache/iotdb/db/{service/RPCServiceMBean.java => sync/receiver/SyncServerManagerMBean.java} (92%)
 copy {service-rpc => thrift}/pom.xml (77%)
 rename {service-rpc => thrift}/rpc-changelist.md (100%)
 rename {service-rpc => thrift}/src/main/thrift/cluster.thrift (100%)
 rename {service-rpc => thrift}/src/main/thrift/rpc.thrift (92%)
 rename {service-rpc => thrift}/src/main/thrift/sync.thrift (100%)
 rename {service-rpc => thrift}/src/pypi/README.md (97%)
 rename {service-rpc => thrift}/src/pypi/setup.py (100%)