You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2020/04/23 05:03:47 UTC

[incubator-iotdb] branch cluster_new updated (43ca0f6 -> 5b3a9c9)

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

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


    from 43ca0f6  [IOTDB-348] Add DeleteTimeseriesPlan (#1078)
     add 11949b8  Add modified flag in Metadatas and remove canUseStatistics() (#1083)
     add 726a8cf  change to fullPath (#1087)
     add 27d38b1  update merge selector to filter close
     add 4b27789  update close
     add c94907f  update merge selector to filter close (#1086)
     add ebc3f23  [IOTDB-612] add limit&offset to show timeseries (#1085)
     add 7492966  Fix OOM (#1074)
     add e92f24e  Upgrade mlog (#1081)
     add 2a07df1  Merge branch 'master' into cluster_new
     add 5b3a9c9  Merge branch 'cluster_new' of https://github.com/apache/incubator-iotdb into cluster_new

No new revisions were added by this update.

Summary of changes:
 .../iotdb/cluster/query/ClusterPlanExecutor.java   | 13 +++-
 .../iotdb/cluster/query/ClusterPlanRouter.java     | 36 ----------
 .../iotdb/cluster/server/DataClusterServer.java    |  4 +-
 .../cluster/server/member/DataGroupMember.java     | 10 +--
 .../cluster/partition/SlotPartitionTableTest.java  | 40 -----------
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |  8 ++-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  2 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java | 17 +++++
 .../db/conf/adapter/IoTDBConfigDynamicAdapter.java | 24 ++++---
 .../iotdb/db/engine/memtable/AbstractMemTable.java |  4 +-
 .../db/engine/merge/manage/MergeResource.java      |  2 +-
 .../merge/selector/MaxFileMergeFileSelector.java   | 62 +++++++++-------
 .../engine/storagegroup/StorageGroupProcessor.java |  1 -
 .../db/engine/storagegroup/TsFileProcessor.java    |  2 +
 .../org/apache/iotdb/db/metadata/MLogWriter.java   | 52 +++++++++++++-
 .../org/apache/iotdb/db/metadata/MManager.java     | 84 ++++++++++++++--------
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  | 13 ++--
 .../db/qp/logical/sys/ShowTimeSeriesOperator.java  | 18 +++++
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |  7 +-
 .../db/qp/physical/sys/ShowTimeSeriesPlan.java     | 53 +++++++++++++-
 .../iotdb/db/qp/strategy/LogicalGenerator.java     | 28 +++++---
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  5 +-
 .../iotdb/db/query/executor/LastQueryExecutor.java |  2 +-
 .../apache/iotdb/db/query/fill/PreviousFill.java   |  8 +--
 .../iotdb/db/query/reader/chunk/MemPageReader.java |  5 ++
 .../query/reader/series/SeriesAggregateReader.java | 19 ++---
 .../iotdb/db/query/reader/series/SeriesReader.java | 29 +++++++-
 .../org/apache/iotdb/db/utils/FileLoaderUtils.java |  2 +-
 .../java/org/apache/iotdb/db/utils/MemUtils.java   | 48 +++++++------
 .../java/org/apache/iotdb/db/utils/QueryUtils.java |  2 +-
 .../db/writelog/node/ExclusiveWriteLogNode.java    |  8 ++-
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   | 25 +++++++
 .../apache/iotdb/db/integration/IoTDBTagIT.java    | 41 +++++++++++
 .../iotdb/db/qp/plan/LogicalPlanSmallTest.java     | 15 ++--
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  | 11 +++
 service-rpc/src/main/thrift/cluster.thrift         |  2 +-
 .../iotdb/tsfile/file/header/PageHeader.java       |  9 +++
 .../iotdb/tsfile/file/metadata/ChunkMetadata.java  | 10 +++
 .../tsfile/file/metadata/TimeseriesMetadata.java   | 11 ++-
 .../file/metadata/statistics/Statistics.java       | 13 ----
 .../iotdb/tsfile/read/reader/IPageReader.java      |  2 +
 .../tsfile/read/reader/chunk/ChunkReader.java      |  2 +-
 .../iotdb/tsfile/read/reader/page/PageReader.java  |  5 ++
 43 files changed, 505 insertions(+), 249 deletions(-)