You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ta...@apache.org on 2021/09/07 08:13:09 UTC

[iotdb] branch fix_surefire_ci updated (a207247 -> 51fffb8)

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

tanxinyu pushed a change to branch fix_surefire_ci
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


 discard a207247  try to fix surefire ci
     add b92a16a  [IOTDB-1601]Add Like and REGEXP statement user guide in DML (#3889)
     add 5c48d3a  [IOTDB-1565]set system to readonly / writable Adaptive cluster (#3885)
     add 11d64b8  Update the QuickStart link in Home page (#3898)
     add 8626336  [IOTDB-1610] Fix TsFileRewriteTool writing incorrect data file (#3896) (#3897)
     add bffb799  Fix website cannot update rel/0.12 documents (#3902)
     add 88cce66  Add auto-create-schema, time partition and dbeaver user guide to the website (#3904)
     add c8dee24  [IOTDB-1534] fix surefire ci by increasing memory (#3899)
     add 9931149  Revert "[IOTDB-1534] fix surefire ci by increasing memory (#3899)" (#3908)
     add adb1cbc  [IOTDB-1562] Fix incorrect exception processing in insertXXX() API (#3758)
     add 3333f3b  [IOTDB-1450] Deletion should only delete related time partitions (#3439)
     add 1ad4b3d  [IOTDB-1564] Make hearbeat and election timeout parameters be configurable (#3797)
     add 2400c36  [ISSUE-3856] refine exception handling logic in commitTo in Raft… (#3848)
     add ba988ee  [IOTDB-1600] Support InsertRowsOfOneDevicePlan in cluster (#3877)
     add 51fffb8  try to fix surefire ci

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (a207247)
            \
             N -- N -- N   refs/heads/fix_surefire_ci (51fffb8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 RELEASE_NOTES.md                                   |   2 +-
 .../resources/conf/iotdb-cluster.properties        |  13 +-
 .../client/sync/SyncDataHeartbeatClient.java       |   2 +-
 .../client/sync/SyncMetaHeartbeatClient.java       |   3 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |  20 ++
 .../iotdb/cluster/config/ClusterConstant.java      |  30 +--
 .../iotdb/cluster/config/ClusterDescriptor.java    |  10 +
 .../iotdb/cluster/log/applier/BaseApplier.java     |   6 +
 .../iotdb/cluster/log/applier/DataLogApplier.java  |   8 +
 .../iotdb/cluster/log/manage/RaftLogManager.java   | 115 +++++----
 .../slot/SlotTimePartitionFilter.java}             |  38 +--
 .../iotdb/cluster/query/ClusterPlanExecutor.java   |  13 +-
 .../iotdb/cluster/query/ClusterPlanRouter.java     |  36 +++
 .../apache/iotdb/cluster/server/ClientServer.java  |   9 +-
 .../apache/iotdb/cluster/server/RaftServer.java    |  32 ++-
 .../cluster/server/heartbeat/HeartbeatThread.java  |  46 ++--
 .../cluster/server/member/DataGroupMember.java     |  13 +
 .../cluster/server/member/MetaGroupMember.java     |   2 +-
 .../iotdb/cluster/server/member/RaftMember.java    |   2 +-
 .../apache/iotdb/cluster/utils/PartitionUtils.java |   4 +-
 .../cluster/log/applier/DataLogApplierTest.java    |  36 ++-
 .../server/heartbeat/HeartbeatThreadTest.java      |   5 +-
 .../iotdb/cluster/server/member/BaseMember.java    |  10 +-
 .../cluster/server/member/MetaGroupMemberTest.java |   6 +-
 docs/UserGuide/Cluster/Cluster-Setup.md            |  21 +-
 .../DML-Data-Manipulation-Language.md              |  74 ++++++
 docs/zh/UserGuide/Cluster/Cluster-Setup.md         |  22 +-
 .../DML-Data-Manipulation-Language.md              |  77 ++++++
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   2 +-
 .../org/apache/iotdb/db/conf/OperationType.java    |  65 +++++
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  17 +-
 .../engine/storagegroup/StorageGroupProcessor.java |  55 +++-
 .../virtualSg/VirtualStorageGroupManager.java      |   9 +-
 .../apache/iotdb/db/qp/executor/IPlanExecutor.java |   9 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  16 +-
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |  11 +-
 .../iotdb/db/qp/physical/crud/DeletePlan.java      |  15 ++
 .../physical/crud/InsertRowsOfOneDevicePlan.java   |  80 +++++-
 .../db/qp/physical/sys/DeleteTimeSeriesPlan.java   |  15 ++
 .../db/qp/physical/sys/SetSystemModePlan.java      |  33 +++
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 146 ++++++++---
 .../apache/iotdb/db/tools/TsFileRewriteTool.java   |  11 +-
 .../db/tools/upgrade/TsFileOnlineUpgradeTool.java  |   2 +-
 .../engine/modification/DeletionFileNodeTest.java  | 109 ++++++--
 .../db/engine/modification/DeletionQueryTest.java  |  77 ++++--
 .../storagegroup/StorageGroupProcessorTest.java    |   2 +-
 .../aggregation/IoTDBAggregationSmallDataIT.java   |  17 +-
 .../qp/physical/InsertRowsOfOneDevicePlanTest.java |  75 ++++++
 .../iotdb/db/utils/TsFileRewriteToolTest.java      | 109 ++++++++
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java | 284 ++++++++++++++++++++-
 site/pom.xml                                       |  10 +
 site/src/main/.vuepress/config.js                  |  38 +--
 .../.vuepress/public/img/contributor-avatar/cw.jpg | Bin 163226 -> 163225 bytes
 .../.vuepress/theme/global-components/IoTDB.vue    |   2 +-
 .../.vuepress/theme/global-components/IoTDBZH.vue  |   2 +-
 .../test/java/org/apache/iotdb/db/sql/Cases.java   |  83 ++++++
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |   4 +
 .../tsfile/v2/read/TsFileSequenceReaderForV2.java  |   4 -
 58 files changed, 1677 insertions(+), 280 deletions(-)
 copy cluster/src/main/java/org/apache/iotdb/cluster/{query/filter/SlotSgFilter.java => partition/slot/SlotTimePartitionFilter.java} (52%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/conf/OperationType.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/qp/physical/InsertRowsOfOneDevicePlanTest.java