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 2023/10/06 07:42:45 UTC

[ignite] branch cache_dumps updated (8018473c5f9 -> 853ec9cc9b0)

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

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


    from 8018473c5f9 IGNITE-20472 Dump API implemented (#10953)
     add 1c2020212fb IGNITE-20546 Fix transactions expiration set for reinsert (#10972)
     add a6751098758 IGNITE-20543 Wrap CacheStore creation to sandbox (#10971)
     add 6f5e27e2e89 IGNITE-20506 CacheAtomicityMode#TRANSACTIONAL_SNAPSHOT removal (#10964)
     add 0e978105b0d IGNITE-20507 Fixed StoredCacheData removing when a node filter is set (#10970)
     add aba71e1a151 IGNITE-20581 Updated Spring dependency to 5.2.25.RELEASE version (#10977)
     add 853ec9cc9b0 Merge branch 'master' into cache_dumps

No new revisions were added by this update.

Summary of changes:
 docs/_docs/SQL/sql-transactions.adoc               |  87 ---------
 docs/_docs/code-snippets/dotnet/SqlTransactions.cs | 102 ----------
 .../apache/ignite/snippets/SqlTransactions.java    |  33 ----
 docs/_docs/code-snippets/xml/mvcc.xml              |  46 -----
 docs/_docs/configuring-caches/atomicity-modes.adoc |   8 -
 docs/_docs/sql-reference/ddl.adoc                  |   2 +-
 docs/_docs/sql-reference/transactions.adoc         |  69 -------
 docs/_docs/transactions/mvcc.adoc                  | 193 -------------------
 .../GridCommandHandlerIndexForceRebuildTest.java   |   8 -
 .../apache/ignite/cache/CacheAtomicityMode.java    |  47 +----
 .../cache/CacheAffinitySharedManager.java          |   7 +-
 .../processors/cache/CacheGroupContext.java        |   3 +-
 .../processors/cache/ClusterCachesInfo.java        |  23 ++-
 .../processors/cache/GridCacheContext.java         |  10 +-
 .../processors/cache/GridCacheMapEntry.java        |  45 +----
 .../processors/cache/GridCacheProcessor.java       |  71 ++++---
 .../internal/processors/cache/GridCacheUtils.java  |  30 ---
 .../processors/cache/GridLocalConfigManager.java   |  11 --
 .../cache/ValidationOnNodeJoinUtils.java           |  59 ------
 .../distributed/dht/GridDhtTxPrepareFuture.java    |   2 +-
 .../processors/cache/mvcc/MvccProcessor.java       |  24 ---
 .../processors/cache/mvcc/MvccProcessorImpl.java   |  75 +-------
 .../internal/processors/cache/mvcc/MvccUtils.java  |  15 --
 .../GridCacheDatabaseSharedManager.java            |  12 +-
 .../cache/persistence/tree/util/PageHandler.java   |   9 -
 .../ignite/cache/NodeWithFilterRestartTest.java    | 210 ++++++++++++++++++---
 .../internal/IgniteClientReconnectCacheTest.java   |   2 +-
 .../cache/AbstractDataTypesCoverageTest.java       |   2 +-
 .../cache/IgniteOutOfMemoryPropagationTest.java    |   2 +-
 .../IgniteCacheMultiClientsStartTest.java          |   2 +-
 .../distributed/IgniteCacheTxIteratorSelfTest.java |   2 +-
 .../CacheObjectTransformationEvolutionTest.java    |   2 +-
 .../transform/CacheObjectTransformationTest.java   |   2 +-
 .../security/sandbox/AbstractSandboxTest.java      |   2 +-
 .../sandbox/CacheStoreFactorySandboxTest.java      | 113 +++++++++++
 .../ignite/testsuites/SecurityTestSuite.java       |   2 +
 .../processors/query/h2/IgniteH2Indexing.java      |   3 +-
 .../internal/processors/query/h2/QueryParser.java  |  72 +------
 .../query/h2/sql/GridSqlQueryParser.java           |   2 +-
 .../cache/CacheQueryFilterExpiredTest.java         | 106 +++++++++--
 .../index/DynamicEnableIndexingBasicSelfTest.java  |   2 +-
 .../DynamicEnableIndexingConcurrentSelfTest.java   |   2 +-
 .../internal/processors/query/LazyOnDmlTest.java   |   2 +-
 .../query/WrongQueryEntityFieldTypeTest.java       |   2 +-
 .../Cache/Configuration/CacheAtomicityMode.cs      |  33 +---
 .../config/mvcc/benchmark-mvcc-messages.sh         |  97 ----------
 .../config/mvcc/benchmark-mvcc-processor.sh        |  94 ---------
 .../mvcc/benchmark-mvcc-updates-contention.sh      |  95 ----------
 .../config/mvcc/benchmark-thin-native.properties   | 123 ------------
 .../benchmark-jdbc-thin-inmemory-mvcc.properties   | 104 ----------
 .../jdbc/mvcc/MvccUpdateContentionBenchmark.java   |  12 --
 parent/pom.xml                                     |   2 +-
 52 files changed, 485 insertions(+), 1598 deletions(-)
 delete mode 100644 docs/_docs/SQL/sql-transactions.adoc
 delete mode 100644 docs/_docs/code-snippets/dotnet/SqlTransactions.cs
 delete mode 100644 docs/_docs/code-snippets/java/src/main/java/org/apache/ignite/snippets/SqlTransactions.java
 delete mode 100644 docs/_docs/code-snippets/xml/mvcc.xml
 delete mode 100644 docs/_docs/sql-reference/transactions.adoc
 delete mode 100644 docs/_docs/transactions/mvcc.adoc
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/security/sandbox/CacheStoreFactorySandboxTest.java
 delete mode 100644 modules/yardstick/config/mvcc/benchmark-mvcc-messages.sh
 delete mode 100644 modules/yardstick/config/mvcc/benchmark-mvcc-processor.sh
 delete mode 100644 modules/yardstick/config/mvcc/benchmark-mvcc-updates-contention.sh
 delete mode 100644 modules/yardstick/config/mvcc/benchmark-thin-native.properties
 delete mode 100644 modules/yardstick/config/upload/benchmark-jdbc-thin-inmemory-mvcc.properties