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/23 16:41:43 UTC

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

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 547a4dc  merge cluster
     new 456ca8e  fix a bug of pertition query plans
     new 54fdd8b  fix some serve bugs and change read resource lock to count
     new 28a3d71  add ut of query remote data
     new c644ce1  fix some serve bugs and finish ut
     new 6871ca0  fix some serve bugs and finish ut

The 1808 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                                    |   2 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |   2 +-
 .../cluster/qp/executor/AbstractQPExecutor.java    |   5 +
 .../ClusterExecutorWithoutTimeGenerator.java       |  45 +-
 .../ClusterRpcSingleQueryManager.java              |   6 +-
 .../querynode/ClusterLocalQueryManager.java        |  18 +-
 .../querynode/ClusterLocalSingleQueryManager.java  |  44 +-
 .../querynode/IClusterLocalQueryManager.java       |   9 +
 .../coordinatornode/ClusterSelectSeriesReader.java |   8 +-
 .../querynode/ClusterBatchReaderByTimestamp.java   |  10 +-
 .../ClusterBatchReaderWithoutTimeGenerator.java    |  10 +-
 .../querynode/ClusterFilterSeriesBatchReader.java  |   9 +-
 .../cluster/query/utils/ClusterRpcReaderUtils.java |   5 +-
 .../iotdb/cluster/query/utils/ExpressionUtils.java |   6 +-
 .../query/utils/QueryPlanPartitionUtils.java       |   8 +-
 .../querydata/QuerySeriesDataSyncProcessor.java    |  10 +-
 .../QuerySeriesDataByTimestampRequest.java         |  19 +-
 .../request/querydata/QuerySeriesDataRequest.java  |   2 +-
 .../iotdb/cluster/utils/QPExecutorUtils.java       |  34 +-
 .../org/apache/iotdb/cluster/utils/RaftUtils.java  |  20 +-
 .../iotdb/cluster/utils/hash/PhysicalNode.java     |  16 +-
 .../iotdb/cluster/query/ClusterQueryTest.java      | 550 +++++++++++++++++++++
 .../query/manager/ClusterLocalManagerTest.java     | 373 ++++++++------
 .../query/manager/ClusterRpcManagerTest.java       |  40 +-
 .../cluster/query/utils/ExpressionUtilsTest.java   |  16 +-
 .../query/utils/QueryPlanPartitionUtilsTest.java   |  16 +-
 .../java/org/apache/iotdb/cluster/utils/Utils.java |  27 +
 iotdb/iotdb/conf/iotdb-cluster.properties          |   2 +-
 .../iotdb/db/engine/filenode/FileNodeManager.java  |   8 +-
 .../db/engine/filenode/FileNodeProcessor.java      | 136 ++---
 .../db/exception/FileNodeManagerException.java     |   4 +
 .../db/query/control/QueryResourceManager.java     |  10 +-
 .../EngineExecutorWithoutTimeGenerator.java        |  41 +-
 .../executor/ExecutorWithoutTimeGenerator.java     |  80 +++
 .../org/apache/iotdb/tsfile/read/common/Field.java |  22 +
 35 files changed, 1211 insertions(+), 402 deletions(-)
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/query/ClusterQueryTest.java
 create mode 100644 iotdb/src/main/java/org/apache/iotdb/db/query/executor/ExecutorWithoutTimeGenerator.java