diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index abe01cc1..32f0cb3e 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -38,12 +38,12 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Set up JDK 17 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK 21 + uses: actions/setup-java@v5 with: distribution: adopt - java-version: 17 + java-version: 21 cache: 'maven' - name: Build with Maven (${{ matrix.profile.name }}) run: mvn -B -V -e -ntp "-Dstyle.color=always" ${{ matrix.profile.args }} @@ -51,21 +51,21 @@ jobs: MAVEN_OPTS: -Djansi.force=true - name: Upload unit test results if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: surefire-reports-${{ matrix.profile.name }} path: ./**/target/surefire-reports/ if-no-files-found: ignore - name: Upload integration test results if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: failsafe-reports-${{ matrix.profile.name }} path: ./**/target/failsafe-reports/ if-no-files-found: ignore - name: Upload mini test logs if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: mini-tests-logs-${{ matrix.profile.name }} path: ./**/target/**/mini-tests/**/logs/ diff --git a/pom.xml b/pom.xml index ad6d9739..39d857f9 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ org.apache apache - 31 + 37 org.apache.accumulo accumulo-testing @@ -43,8 +43,7 @@ true .+-SNAPSHOT,(?i).*(alpha|beta)[0-9.-]*,(?i).*[.-](m|rc)[0-9]+ - 17 - 3.9 + 21 2021-12-15T00:00:00Z @@ -121,6 +120,19 @@ test + + + + false + + + true + + apache.snapshots + Apache Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + + @@ -128,12 +140,12 @@ org.codehaus.mojo versions-maven-plugin - 2.16.1 + 2.21.0 com.mycila license-maven-plugin - 4.3 + 5.0.0 @@ -196,7 +208,7 @@ com.github.ekryd.sortpom sortpom-maven-plugin - 3.3.0 + 4.0.0 false false @@ -213,7 +225,7 @@ net.revelc.code.formatter formatter-maven-plugin - 2.23.0 + 2.29.0 src/build/eclipse-codestyle.xml LF @@ -227,7 +239,7 @@ net.revelc.code impsort-maven-plugin - 1.9.0 + 1.13.0 true java.,javax.,jakarta.,org.,com. diff --git a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java index c6978519..901e8e96 100644 --- a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java +++ b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java @@ -75,7 +75,7 @@ static Setting s(Property property, long min, long max) { s(Property.TSERV_THREADCHECK, 100, 10000), s(Property.TSERV_MINTHREADS, 1, 100), s(Property.TSERV_SESSION_MAXIDLE, 100, 5 * 60 * 1000), - s(Property.TSERV_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L), + s(Property.GENERAL_SERVER_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L), s(Property.TSERV_WAL_BLOCKSIZE, 1024 * 1024,1024 * 1024 * 1024 * 10L), s(Property.MANAGER_BULK_TIMEOUT, 10, 600), s(Property.MANAGER_RECOVERY_DELAY, 0, 100),