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

amashenkov pushed a change to branch ignite-21585
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard 419dfef290 LowWatermark refactored, interface extracted, added dummy 
implementation. Subscribe IndexManager and TableManager on LWM updates.
     new 6e2ea23727 LowWatermark refactored, interface extracted, added dummy 
implementation.
     new 1d7dcdc038 Add the earliest observable version calculation in Catalog.
     new 6c07c49e60 Add DeferredEventsQueue for destruction events.
     new 17ff500007 Switch TableManager and IndexManager to LWM events for 
table/index destruction purposes.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (419dfef290)
            \
             N -- N -- N   refs/heads/ignite-21585 (17ff500007)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../internal/catalog/CatalogManagerImpl.java       |  52 +-----
 .../ignite/internal/catalog/CatalogService.java    |   1 +
 .../internal/catalog/events/CatalogEvent.java      |   1 +
 .../internal/catalog/CatalogManagerSelfTest.java   |  32 +---
 .../ignite/client/handler/FakeCatalogService.java  |   4 +-
 .../ignite/internal/index/ItIndexManagerTest.java  |   1 -
 .../apache/ignite/internal/index/IndexManager.java | 198 +++++++++------------
 .../ignite/internal/index/IndexManagerTest.java    |   4 -
 .../runner/app/ItIgniteNodeRestartTest.java        |   2 +-
 .../org/apache/ignite/internal/app/IgniteImpl.java |   2 +-
 .../ignite/internal/schema/SchemaManager.java      |  26 +--
 .../ignite/internal/schema/SchemaManagerTest.java  |   3 +
 .../ignite/internal/table/DeferredEventsQueue.java | 123 +++++++++++++
 .../internal/table/distributed/TableManager.java   | 172 +++++++++---------
 .../table/distributed/index/IndexUtils.java        |  27 +--
 .../table/DeferredEventsQueueSelfTest.java         | 174 ++++++++++++++++++
 16 files changed, 502 insertions(+), 320 deletions(-)
 create mode 100644 
modules/table/src/main/java/org/apache/ignite/internal/table/DeferredEventsQueue.java
 create mode 100644 
modules/table/src/test/java/org/apache/ignite/internal/table/DeferredEventsQueueSelfTest.java

Reply via email to