This is an automated email from the ASF dual-hosted git repository.
hxd pushed a change to branch comment_cluster_new
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from 8dd1bf9 add docs to claim which parameters are unused; set
auto_create_schema as true in iotdb-engine.proeprties
add 97714fe close the socket when TException occurs
add e86ed5f add TElasticFramedTransport
add 3f95c4a add some debug message
add 3ffe533 revise the log
add 57caca0 remove debug message
add 67702f1 merge cluster_new
add ef795b0 reformat the code
add 002d3aa Merge pull request #2041 from
neuyilan/apache_cluster_new_1110_sync_bug
add 32c0432 Add QQ group and wechat group in README and official website
(#2044)
add 321dcf4 Create sonar_and_coverall.yml
add a076e74 Update sonar_and_coverall.yml
add 56ab924 Add Sonar and Coveralls Check using Github Action (#2052)
add 41e57d9 Merge branch 'master' into cluster_new
add 4632fc1 fix test get protocol NPE
add aafedec use more distinguishing thread names
add 70b7182 try-github-action-to-replace-travis (#2051)
add 011c434 fix session pool bug when someone call pool.close
add 8ce9467 add tset case
add 26f6daf change notifyAll to notify to save CPU
add 73eaf17 fix some code smell
add 271f692 Merge pull request #2049 from apache/fix_session_pool
add 5b653a4 Remove unnecessary delete path check
add 84c1f9c Merge pull request #2056 from wshao08/del_fix
add 07ab57d fix filechannal force and interrupting-related
exception(#2038)
add 1067753 Merge branch 'master' into cluster_new
add 6b7011e fix sonar bugs
add f06eae9 add comment for startup
add c067933 add docs to claim which parameters are unused; set
auto_create_schema as true in iotdb-engine.proeprties
add 173b316 Merge branch 'comment_cluster_new' of
github.com:apache/incubator-iotdb into comment_cluster_new
No new revisions were added by this update.
Summary of changes:
.github/workflows/main-ci.yml | 112 +++++++++++++++++
.github/workflows/sonar_and_coverall.yml | 76 ++++++++++++
README.md | 11 ++
README_ZH.md | 13 +-
.../java/org/apache/iotdb/cluster/ClientMain.java | 4 +-
.../cluster/client/rpcutils/AutoScalingBuffer.java | 28 ++---
...rt.java => AutoScalingBufferReadTransport.java} | 29 ++---
.../rpcutils/AutoScalingBufferWriteTransport.java | 84 +++++++++++++
.../client/rpcutils/TElasticFramedTransport.java | 114 ++++++++++++++++++
.../TimeoutChangeableTFastFramedTransport.java | 5 +-
.../iotdb/cluster/client/sync/SyncMetaClient.java | 10 +-
.../apache/iotdb/cluster/log/LogDispatcher.java | 1 +
.../iotdb/cluster/log/catchup/LogCatchUpTask.java | 2 +-
.../cluster/log/catchup/SnapshotCatchUpTask.java | 13 +-
.../iotdb/cluster/log/manage/RaftLogManager.java | 20 ++--
.../serializable/SyncLogDequeSerializer.java | 7 +-
.../iotdb/cluster/log/snapshot/FileSnapshot.java | 23 ++--
.../cluster/log/snapshot/PullSnapshotTask.java | 11 +-
.../cluster/query/manage/QueryCoordinator.java | 13 +-
.../apache/iotdb/cluster/server/ClientServer.java | 8 +-
.../iotdb/cluster/server/DataClusterServer.java | 22 ++--
.../apache/iotdb/cluster/server/RaftServer.java | 8 +-
.../cluster/server/heartbeat/HeartbeatServer.java | 4 +-
.../cluster/server/member/MetaGroupMember.java | 19 ++-
.../iotdb/cluster/server/member/RaftMember.java | 7 +-
.../cluster/server/service/BaseSyncService.java | 11 +-
.../cluster/server/service/DataSyncService.java | 48 ++++++--
.../cluster/server/service/MetaSyncService.java | 23 ++--
.../apache/iotdb/cluster/utils/ClusterUtils.java | 6 +-
.../cluster/log/snapshot/PullSnapshotTaskTest.java | 34 ++++++
.../org/apache/iotdb/db/metadata/MLogWriter.java | 1 +
.../apache/iotdb/db/qp/executor/PlanExecutor.java | 4 -
.../iotdb/db/integration/IoTDBDeletionIT.java | 29 +++++
.../apache/iotdb/db/utils/EnvironmentUtils.java | 18 ++-
.../org/apache/iotdb/session/pool/SessionPool.java | 133 ++++++++++++++++-----
.../apache/iotdb/session/pool/SessionPoolTest.java | 18 +++
site/src/main/.vuepress/theme/components/Page.vue | 3 +
.../fileOutputFactory/LocalFSOutputFactory.java | 3 +-
...SameMeasurementsWithDifferentDataTypesTest.java | 14 ++-
.../write/writer/ForceAppendTsFileWriterTest.java | 14 ++-
40 files changed, 836 insertions(+), 167 deletions(-)
create mode 100644 .github/workflows/main-ci.yml
create mode 100644 .github/workflows/sonar_and_coverall.yml
copy example/rocketmq/src/main/java/org/apache/iotdb/rocketmq/Utils.java =>
cluster/src/main/java/org/apache/iotdb/cluster/client/rpcutils/AutoScalingBuffer.java
(62%)
copy
cluster/src/main/java/org/apache/iotdb/cluster/client/rpcutils/{TimeoutChangeableTFastFramedTransport.java
=> AutoScalingBufferReadTransport.java} (58%)
create mode 100644
cluster/src/main/java/org/apache/iotdb/cluster/client/rpcutils/AutoScalingBufferWriteTransport.java
create mode 100644
cluster/src/main/java/org/apache/iotdb/cluster/client/rpcutils/TElasticFramedTransport.java