You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by lt...@apache.org on 2019/05/22 13:02:00 UTC

[incubator-iotdb] branch cluster_framework updated (cde6fac -> 08f4e55)

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

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


    from cde6fac  add cluster framework and nonquery module and query metadata module
     add 47b581c  format codes
     add c7e9083  modify VirtualNode and remove groupIdMapNodeCache in Router
     add 08f4e55  replace set error msg with add error msg

No new revisions were added by this update.

Summary of changes:
 License                                            |  2 +-
 NOTICE                                             |  4 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |  2 +-
 .../iotdb/cluster/config/ClusterDescriptor.java    |  3 +
 .../org/apache/iotdb/cluster/entity/Server.java    |  9 ++-
 .../cluster/entity/raft/DataStateMachine.java      | 20 +++++--
 .../cluster/qp/executor/AbstractQPExecutor.java    |  4 +-
 .../cluster/qp/executor/NonQueryExecutor.java      | 53 ++++++++--------
 .../cluster/qp/executor/QueryMetadataExecutor.java | 10 ++--
 .../apache/iotdb/cluster/qp/task/BatchQPTask.java  | 70 +++++++++-------------
 .../qp/task/{QueryTask.java => DataQueryTask.java} |  4 +-
 .../org/apache/iotdb/cluster/qp/task/QPTask.java   |  2 +-
 .../apache/iotdb/cluster/qp/task/SingleQPTask.java |  4 +-
 .../iotdb/cluster/rpc/raft/NodeAsClient.java       |  4 +-
 .../rpc/raft/impl/RaftNodeAsClientManager.java     | 16 ++---
 .../nonquery/DataGroupNonQueryAsyncProcessor.java  |  4 +-
 .../querymetadata/QueryMetadataAsyncProcessor.java |  2 +-
 .../nonquery/DataGroupNonQueryResponse.java        | 12 ++++
 .../cluster/service/TSServiceClusterImpl.java      | 51 +++++++++-------
 .../iotdb/cluster/utils/QPExecutorUtils.java       |  4 +-
 .../org/apache/iotdb/cluster/utils/RaftUtils.java  |  6 +-
 .../iotdb/cluster/utils/hash/PhysicalNode.java     | 14 +++++
 .../apache/iotdb/cluster/utils/hash/Router.java    | 34 +++--------
 .../iotdb/cluster/utils/hash/VirtualNode.java      | 18 +++---
 .../iotdb/cluster/utils/hash/MD5HashTest.java      |  7 +--
 .../iotdb/cluster/utils/hash/PhysicalNodeTest.java |  4 +-
 .../iotdb/cluster/utils/hash/RouterTest.java       | 27 ++++-----
 docs/Documentation/Frequently asked questions.md   |  2 +-
 docs/Documentation/QuickStart.md                   |  2 +-
 docs/Documentation/UserGuideV0.7.0/2-Concept.md    |  2 +-
 .../UserGuideV0.7.0/3-Operation Manual.md          | 64 ++++++++++----------
 .../UserGuideV0.7.0/5-SQL Documentation.md         | 12 ++--
 iotdb/iotdb/conf/iotdb-cluster.properties          |  4 ++
 .../db/qp/executor/IQueryProcessExecutor.java      |  1 -
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 19 ++++--
 jdbc/LICENSE                                       |  2 +-
 licenses/CDDL License 1.1                          |  4 +-
 licenses/Eclipse Public License 1.0 (EPL-1.0)      |  2 +-
 .../Eclipse Public License version 2.0 (EPL-2.0)   |  4 +-
 service-rpc/src/main/thrift/rpc.thrift             | 10 ++--
 40 files changed, 271 insertions(+), 247 deletions(-)
 rename cluster/src/main/java/org/apache/iotdb/cluster/qp/task/{QueryTask.java => DataQueryTask.java} (94%)