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/23 15:28:54 UTC

[incubator-iotdb] branch mem_control updated (725b023 -> bb4384e)

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

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


    from 725b023  Add MManager.collectSchemaDataTypeNum and related tests
     add a3df582  Fix recover bug with vm (#1529)
     add 5a5b12a  Add file list on disk  (#1541)
     add 75ad80c  [IOTDB-811] fix upgrading mlog many times when upgrading system.properties crashed (#1543)
     add 9f24a93  improve recover process
     add 8b916e8  fix bug
     add 86f6a67  add docs for recover process
     add b2b6d32  Add tracing part of FileLists doc (#1547)
     add 6eb95cc  fix deadlock after showing latest timeseries
     add 0b788bb  update new range delete doc
     add a172691  Merge remote-tracking branch 'origin/master' into mem_control
     add bb4384e  Merge master

No new revisions were added by this update.

Summary of changes:
 .../SystemDesign/StorageEngine/DataManipulation.md |  12 +-
 docs/SystemDesign/StorageEngine/Recover.md         | 106 ++++++++++++++
 .../SystemDesign/StorageEngine/DataManipulation.md |  12 +-
 docs/zh/SystemDesign/StorageEngine/FileLists.md    | 156 ++++++++++++++++++++
 docs/zh/SystemDesign/StorageEngine/Recover.md      | 107 ++++++++++++++
 .../apache/iotdb/hadoop/fileSystem/HDFSOutput.java |   4 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  13 +-
 .../org/apache/iotdb/db/engine/StorageEngine.java  |   2 +-
 .../iotdb/db/engine/flush/MemTableFlushTask.java   |  14 +-
 .../iotdb/db/engine/flush/VmLogAnalyzer.java       |   3 +-
 .../org/apache/iotdb/db/engine/flush/VmLogger.java |   6 +
 .../engine/storagegroup/StorageGroupProcessor.java |  85 +++++++----
 .../db/engine/storagegroup/TsFileProcessor.java    | 154 ++++++++++----------
 .../org/apache/iotdb/db/metadata/MLogWriter.java   |   8 --
 .../org/apache/iotdb/db/metadata/MManager.java     | 132 +++++++++--------
 .../java/org/apache/iotdb/db/metadata/MTree.java   |  39 +++--
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  27 ++--
 .../db/query/dataset/ShowTimeseriesDataSet.java    |   7 +-
 .../java/org/apache/iotdb/db/utils/QueryUtils.java |   5 +-
 .../writelog/recover/TsFileRecoverPerformer.java   | 160 ++++++++++-----------
 .../db/engine/memtable/MemTableFlushTaskTest.java  |   3 +-
 .../recover/RecoverResourceFromReaderTest.java     |  16 +--
 .../db/writelog/recover/SeqTsFileRecoverTest.java  |  45 +++---
 .../writelog/recover/UnseqTsFileRecoverTest.java   |  16 ++-
 site/src/main/.vuepress/config.js                  |   7 +-
 .../iotdb/tsfile/read/TsFileCheckStatus.java       |   1 -
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |  79 +++++-----
 .../tsfile/write/writer/LocalTsFileOutput.java     |   4 +-
 .../write/writer/RestorableTsFileIOWriter.java     |  30 ++--
 .../iotdb/tsfile/write/writer/TsFileOutput.java    |   4 +-
 .../write/writer/RestorableTsFileIOWriterTest.java |  19 ++-
 31 files changed, 863 insertions(+), 413 deletions(-)
 create mode 100644 docs/SystemDesign/StorageEngine/Recover.md
 create mode 100644 docs/zh/SystemDesign/StorageEngine/FileLists.md
 create mode 100644 docs/zh/SystemDesign/StorageEngine/Recover.md