You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by na...@apache.org on 2022/03/05 13:03:37 UTC

[ignite] branch master updated (43b9a99 -> 84d005f)

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

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


    from 43b9a99  IGNITE-16608 Fix ODBC connection timeouts
     add 84d005f  IGNITE-14999 Added dynamic restoration of encrypted snapshots. (#9313)

No new revisions were added by this update.

Summary of changes:
 .../managers/encryption/GridEncryptionManager.java |   5 +-
 .../processors/cache/ClusterCachesInfo.java        |  24 +-
 .../cache/DynamicCacheChangeRequest.java           |  19 ++
 .../processors/cache/GridCacheProcessor.java       |  18 +-
 .../internal/processors/cache/StoredCacheData.java |  25 ++
 .../persistence/file/FilePageStoreManager.java     |  60 ++++-
 .../snapshot/IgniteSnapshotManager.java            |  69 ++++-
 .../persistence/snapshot/SnapshotMetadata.java     |  22 +-
 .../snapshot/SnapshotPartitionsVerifyHandler.java  |  94 ++++++-
 .../processors/odbc/ClientListenerProcessor.java   |   2 -
 .../encryption/AbstractEncryptionTest.java         |   2 +-
 .../snapshot/AbstractSnapshotSelfTest.java         |  16 +-
 .../snapshot/EncryptedSnapshotTest.java            | 282 +++++++++++++++++----
 .../snapshot/IgniteClusterSnapshotCheckTest.java   |  91 +------
 .../IgniteClusterSnapshotRestoreBaseTest.java      |   7 -
 .../snapshot/IgniteClusterSnapshotSelfTest.java    |  19 --
 .../snapshot/IgniteSnapshotManagerSelfTest.java    |  18 +-
 .../persistence/snapshot/PlainSnapshotTest.java    | 150 +++++++++++
 .../ignite/testsuites/IgniteSnapshotTestSuite.java |   6 +-
 .../IgniteClusterSnapshotCheckWithIndexesTest.java |   8 -
 .../IgniteClusterSnapshotRestoreMetricsTest.java   |   1 +
 .../SpringEncryptedCacheRestartTest.java           |   8 +-
 22 files changed, 717 insertions(+), 229 deletions(-)
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/PlainSnapshotTest.java