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

[incubator-iotdb] branch kyy2 updated (d9d8db9 -> 847690f)

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

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


    from d9d8db9  format
     add d769cc7  increase default max concurrency
     add 54e9fdc  remove seperate line
     add d76356d  [IOTDB-791] Remove unused PathException
     add f80c7c3  check fetch size in query
     add 3d0df95  add DOAP file
     add 98b4e6f  [IOTDB-790] change base_dir to system_dir (#1467)
     add f270861  [IOTDB-792] do not get MManager.readLock when inserting to avoid deadlock (#1481)
     add 2892b69  Merge branch 'master' into cluster_new
     add efe1d98  fix bugs
     add 86be0a5  Merge pull request #1486 from LebronAl/cluster_new_forget_update_clientNumMap
     add a87479f  Avoid too frequent reconnect
     add 1b84617  add cluster node
     add 9b1917f  Merge remote-tracking branch 'origin/cluster_new' into kyy2
     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
     add 847690f  merge

No new revisions were added by this update.

Summary of changes:
 LICENSE-binary                                     |   1 +
 .../resources/conf/iotdb-cluster.properties        |   2 +-
 .../java/org/apache/iotdb/cluster/ClientMain.java  |  24 ---
 .../cluster/client/async/AsyncClientPool.java      |  34 ++--
 .../cluster/client/async/AsyncDataClient.java      |  15 +-
 .../cluster/client/async/AsyncMetaClient.java      |  13 ++
 .../iotdb/cluster/client/sync/SyncClientPool.java  |  46 +++---
 .../apache/iotdb/cluster/config/ClusterConfig.java |   2 +-
 .../iotdb/cluster/config/ClusterDescriptor.java    |  61 ++++---
 .../iotdb/cluster/config/ConsistencyLevel.java     |   8 +-
 ...ception.java => BadSeedUrlFormatException.java} |   7 +-
 .../exception/CheckConsistencyException.java       |   3 +-
 .../GetEntriesWrongParametersException.java        |   2 +-
 .../iotdb/cluster/log/applier/BaseApplier.java     |  28 ++--
 .../iotdb/cluster/log/applier/DataLogApplier.java  |   1 -
 .../iotdb/cluster/log/catchup/CatchUpTask.java     |   2 +-
 .../cluster/log/catchup/SnapshotCatchUpTask.java   |   1 -
 .../log/manage/MetaSingleSnapshotLogManager.java   |   1 -
 .../log/manage/PartitionedSnapshotLogManager.java  |   1 -
 .../iotdb/cluster/log/manage/RaftLogManager.java   |  15 +-
 .../serializable/SyncLogDequeSerializer.java       |   9 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   | 178 ++++++++++-----------
 .../cluster/partition/SlotPartitionTable.java      |   1 -
 .../iotdb/cluster/query/ClusterPlanExecutor.java   |  33 ++--
 .../iotdb/cluster/query/ClusterPlanRouter.java     |   1 -
 .../query/last/ClusterLastQueryExecutor.java       |  16 +-
 .../reader/RemoteSeriesReaderByTimestamp.java      |   1 +
 .../query/reader/RemoteSimpleSeriesReader.java     |   1 +
 .../iotdb/cluster/server/MetaClusterServer.java    |   2 +-
 .../handlers/caller/AppendNodeEntryHandler.java    |  17 +-
 .../server/heartbeat/DataHeartbeatThread.java      |   1 -
 .../cluster/server/heartbeat/HeartbeatThread.java  |   1 -
 .../cluster/server/member/DataGroupMember.java     |   3 +-
 .../cluster/server/member/MetaGroupMember.java     |  22 +--
 .../iotdb/cluster/server/member/RaftMember.java    |  41 +++--
 .../cluster/server/service/BaseSyncService.java    |   1 -
 .../cluster/server/service/MetaAsyncService.java   |  42 +----
 .../cluster/server/service/MetaSyncService.java    |  47 +-----
 .../apache/iotdb/cluster/utils/ClusterNode.java}   |  49 +++---
 .../iotdb/cluster/utils/ClusterQueryUtils.java     |   6 +-
 .../apache/iotdb/cluster/utils/ClusterUtils.java   |  49 +++++-
 .../cluster/log/applier/DataLogApplierTest.java    |   4 +-
 .../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/conf/IoTDBDescriptor.java  |   2 +-
 .../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    |  12 +-
 .../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 ++-
 76 files changed, 1021 insertions(+), 589 deletions(-)
 copy cluster/src/main/java/org/apache/iotdb/cluster/exception/{LogExecutionException.java => BadSeedUrlFormatException.java} (77%)
 copy cluster/src/{test/java/org/apache/iotdb/cluster/common/TestSnapshot.java => main/java/org/apache/iotdb/cluster/utils/ClusterNode.java} (53%)
 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%)