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

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


    omit 0c5416ecfa fix bug
    omit ac49e5c19c basically implement
    omit 0ebd32b922 save trial
    omit 2b069950bc save trial
    omit b5f5b028b5 save trial
    omit a37500f2f9 improve code structure of fetch schema for data inert and 
auto create schema
    omit aa1f667ac1 extract AutoCreateSchemaExecutor and 
ClusterSchemaFetchExecutor
    omit f4a8189aec add analyze.schema package
     add 35c016f229 [IOTDB-5202] Show regions support database sql (#8450)
     add b40d7b1727 [IOTDB-5210] Fix closed TsFileSequenceReader still cached 
in FileReaderManager
     add 4a32eb8a77 [IOTDB-5061] Add initialize state check when create 
snapshot (#8447)
     add 4e06867e51 Update Write-Data.md (#8444)
     add 6c90a45b06 Update Write-Data.md (#8445)
     add 8b4b397f9e [IOTDB-5168] Refactor traverse of AbstractTreeVisitor to 
FA-based traverse (#8400)
     add 831a45e541 Ignore Failed IoTDBSnapshotTransferIT
     add 8e612b5323 [IOTDB-5201] Extracting getConfig from the registerDataNode 
interface (#8441)
     add d17d1e80d3 [IOTDB-5174] Use filename format such as NodeID-Index 
rather than Endpoint-Index to track follower sync progress (#8458)
     add 1361d28c10 add message in exception (#8449)
     add f6b3810b63 [IOTDB-5223] Check data directories cross-disk under 
RatisConsensus (#8469)
     add 9ccf079138 add analyze.schema package
     add b5cd26e8f6 extract AutoCreateSchemaExecutor and 
ClusterSchemaFetchExecutor
     add c932504e4d improve code structure of fetch schema for data inert and 
auto create schema
     add d53813fc0c save trial
     add d40e76bbe4 save trial
     add ee4d7bbf21 save trial
     add ec94c54092 basically implement
     add 7678d516b6 fix bug

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   (0c5416ecfa)
            \
             N -- N -- N   refs/heads/concurrent_schema_fetch (7678d516b6)

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:
 .../org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4   |   2 +-
 ...GroupSchemaResp.java => ConfigurationResp.java} |  42 +-
 .../consensus/response/DataNodeRegisterResp.java   |  23 -
 .../iotdb/confignode/manager/ConfigManager.java    |  14 +
 .../apache/iotdb/confignode/manager/IManager.java  |   7 +
 .../iotdb/confignode/manager/node/NodeManager.java |  21 +-
 .../thrift/ConfigNodeRPCServiceProcessor.java      |  12 +
 .../exception/RatisRequestFailedException.java     |   7 +-
 .../iot/logdispatcher/IndexController.java         |  43 +-
 .../consensus/iot/logdispatcher/LogDispatcher.java |   3 +-
 .../iot/logdispatcher/IndexControllerTest.java     |  37 +-
 .../iot/logdispatcher/SyncStatusTest.java          |  15 +-
 docs/UserGuide/Write-Data/Write-Data.md            |   2 +-
 docs/zh/UserGuide/Write-Data/Write-Data.md         |   2 +-
 .../confignode/it/IoTDBSnapshotTransferIT.java     |   2 +
 .../fa/IFAState.java}                              |  15 +-
 .../iotdb/commons/path/fa/IFATransition.java       |  23 +-
 .../apache/iotdb/commons/path/fa/IPatternFA.java   |  75 ++
 .../apache/iotdb/commons/path/fa/SimpleNFA.java    | 522 +++++++++++++
 .../commons/path/fa/match/IStateMatchInfo.java     |  79 ++
 .../commons/path/fa/match/MatchedStateSet.java     |  68 ++
 .../commons/path/fa/match/StateMultiMatchInfo.java | 120 +++
 .../path/fa/match/StateSingleMatchInfo.java        | 103 +++
 .../commons/schema/tree/AbstractTreeVisitor.java   | 804 ++++++++++++---------
 .../apache/iotdb/db/client/ConfigNodeClient.java   |  22 +
 .../org/apache/iotdb/db/conf/IoTDBStartCheck.java  |   8 +
 .../db/conf/directories/DirectoryChecker.java      |  27 +
 .../schemaregion/SchemaRegionMemoryImpl.java       |   6 +
 .../schemaregion/SchemaRegionSchemaFileImpl.java   |   6 +
 .../visitor/SchemaTreeDeviceVisitor.java           |   2 +-
 .../visitor/SchemaTreeMeasurementVisitor.java      |  76 +-
 .../schematree/visitor/SchemaTreeVisitor.java      |   5 -
 .../iotdb/db/mpp/execution/driver/Driver.java      |  31 +-
 .../java/org/apache/iotdb/db/service/DataNode.java |  82 ++-
 .../db/service/DataNodeServerCommandLine.java      |   2 +-
 .../src/main/thrift/confignode.thrift              |  23 +-
 36 files changed, 1822 insertions(+), 509 deletions(-)
 copy 
confignode/src/main/java/org/apache/iotdb/confignode/consensus/response/{StorageGroupSchemaResp.java
 => ConfigurationResp.java} (59%)
 copy 
node-commons/src/main/java/org/apache/iotdb/commons/{concurrent/threadpool/WrappedScheduledExecutorServiceMBean.java
 => path/fa/IFAState.java} (64%)
 copy 
confignode/src/main/java/org/apache/iotdb/confignode/procedure/exception/ProcedureSuspendedException.java
 => 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/IFATransition.java 
(63%)
 create mode 100644 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/IPatternFA.java
 create mode 100644 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/SimpleNFA.java
 create mode 100644 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/match/IStateMatchInfo.java
 create mode 100644 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/match/MatchedStateSet.java
 create mode 100644 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/match/StateMultiMatchInfo.java
 create mode 100644 
node-commons/src/main/java/org/apache/iotdb/commons/path/fa/match/StateSingleMatchInfo.java

Reply via email to