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/04/24 08:07:15 UTC

[incubator-iotdb] branch cluster_read updated (6871ca0 -> a899ddc)

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

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


    from 6871ca0  fix some serve bugs and finish ut
     new ec5c329  fix some serve bugs
     new a899ddc  add some request and response , fix bug of cluster pom

The 1810 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:
 cluster/pom.xml                                    |   6 +-
 .../org/apache/iotdb/cluster/entity/Server.java    |   4 +
 .../executor/ClusterExecutorWithTimeGenerator.java |   7 +-
 .../ClusterRpcSingleQueryManager.java              |  86 ++++++----------
 .../manager/coordinatornode/FilterGroupEntity.java | 111 +++++++++++++++++++++
 .../IClusterRpcSingleQueryManager.java             |   7 --
 .../querynode/ClusterLocalQueryManager.java        |  16 +--
 .../querynode/ClusterLocalSingleQueryManager.java  |  27 +++--
 .../querynode/IClusterLocalQueryManager.java       |  13 +--
 .../querynode/IClusterLocalSingleQueryManager.java |  14 +--
 .../querynode/ClusterFilterSeriesBatchReader.java  |  53 ++++++----
 .../timegenerator/ClusterNodeConstructor.java      |  41 ++++++--
 .../cluster/query/utils/ClusterRpcReaderUtils.java |  62 ++++++------
 .../iotdb/cluster/query/utils/ExpressionUtils.java |  30 +++---
 .../query/utils/QueryPlanPartitionUtils.java       |  18 ++--
 ...or.java => CloseSeriesReaderSyncProcessor.java} |  17 ++--
 ...sor.java => InitSeriesReaderSyncProcessor.java} |  31 ++----
 .../QuerySeriesDataByTimestampSyncProcessor.java   |   6 +-
 .../querydata/QuerySeriesDataSyncProcessor.java    |  43 +-------
 .../{Stage.java => CloseSeriesReaderRequest.java}  |  34 ++++---
 .../request/querydata/InitSeriesReaderRequest.java |  91 +++++++++++++++++
 .../request/querydata/QuerySeriesDataRequest.java  |  59 +----------
 ...Response.java => InitSeriesReaderResponse.java} |   6 +-
 .../querydata/QuerySeriesDataResponse.java         |  17 +---
 .../iotdb/cluster/utils/QPExecutorUtils.java       |  11 ++
 .../query/manager/ClusterLocalManagerTest.java     |   6 +-
 .../query/manager/ClusterRpcManagerTest.java       |  30 +-----
 .../query/utils/QueryPlanPartitionUtilsTest.java   |  13 ++-
 28 files changed, 483 insertions(+), 376 deletions(-)
 create mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/query/manager/coordinatornode/FilterGroupEntity.java
 copy cluster/src/main/java/org/apache/iotdb/cluster/rpc/raft/processor/querydata/{QuerySeriesDataByTimestampSyncProcessor.java => CloseSeriesReaderSyncProcessor.java} (67%)
 copy cluster/src/main/java/org/apache/iotdb/cluster/rpc/raft/processor/querydata/{QuerySeriesDataSyncProcessor.java => InitSeriesReaderSyncProcessor.java} (66%)
 rename cluster/src/main/java/org/apache/iotdb/cluster/rpc/raft/request/querydata/{Stage.java => CloseSeriesReaderRequest.java} (56%)
 create mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/rpc/raft/request/querydata/InitSeriesReaderRequest.java
 copy cluster/src/main/java/org/apache/iotdb/cluster/rpc/raft/response/querydata/{QuerySeriesDataResponse.java => InitSeriesReaderResponse.java} (89%)