You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by su...@apache.org on 2020/07/08 15:25:29 UTC

[incubator-iotdb] branch hot_compaction updated (42ce3f6 -> 95de1f8)

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

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


    from 42ce3f6  Fix conflicts
     add 36d524d  [IOTDB-627]Support range deletion for timeseries (#1400)
     add 95de1f8  Merge remote-tracking branch 'origin/master' into hot_compaction2

No new revisions were added by this update.

Summary of changes:
 .../DML Data Manipulation Language.md              | 28 ++++++-
 docs/UserGuide/Operation Manual/SQL Reference.md   |  9 ++-
 .../DML Data Manipulation Language.md              | 25 +++++-
 .../zh/UserGuide/Operation Manual/SQL Reference.md |  9 ++-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  4 +-
 .../apache/iotdb/db/engine/cache/ChunkCache.java   |  8 +-
 .../iotdb/db/engine/memtable/AbstractMemTable.java | 23 +++---
 .../apache/iotdb/db/engine/memtable/IMemTable.java |  5 +-
 .../db/engine/memtable/IWritableMemChunk.java      | 10 +--
 .../iotdb/db/engine/memtable/WritableMemChunk.java |  9 +--
 .../db/engine/merge/task/MergeMultiChunkTask.java  |  3 +-
 .../iotdb/db/engine/modification/Deletion.java     | 47 ++++++++---
 .../io/LocalTextModificationAccessor.java          | 20 +++--
 .../engine/storagegroup/StorageGroupProcessor.java | 63 +++++++++++----
 .../db/engine/storagegroup/TsFileProcessor.java    |  3 +-
 .../org/apache/iotdb/db/monitor/StatMonitor.java   |  2 +-
 .../apache/iotdb/db/qp/executor/IPlanExecutor.java |  5 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  9 ++-
 .../db/qp/logical/crud/DeleteDataOperator.java     | 18 +++--
 .../iotdb/db/qp/physical/crud/DeletePlan.java      | 49 ++++++++----
 .../iotdb/db/qp/strategy/LogicalGenerator.java     | 59 +++++++++++---
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  3 +-
 .../java/org/apache/iotdb/db/utils/QueryUtils.java | 40 ++++------
 .../iotdb/db/utils/datastructure/TVList.java       | 35 +++++---
 .../iotdb/db/writelog/recover/LogReplayer.java     |  8 +-
 .../iotdb/db/engine/merge/MergeTaskTest.java       |  2 +-
 .../engine/modification/DeletionFileNodeTest.java  | 28 +++----
 .../db/engine/modification/DeletionQueryTest.java  | 52 ++++++------
 .../engine/modification/ModificationFileTest.java  |  8 +-
 .../storagegroup/StorageGroupProcessorTest.java    |  2 +-
 .../iotdb/db/integration/IoTDBDeletionIT.java      | 37 +++++++++
 .../apache/iotdb/db/integration/IoTDBLastIT.java   | 52 ++++++++++++
 .../iotdb/db/qp/plan/LogicalPlanSmallTest.java     | 93 ++++++++++++++++++++++
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  | 11 +++
 .../apache/iotdb/db/writelog/PerformanceTest.java  |  4 +-
 .../iotdb/db/writelog/WriteLogNodeManagerTest.java |  2 +-
 .../apache/iotdb/db/writelog/WriteLogNodeTest.java |  8 +-
 .../iotdb/db/writelog/io/LogWriterReaderTest.java  |  2 +-
 .../db/writelog/io/MultiFileLogReaderTest.java     |  2 +-
 .../iotdb/db/writelog/recover/LogReplayerTest.java |  6 +-
 .../java/org/apache/iotdb/session/Session.java     | 19 ++++-
 thrift/rpc-changelist.md                           |  4 +-
 thrift/src/main/thrift/rpc.thrift                  |  3 +-
 .../iotdb/tsfile/file/metadata/ChunkMetadata.java  | 46 ++++++++---
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |  2 +-
 .../org/apache/iotdb/tsfile/read/common/Chunk.java | 17 ++--
 .../apache/iotdb/tsfile/read/common/TimeRange.java | 51 +++++++++++-
 .../read/controller/CachedChunkLoaderImpl.java     |  2 +-
 .../tsfile/read/reader/chunk/ChunkReader.java      | 24 +++---
 .../read/reader/chunk/ChunkReaderByTimestamp.java  |  4 +-
 .../iotdb/tsfile/read/reader/page/PageReader.java  | 41 +++++++---
 .../tsfile/v1/file/metadata/ChunkMetadataV1.java   | 11 +--
 .../tsfile/v1/read/TsFileSequenceReaderForV1.java  |  2 +-
 .../iotdb/tsfile/read/common/TimeRangeTest.java    | 70 ++++++++++++++++
 .../iotdb/tsfile/read/reader/PageReaderTest.java   | 55 +++++++++++++
 56 files changed, 890 insertions(+), 266 deletions(-)