This is an automated email from the ASF dual-hosted git repository.
sk0x50 pushed a change to branch colocation
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
from a2968f7b66e Merge remote-tracking branch 'origin/main' into colocation
add 7dc56ce5186 IGNITE-24974 Pool starvation when stopping zone in
colocation mode (#5547)
add 3d844178311 IGNITE-24997 Adapt runner test for the colocation track
(#5551)
add 6a088094c6f IGNITE-25018 Fix flaky ItLearnersTest (#5566)
add 42cb0e5733e IGNITE-25019 Remove unneeded future from
ClusterManagementGroupManager (#5567)
add 00f0183b12b IGNITE-25015 Fix ItAbstractDataStreamerTest test when the
colocation feature is enabled (#5563)
add beb6dc87a52 Merge remote-tracking branch 'origin/main' into colocation
No new revisions were added by this update.
Summary of changes:
.../ignite/client/fakes/FakeInternalTable.java | 15 +-
.../management/ClusterManagementGroupManager.java | 58 ++++---
.../DistributionZonesTestUtil.java | 4 +-
.../replicator/ItBigZoneOperationTest.java} | 33 +++-
.../replicator/NaiveAsyncReadWriteLock.java | 186 +++++++++++++++++++++
.../PartitionReplicaLifecycleManager.java | 40 ++---
.../replicator/NaiveAsyncReadWriteLockTest.java | 140 ++++++++++++++++
.../ignite/internal/raft/ItLearnersTest.java | 22 +--
.../inmemory/ItRaftStorageVolatilityTest.java | 46 ++++-
.../app/ItIgniteInMemoryNodeRestartTest.java | 36 +++-
.../runner/app/ItIgniteNodeRestartTest.java | 31 +++-
.../runner/app/ItReplicaStateManagerTest.java | 15 +-
.../ignite/internal/table/ItTableScanTest.java | 27 ++-
.../partition/ItAbstractPartitionManagerTest.java | 4 +-
.../internal/table/ItOperationRetryTest.java | 13 +-
.../ignite/internal/table/InternalTable.java | 4 +-
.../internal/table/KeyValueBinaryViewImpl.java | 5 +-
.../ignite/internal/table/KeyValueViewImpl.java | 5 +-
.../internal/table/RecordBinaryViewImpl.java | 5 +-
.../ignite/internal/table/RecordViewImpl.java | 5 +-
.../internal/table/distributed/TableManager.java | 44 +++--
.../distributed/storage/InternalTableImpl.java | 10 +-
.../table/partition/HashPartitionManagerImpl.java | 18 +-
23 files changed, 613 insertions(+), 153 deletions(-)
copy
modules/{transactions/src/test/java/org/apache/ignite/internal/tx/TxManagerColocationTest.java
=>
partition-replicator/src/integrationTest/java/org/apache/ignite/internal/partition/replicator/ItBigZoneOperationTest.java}
(50%)
create mode 100644
modules/partition-replicator/src/main/java/org/apache/ignite/internal/partition/replicator/NaiveAsyncReadWriteLock.java
create mode 100644
modules/partition-replicator/src/test/java/org/apache/ignite/internal/partition/replicator/NaiveAsyncReadWriteLockTest.java