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 2022/05/25 05:34:14 UTC

[iotdb] branch jira3188 updated (99e0040705 -> 6faa6b64fe)

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

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


    from 99e0040705 finish wal read
     add f35f1133f6 [IOTDB-3237] Too much information in SQL parser error message (#5984)
     add 68c0285527 [IOTDB-3070][IOTDB-3074] modify docs related to syntax convention (#5983)
     add 44885d5a3d [IOTDB-3268] Refactor measurement check logic in session api for better performance (#5995)
     add c115adde55 [IOTDB-3083] DataNode AuthorInfo cache (#5943)
     add cde99e33a4 [IOTDB-3253] Upgrade dependency: Ratis from 2.2.0 to 2.3.0 (#5991)
     add 6faa6b64fe Merge branch 'master' of github.com:Apache/iotdb into jira3188

No new revisions were added by this update.

Summary of changes:
 .../iotdb/confignode/manager/ConfigManager.java    |  14 +-
 .../apache/iotdb/confignode/manager/Manager.java   |   5 +-
 .../confignode/manager/PermissionManager.java      |  79 +++-
 .../iotdb/confignode/persistence/AuthorInfo.java   |  96 +++-
 .../thrift/ConfigNodeRPCServiceProcessor.java      |   5 +-
 .../confignode/persistence/AuthorInfoTest.java     |  10 +-
 .../thrift/ConfigNodeRPCServiceProcessorTest.java  |   4 +-
 consensus/pom.xml                                  |   2 +-
 .../ratis/ApplicationStateMachineProxy.java        |  19 +-
 .../iotdb/consensus/ratis/RatisConsensus.java      |   4 +
 .../iotdb/consensus/ratis/SnapshotStorage.java     |  87 +++-
 .../org/apache/iotdb/consensus/ratis/Utils.java    |   7 +-
 .../apache/iotdb/consensus/ratis/SnapshotTest.java |  12 +-
 .../Administration-Management/Administration.md    |   6 +-
 docs/UserGuide/Reference/Syntax-Conventions.md     | 476 ++++++++++++++------
 .../Administration-Management/Administration.md    |   6 +-
 docs/zh/UserGuide/Reference/Syntax-Conventions.md  | 499 +++++++++++++++------
 .../IoTDBSyntaxConventionIdentifierIT.java         |  17 +
 pom.xml                                            |   7 +
 .../resources/conf/iotdb-engine.properties         |   8 +
 .../org/apache/iotdb/db/auth/AuthorityChecker.java |  54 +--
 .../AuthorityFetcher.java}                         | 100 ++---
 .../apache/iotdb/db/auth/AuthorizerManager.java    | 330 +++++++++++---
 .../apache/iotdb/db/client/ConfigNodeClient.java   |  13 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  22 +
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  14 +
 .../execution/config/AuthorizerConfigTask.java     | 107 +----
 .../apache/iotdb/db/qp/strategy/SQLParseError.java |  24 +
 .../thrift/impl/DataNodeTSIServiceImpl.java        | 139 ++++--
 .../service/thrift/impl/InternalServiceImpl.java   |  11 +
 .../db/service/thrift/impl/TSServiceImpl.java      | 143 ++++--
 .../iotdb/db/auth/AuthorizerManagerTest.java       | 164 +++++++
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |   1 +
 .../src/main/thrift/confignode.thrift              |  22 +-
 thrift/src/main/thrift/mpp.thrift                  |  12 +
 .../tsfile/read/common/parser/PathParseError.java  |  23 +
 36 files changed, 1879 insertions(+), 663 deletions(-)
 copy server/src/main/java/org/apache/iotdb/db/{mpp/plan/execution/config/AuthorizerConfigTask.java => auth/AuthorityFetcher.java} (67%)
 create mode 100644 server/src/test/java/org/apache/iotdb/db/auth/AuthorizerManagerTest.java