You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by sp...@apache.org on 2023/02/13 02:11:23 UTC

[iotdb] branch feature/performance_overview updated (49d7bc73ce -> 73d4b10a8c)

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

spricoder pushed a change to branch feature/performance_overview
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from 49d7bc73ce Merge branch 'remote-master' into remote/feature/performance_overview
     add adf55e896e [IOTDB-4209] Use .pst to accelerate recovery in SchemaFile mode  (#7995)
     add 73d4b10a8c Merge branch 'remote-master' into remote/feature/performance_overview

No new revisions were added by this update.

Summary of changes:
 .../apache/iotdb/db/metadata/MetadataConstant.java |   1 +
 .../{IDeserializer.java => MLogDescription.java}   |  40 ++++++--
 ...ISerializer.java => MLogDescriptionReader.java} |  33 ++++---
 .../db/metadata/logfile/MLogDescriptionWriter.java |  53 ++++++++++
 .../iotdb/db/metadata/logfile/SchemaLogReader.java |   5 +
 .../iotdb/db/metadata/logfile/SchemaLogWriter.java |   5 +-
 .../db/metadata/mtree/MTreeBelowSGCachedImpl.java  |  26 ++++-
 .../db/metadata/mtree/store/CachedMTreeStore.java  |  16 ++-
 .../mtree/store/disk/schemafile/SchemaFile.java    |   8 +-
 .../schemaregion/SchemaRegionSchemaFileImpl.java   | 110 +++++++++++++++------
 .../iotdb/db/metadata/mtree/MTreeBelowSGTest.java  |  12 ++-
 11 files changed, 244 insertions(+), 65 deletions(-)
 copy server/src/main/java/org/apache/iotdb/db/metadata/logfile/{IDeserializer.java => MLogDescription.java} (50%)
 copy server/src/main/java/org/apache/iotdb/db/metadata/logfile/{ISerializer.java => MLogDescriptionReader.java} (56%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/metadata/logfile/MLogDescriptionWriter.java