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

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


 discard ecacf6c0466 remove resource.delete() method
 discard 29ea891a701 fix UT
 discard 19d5772851b add compactionWorkerTest
 discard ab7add996b0 fix compile error
 discard 77bd0d88d10 remove read lock
 discard 2533167a40d remove currentTaskNum
 discard ef514978b5a tmp save
     add ed62ba67cd4 [IOTDB-6168] ConfigNode register retry logic does not 
worked (#11188)
     add 9ab3c422cdb Auth online upgrade
     add fde69bc82c2 Fix auth check when alter and create view
     add 0f2cf0a3b48 Optimize merge selection process and increase disk space 
availability logic (#11197)
     add 1c3ab3900c7 Pipe: fix drop pipe stuck (make connector subtask close 
faster by early returning) (#11222)
     add 62a956d3ed5 [auth].fix internal error when check sysPri grant option
     add 4d3a16fb61b Bump org.apache.avro:avro in 
/iotdb-connector/hive-connector (#11236)
     add 7af3d774343 Bump org.apache.tomcat.embed:tomcat-embed-core from 
10.1.0-M1 to 10.0.27 in /iotdb-core/datanode (#11235)
     add 4d38980c075 Bump postcss from 8.4.21 to 8.4.31 in 
/iotdb-connector/grafana-plugin (#11238)
     new 28ab2d75825 tmp save
     new 24ea0d46282 remove currentTaskNum
     new 981e3595205 remove read lock
     new 96c5111c45a fix compile error
     new ffa747bf41a add compactionWorkerTest
     new 67e1db3bdd0 fix UT
     new d7a71c64a29 remove resource.delete() method

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   (ecacf6c0466)
            \
             N -- N -- N   refs/heads/compaction_worker_refactor_0928 
(d7a71c64a29)

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.

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 iotdb-connector/grafana-plugin/yarn.lock           |  16 +-
 iotdb-connector/hive-connector/pom.xml             |   2 +-
 .../statemachine/ConfigRegionStateMachine.java     |   1 +
 .../iotdb/confignode/manager/ConfigManager.java    |   4 +
 .../confignode/manager/PermissionManager.java      |   4 +
 .../iotdb/confignode/persistence/AuthorInfo.java   | 139 +++--
 .../iotdb/confignode/service/ConfigNode.java       |   4 +-
 .../confignode/persistence/AuthorInfoTest.java     | 651 +++++++++++++++++++++
 iotdb-core/datanode/pom.xml                        |   2 +-
 .../iotdb/db/auth/ClusterAuthorityFetcher.java     |  35 +-
 .../apache/iotdb/db/pipe/event/EnrichedEvent.java  |  10 +-
 .../pipe/task/connection/PipeEventCollector.java   |  14 +-
 .../iotdb/db/pipe/task/subtask/PipeSubtask.java    |  19 +-
 .../subtask/connector/PipeConnectorSubtask.java    |  42 +-
 .../subtask/processor/PipeProcessorSubtask.java    |  32 +-
 .../metadata/view/AlterLogicalViewStatement.java   |  26 +-
 .../metadata/view/CreateLogicalViewStatement.java  |  19 +-
 .../execute/task/AbstractCompactionTask.java       |  39 +-
 .../CompactionTaskType.java}                       |  17 +-
 .../execute/task/InnerSpaceCompactionTask.java     |  21 +-
 .../compaction/execute/utils/CompactionUtils.java  |  35 ++
 .../compaction/schedule/CompactionScheduler.java   |  26 +-
 .../DefaultCompactionTaskComparatorImpl.java       |   7 +
 .../compaction/selector/ICompactionSelector.java   |   3 +-
 .../selector/IInnerSeqSpaceSelector.java           |   3 +-
 .../selector/IInnerUnseqSpaceSelector.java         |   3 +-
 .../impl/SizeTieredCompactionSelector.java         | 122 ++--
 .../db/auth/role/LocalFileRoleAccessorTest.java    |  55 +-
 .../db/auth/role/LocalFileRoleManagerTest.java     |  59 +-
 .../db/auth/user/LocalFileUserAccessorTest.java    |  62 +-
 .../db/auth/user/LocalFileUserManagerTest.java     |  56 +-
 .../compaction/CompactionTaskComparatorTest.java   |  70 +++
 ...eCompactionWithFastPerformerValidationTest.java |  74 +--
 ...actionWithReadPointPerformerValidationTest.java |  64 +-
 .../inner/InnerSpaceCompactionSelectorTest.java    |  58 +-
 .../commons/auth/authorizer/BasicAuthorizer.java   |  42 +-
 .../iotdb/commons/auth/authorizer/IAuthorizer.java |  19 +
 .../commons/auth/authorizer/OpenIdAuthorizer.java  |   2 +-
 .../commons/auth/entity/PriPrivilegeType.java      |  91 +++
 .../org/apache/iotdb/commons/auth/entity/Role.java |  10 +
 .../iotdb/commons/auth/role/BasicRoleManager.java  |  88 ++-
 .../iotdb/commons/auth/role/IRoleManager.java      |   6 +
 .../commons/auth/role/LocalFileRoleAccessor.java   |  25 +-
 .../iotdb/commons/auth/user/BasicUserManager.java  |  98 +++-
 .../iotdb/commons/auth/user/IUserManager.java      |   6 +
 .../commons/auth/user/LocalFileUserAccessor.java   |  60 +-
 .../org/apache/iotdb/commons/utils/AuthUtils.java  |  81 +++
 .../org/apache/iotdb/commons/utils/IOUtils.java    |  45 ++
 .../apache/iotdb/commons/utils/AuthUtilsTest.java  |  12 +
 49 files changed, 1944 insertions(+), 435 deletions(-)
 copy 
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/compaction/execute/{performer/ICrossCompactionPerformer.java
 => task/CompactionTaskType.java} (72%)
 create mode 100644 
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/auth/entity/PriPrivilegeType.java

Reply via email to