This is an automated email from the ASF dual-hosted git repository. rong pushed a commit to branch improve-pipe-it in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit a34735047070dbb9e8d44be36c69a75139dd8076 Author: Steve Yurong Su <[email protected]> AuthorDate: Wed Apr 3 15:01:26 2024 +0800 Pipe & Subscription IT: Enlarge -DDataNodeMaxHeapSize & -DDataNodeMaxDirectMemorySize. Add StrongConsistencyClusterMode for receiver tests. --- .github/workflows/pipe-it-2cluster.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipe-it-2cluster.yml b/.github/workflows/pipe-it-2cluster.yml index c39bfae159b..667a783f51e 100644 --- a/.github/workflows/pipe-it-2cluster.yml +++ b/.github/workflows/pipe-it-2cluster.yml @@ -35,7 +35,7 @@ jobs: java: [17] # StrongConsistencyClusterMode is ignored now because RatisConsensus has not been supported yet. cluster1: [LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode] - cluster2: [LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode] + cluster2: [LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode, StrongConsistencyClusterMode] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} steps: @@ -53,7 +53,7 @@ jobs: mvn clean verify \ -P with-integration-tests \ -DskipUTs \ - -DintegrationTest.forkCount=1 -DConfigNodeMaxHeapSize=256 -DDataNodeMaxHeapSize=768 \ + -DintegrationTest.forkCount=1 -DConfigNodeMaxHeapSize=256 -DDataNodeMaxHeapSize=1024 -DDataNodeMaxDirectMemorySize=768 \ -DClusterConfigurations=${{ matrix.cluster1 }},${{ matrix.cluster2 }} \ -pl integration-test \ -am -PMultiClusterIT2AutoCreateSchema @@ -72,7 +72,7 @@ jobs: java: [17] # StrongConsistencyClusterMode is ignored now because RatisConsensus has not been supported yet. cluster1: [LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode] - cluster2: [LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode] + cluster2: [LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode, StrongConsistencyClusterMode] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} steps: @@ -90,7 +90,7 @@ jobs: mvn clean verify \ -P with-integration-tests \ -DskipUTs \ - -DintegrationTest.forkCount=1 -DConfigNodeMaxHeapSize=256 -DDataNodeMaxHeapSize=768 \ + -DintegrationTest.forkCount=1 -DConfigNodeMaxHeapSize=256 -DDataNodeMaxHeapSize=1024 -DDataNodeMaxDirectMemorySize=768 \ -DClusterConfigurations=${{ matrix.cluster1 }},${{ matrix.cluster2 }} \ -pl integration-test \ -am -PMultiClusterIT2ManualCreateSchema @@ -109,7 +109,7 @@ jobs: java: [ 17 ] # StrongConsistencyClusterMode is ignored now because RatisConsensus has not been supported yet. cluster1: [ LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode ] - cluster2: [ LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode ] + cluster2: [ LightWeightStandaloneMode, ScalableSingleNodeMode, HighPerformanceMode, StrongConsistencyClusterMode ] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} steps: @@ -127,7 +127,7 @@ jobs: mvn clean verify \ -P with-integration-tests \ -DskipUTs \ - -DintegrationTest.forkCount=1 -DConfigNodeMaxHeapSize=256 -DDataNodeMaxHeapSize=768 \ + -DintegrationTest.forkCount=1 -DConfigNodeMaxHeapSize=256 -DDataNodeMaxHeapSize=1024 -DDataNodeMaxDirectMemorySize=768 \ -DClusterConfigurations=${{ matrix.cluster1 }},${{ matrix.cluster2 }} \ -pl integration-test \ -am -PMultiClusterIT2Subscription
