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 2021/03/31 09:51:22 UTC

[ignite] branch ignite-cdc updated (ab7bf2b -> b8723fb)

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

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


    from ab7bf2b  IGNITE-14435 Refactor PdsConsistentIdProcessor for reusage (#8946)
     add 47a9014  IGNITE-14222 Exclude evicted partitions from re-encryption - Fixes #8846.
     add b3b7416  IGNITE-14254 Graceful stop rebuilding indexes on a cluster deactivation (#8837)
     add 96ba8f0  IGNITE-14076 Improved throughput of transactional putAll (optimistic rr rc). Fixes #8885
     add 5fdb246  IGNITE-14431 Get rid of useless validation. - Fixes #8939.
     add 1761294  IGNITE-14417 Document performance-statistics-ext module (#8940)
     add 288c290  IGNITE-14347: Fix Node Failure on Receiving Data of Unknown Class via Distributed Metastorage (#8898)
     add 38e270e  Merge branch 'master' into ignite-cdc
     add b8723fb  Merge branch 'ignite-cdc' of https://github.com/apache/ignite into ignite-cdc

No new revisions were added by this update.

Summary of changes:
 docs/_data/toc.yaml                                |   2 +
 .../performance-statistics.adoc                    |  82 ++++
 .../monitoring-metrics/performance-statistics.adoc |   6 +-
 .../GridCommandHandlerIndexForceRebuildTest.java   | 142 +++++--
 .../GridCommandHandlerIndexRebuildStatusTest.java  |   8 +-
 .../org/apache/ignite/internal/IgniteKernal.java   |   3 -
 .../ignite/internal/IgniteNodeAttributes.java      |   3 -
 .../managers/encryption/CacheGroupPageScanner.java | 234 +++++++----
 .../managers/encryption/GridEncryptionManager.java |   8 +
 .../cache/CacheAffinitySharedManager.java          |   2 +
 .../distributed/dht/GridDhtTxPrepareFuture.java    |  47 +--
 .../distributed/dht/atomic/GridDhtAtomicCache.java |  80 ----
 .../dht/topology/GridDhtPartitionTopologyImpl.java |   6 +-
 .../dht/topology/GridDhtPartitionsReservation.java |   5 +-
 .../near/GridNearOptimisticTxPrepareFuture.java    |   2 +-
 .../near/GridNearTxPrepareResponse.java            |   2 +-
 .../GridCacheDatabaseSharedManager.java            |   5 +-
 .../cache/persistence/GridCacheOffheapManager.java |  15 +-
 .../persistence/checkpoint/CheckpointManager.java  |   6 +-
 .../cache/persistence/checkpoint/Checkpointer.java |  37 +-
 .../checkpoint/LightweightCheckpointManager.java   |   6 +-
 .../checkpoint/PartitionDestroyQueue.java          |  18 +-
 .../processors/cache/tree/AbstractDataLeafIO.java  |   2 +-
 .../persistence/DistributedMetaStorageImpl.java    |  57 ++-
 .../processors/query/GridQueryProcessor.java       |  42 +-
 ...sk.java => SchemaIndexCacheCompoundFuture.java} |  47 +--
 ...ientFuture.java => SchemaIndexCacheFuture.java} |  29 +-
 .../schema/SchemaIndexCachePartitionWorker.java    |  20 +-
 .../query/schema/SchemaIndexCacheVisitorImpl.java  |   7 +-
 ...SchemaIndexOperationCancellationException.java} |  13 +-
 .../apache/ignite/internal/util/GridLeanSet.java   |   2 +-
 .../apache/ignite/internal/util/IgniteUtils.java   |   2 +-
 .../IgniteProducer.java}                           |  15 +-
 .../src/test/config/class_list_test_excluded.txt}  |   1 +
 .../encryption/AbstractEncryptionTest.java         |   2 +
 .../encryption/CacheGroupReencryptionTest.java     |   9 +-
 .../IgniteCacheNearRestartRollbackSelfTest.java    |   2 +
 .../DistributedMetaStorageClassloadingTest.java    | 205 +++++++++
 .../ignite/testsuites/IgniteBasicTestSuite.java    |   2 +
 .../processors/query/h2/IgniteH2Indexing.java      |  44 +-
 .../cache/index/AbstractIndexingCommonTest.java    |   6 +-
 .../cache/index/StopRebuildIndexTest.java          | 461 +++++++++++++++++++++
 .../persistence/db/wal/IgniteWalRecoveryTest.java  |   3 +-
 .../query/h2/GridIndexRebuildSelfTest.java         |   6 +-
 .../testsuites/IgnitePdsWithIndexingTestSuite.java |   4 +-
 45 files changed, 1275 insertions(+), 425 deletions(-)
 create mode 100644 docs/_docs/extensions-and-integrations/performance-statistics.adoc
 copy modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/{SchemaNodeLeaveExchangeWorkerTask.java => SchemaIndexCacheCompoundFuture.java} (51%)
 copy modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/{SchemaOperationClientFuture.java => SchemaIndexCacheFuture.java} (62%)
 copy modules/core/src/main/java/org/apache/ignite/internal/processors/{rest/handlers/redis/exception/GridRedisTypeException.java => query/schema/SchemaIndexOperationCancellationException.java} (73%)
 copy modules/core/src/main/java/org/apache/ignite/{internal/processors/cache/mvcc/MvccSnapshotResponseListener.java => lang/IgniteProducer.java} (76%)
 copy modules/{control-utility/src/main/resources/META-INF/classnames.properties => core/src/test/config/class_list_test_excluded.txt} (88%)
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/metastorage/DistributedMetaStorageClassloadingTest.java
 create mode 100644 modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/StopRebuildIndexTest.java