You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by mm...@apache.org on 2021/05/17 21:48:23 UTC

[ignite] branch master updated (3109b31 -> 6c8cfbc)

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

mmuzaf pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from 3109b31  IGNITE-13805 Add cache groups snapshot restore on the same topology (#8648)
     add 6c8cfbc  IGNITE-14572 Include metastorage to snapshot (#9047)

No new revisions were added by this update.

Summary of changes:
 .../ignite/internal/pagemem/PageIdAllocator.java   |   6 -
 .../persistence/file/FilePageStoreManager.java     |  32 ++-
 .../cache/persistence/metastorage/MetaStorage.java |  23 +-
 .../metastorage/MetastorageRowStoreEntry.java      |   3 +-
 .../snapshot/IgniteSnapshotManager.java            |  38 +++-
 .../persistence/snapshot/SnapshotFutureTask.java   | 191 ++++++++++-------
 .../snapshot/SnapshotPartitionsVerifyTask.java     |   8 +
 .../snapshot/SnapshotRestoreProcess.java           |   6 +-
 .../persistence/DistributedMetaStorageImpl.java    | 110 ++++++----
 .../persistence/DmsDataWriterWorker.java           | 233 ++++++++++++---------
 .../metastorage/persistence/DmsWorkerStatus.java   |  30 ---
 .../persistence/IgnitePdsCorruptedStoreTest.java   |   3 +-
 .../db/IgnitePdsDataRegionMetricsTest.java         |   4 +-
 .../wal/IgniteNodeStoppedDuringDisableWALTest.java |   4 +-
 .../snapshot/AbstractSnapshotSelfTest.java         |  19 +-
 .../snapshot/IgniteClusterSnapshotSelfTest.java    |  12 +-
 .../snapshot/IgniteSnapshotManagerSelfTest.java    |   7 +-
 .../IgniteSnapshotWithMetastorageTest.java         | 196 +++++++++++++++++
 .../DistributedMetaStoragePersistentTest.java      |   2 +-
 .../persistence/DmsDataWriterWorkerTest.java       |  43 ++--
 .../IgniteBasicWithPersistenceTestSuite.java       |   2 +
 21 files changed, 653 insertions(+), 319 deletions(-)
 delete mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/metastorage/persistence/DmsWorkerStatus.java
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotWithMetastorageTest.java