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/07/15 04:47:22 UTC

[incubator-iotdb] branch cluster_new updated (1b84617 -> cb60d83)

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 1b84617  add cluster node
     add ef586a1  fix tmpProperties
     add 7e628d2  [IOTDB-716] add lZ4 compress method (#1448)
     add 466a0ba  fix check properties
     add fcad569  fix check properties
     add 842dd9b  Add design documentations for new range delete (#1484)
     add a0ed2d1  Add Tracing Doc (#1485)
     add c27e51c  readme
     add 51194c1  update the first section of Data Model and Terminology
     add 3714bdd  solve hive-connector bug
     add f4b7c87  reformat code
     add d8777ed  fix sonar
     add dc9c8fc  wait all wals are replayed successfully
     add 99028b7  modify the logic to support cluster
     add 0f2f84b  use device node when update last cache
     add 05bfe1c  avoid string concat for single node version
     add f6dc9a8  Merge pull request #1474 from mychaow/master
     add cb60d83  Merge branch 'master' into cluster_new

No new revisions were added by this update.

Summary of changes:
 LICENSE-binary                                     |   1 +
 .../iotdb/cluster/log/manage/RaftLogManager.java   |   5 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   |   7 +-
 .../cluster/log/applier/DataLogApplierTest.java    |   2 +
 .../iotdb/cluster/server/member/MemberTest.java    |   2 +
 docs/SystemDesign/DataQuery/QueryFundamentals.md   |  43 ++++++++-
 .../Concept/Data Model and Terminology.md          |   4 +-
 docs/UserGuide/Operation Manual/SQL Reference.md   |  14 ++-
 .../System Tools/Performance Tracing Tool.md       |  61 ++++++++++++
 .../zh/SystemDesign/DataQuery/QueryFundamentals.md |  38 +++++++-
 .../Concept/Data Model and Terminology.md          |   6 +-
 .../zh/UserGuide/Operation Manual/SQL Reference.md |  18 +++-
 .../System Tools/Performance Tracing Tool.md       |  61 ++++++++++++
 .../apache/iotdb/hadoop/tsfile/TSFInputFormat.java |  23 +++--
 .../iotdb/hadoop/tsfile/TSFRecordReader.java       |  27 +++---
 .../iotdb/hadoop/tsfile/TSFRecordWriter.java       |   3 +-
 .../org/apache/iotdb/hive/TSFHiveInputFormat.java  |  11 ++-
 .../java/org/apache/iotdb/hive/TsFileSerDe.java    |  18 +++-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  33 ++++---
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  14 ++-
 .../engine/storagegroup/StorageGroupProcessor.java |  71 +++++++-------
 .../org/apache/iotdb/db/metadata/MManager.java     |  59 ++++++------
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |  11 +++
 .../iotdb/db/query/executor/LastQueryExecutor.java |   3 +-
 .../java/org/apache/iotdb/db/service/IoTDB.java    |   8 +-
 .../iotdb/db/integration/IoTDBMultiSeriesIT.java   |   2 +
 .../iotdb/db/integration/IoTDBRestartIT.java       |   7 ++
 site/src/main/.vuepress/config.js                  |   6 +-
 tsfile/pom.xml                                     |   5 +
 .../apache/iotdb/tsfile/compress/ICompressor.java  |  47 ++++++++-
 .../iotdb/tsfile/compress/IUnCompressor.java       | 106 ++++++++++++++++++---
 .../file/metadata/enums/CompressionType.java       |  10 +-
 .../tsfile/read/reader/chunk/ChunkReader.java      |   5 +-
 .../apache/iotdb/tsfile/compress/CompressTest.java |  32 ++++++-
 .../compress/{SnappyTest.java => LZ4Test.java}     |  41 +++-----
 .../apache/iotdb/tsfile/compress/SnappyTest.java   |  21 ++--
 37 files changed, 633 insertions(+), 194 deletions(-)
 create mode 100644 docs/UserGuide/System Tools/Performance Tracing Tool.md
 create mode 100644 docs/zh/UserGuide/System Tools/Performance Tracing Tool.md
 copy tsfile/src/test/java/org/apache/iotdb/tsfile/compress/{SnappyTest.java => LZ4Test.java} (58%)