This is an automated email from the ASF dual-hosted git repository.
caogaofei pushed a change to branch beyyes/fix_procedure_bug
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 73ceedf3e0 fix bug in create regions group procedure
add eef201614c [IOTDB-4306] Make max number of clients for InternalService
configurable (#7210)
add 41f74a578f [IOTDB-4304]Add TriggerTable and TriggerInformation (#7208)
add 6365fcddce [IOTDB-4137] Reject write when Peer in ReadOnly state in
RatisConsensus (#7216)
new 731e7ff983 Merge branch 'master' into beyyes/fix_procedure_bug
new a30ee171f5 fix serialize bug in create regions group procedure
The 2 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:
.../request/write/CreateRegionGroupsPlan.java | 14 +-
.../impl/CreateRegionGroupsProcedure.java | 34 +++--
.../procedure/state/RemoveConfigNodeState.java | 3 +-
.../impl/CreateRegionGroupsProcedureTest.java | 109 ++++++++++++++
...upException.java => NodeReadOnlyException.java} | 11 +-
.../iotdb/consensus/ratis/RatisConsensus.java | 34 ++++-
.../iotdb/commons/trigger/TriggerInformation.java | 157 +++++++++++++++++++++
.../apache/iotdb/commons/trigger/TriggerTable.java | 64 +++++++++
.../resources/conf/iotdb-datanode.properties | 9 ++
.../iotdb/db/client/DataNodeClientPoolFactory.java | 12 +-
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 25 ++++
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 12 ++
.../src/main/thrift/confignode.thrift | 11 ++
13 files changed, 472 insertions(+), 23 deletions(-)
create mode 100644
confignode/src/test/java/org/apache/iotdb/confignode/procedure/impl/CreateRegionGroupsProcedureTest.java
copy
consensus/src/main/java/org/apache/iotdb/consensus/exception/{PeerNotInConsensusGroupException.java
=> NodeReadOnlyException.java} (74%)
create mode 100644
node-commons/src/main/java/org/apache/iotdb/commons/trigger/TriggerInformation.java
create mode 100644
node-commons/src/main/java/org/apache/iotdb/commons/trigger/TriggerTable.java