You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ni...@apache.org on 2022/10/26 18:26:06 UTC

[ignite] branch IGNITE-17177_inc_snapshots updated (4f1a3033a28 -> d36b80f5496)

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

nizhikov pushed a change to branch IGNITE-17177_inc_snapshots
in repository https://gitbox.apache.org/repos/asf/ignite.git


    from 4f1a3033a28 IGNITE-17613 Copy WAL segments in incremental snapshot (#10292)
     add dc405c89b0f IGNITE-17962 Fix serializable lambda serialization with Java17 (#10342)
     new 4bca21f7a29 Merge branch 'master' into IGNITE-17177_inc_snapshots
     new d36b80f5496 IGNITE-17177 Tests fix.

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:
 bin/include/jvmdefaults.bat                        |   2 +
 bin/include/jvmdefaults.sh                         |   2 +
 .../internal/binary/BinaryClassDescriptor.java     |  79 +++++---
 .../optimized/OptimizedClassDescriptor.java        | 223 +++++++++++----------
 .../ignite/internal/util/FeatureChecker.java       |   6 +-
 .../apache/ignite/internal/util/IgniteUtils.java   |  31 +++
 .../GridMultipleVersionsDeploymentSelfTest.java    |   1 +
 .../IgniteExplicitImplicitDeploymentSelfTest.java  |   9 +-
 .../snapshot/AbstractSnapshotSelfTest.java         |   3 +-
 .../persistence/snapshot/PlainSnapshotTest.java    |  25 ++-
 .../ignite/internal/util/IgniteUtilsSelfTest.java  |  66 ++++++
 .../p2p/GridP2PRemoteClassLoadersSelfTest.java     |   3 +
 parent/pom.xml                                     |   2 +
 13 files changed, 300 insertions(+), 152 deletions(-)


[ignite] 01/02: Merge branch 'master' into IGNITE-17177_inc_snapshots

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nizhikov pushed a commit to branch IGNITE-17177_inc_snapshots
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 4bca21f7a298186bc097ed6457c2209d05f466b9
Merge: 4f1a3033a28 dc405c89b0f
Author: Nikolay Izhikov <ni...@apache.org>
AuthorDate: Wed Oct 26 20:45:42 2022 +0300

    Merge branch 'master' into IGNITE-17177_inc_snapshots

 bin/include/jvmdefaults.bat                        |   2 +
 bin/include/jvmdefaults.sh                         |   2 +
 .../internal/binary/BinaryClassDescriptor.java     |  79 +++++---
 .../optimized/OptimizedClassDescriptor.java        | 223 +++++++++++----------
 .../ignite/internal/util/FeatureChecker.java       |   6 +-
 .../apache/ignite/internal/util/IgniteUtils.java   |  31 +++
 .../GridMultipleVersionsDeploymentSelfTest.java    |   1 +
 .../IgniteExplicitImplicitDeploymentSelfTest.java  |   9 +-
 .../persistence/snapshot/PlainSnapshotTest.java    |  25 ++-
 .../ignite/internal/util/IgniteUtilsSelfTest.java  |  66 ++++++
 .../p2p/GridP2PRemoteClassLoadersSelfTest.java     |   3 +
 parent/pom.xml                                     |   2 +
 12 files changed, 298 insertions(+), 151 deletions(-)



[ignite] 02/02: IGNITE-17177 Tests fix.

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nizhikov pushed a commit to branch IGNITE-17177_inc_snapshots
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit d36b80f549691ce123b15c182c71d581cb26af27
Author: Nikolay Izhikov <ni...@apache.org>
AuthorDate: Wed Oct 26 21:25:49 2022 +0300

    IGNITE-17177 Tests fix.
---
 .../cache/persistence/snapshot/AbstractSnapshotSelfTest.java           | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/AbstractSnapshotSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/AbstractSnapshotSelfTest.java
index 3623553ee4a..3b8159d88b7 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/AbstractSnapshotSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/AbstractSnapshotSelfTest.java
@@ -175,7 +175,8 @@ public abstract class AbstractSnapshotSelfTest extends GridCommonAbstractTest {
                     .setMaxSize(100L * 1024 * 1024)
                     .setPersistenceEnabled(persistence))
                 .setCheckpointFrequency(3000)
-                .setPageSize(DFLT_PAGE_SIZE))
+                .setPageSize(DFLT_PAGE_SIZE)
+                .setWalCompactionEnabled(true))
             .setClusterStateOnStart(INACTIVE)
             .setIncludeEventTypes(EVTS_CLUSTER_SNAPSHOT)
             .setDiscoverySpi(discoSpi);