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

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


    omit 3da3a4d32ef IGNITE-22419 Removed unused dependencies Fourth iteration
    omit e4af22043fa IGNITE-22419 Removed unused dependencies Third iteration
    omit c2ad63b842f IGNITE-22419 Removed unused dependencies Second iteration
    omit e7827a840ba IGNITE-22419 Removed unused dependencies
     add 794a536737f IGNITE-22189 Add expiry policy info to CacheView - Fixes 
#11357.
     add b43ca988726 IGNITE-22439 SQL Calcite: Add test for duplicate keys 
(#11380)
     add faea3b29832 IGNITE-22449 Documentation: Add new Cache View column 
(#11385)
     add 42b3285bbbf IGNITE-22420 Fix expireTime setting for thin client 
replication (#11376)
     add 6721ab9d020 IGNITE-22464 Java thin client: Add events for client start 
and stop - Fixes #11387.
     new aaebaef3c9f IGNITE-22419 Removed unused dependencies
     new c831f5e8a58 IGNITE-22419 Removed unused dependencies Second iteration
     new 955bb251331 IGNITE-22419 Removed unused dependencies Third iteration
     new bbddb7ae097 IGNITE-22419 Removed unused dependencies Fourth iteration

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   (3da3a4d32ef)
            \
             N -- N -- N   refs/heads/ignite-22419 (bbddb7ae097)

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:
 docs/_docs/monitoring-metrics/system-views.adoc    |   1 +
 .../integration/TableDmlIntegrationTest.java       |  14 ++
 .../ignite/jdbc/thin/JdbcThinMetadataSelfTest.java |   1 +
 ...ectionClosedEvent.java => ClientFailEvent.java} |  36 +++--
 .../client/events/ClientLifecycleEvent.java}       |   5 +-
 ...ener.java => ClientLifecycleEventListener.java} |  14 +-
 .../ClientStartEvent.java}                         |  44 +++---
 .../{ConnectionEvent.java => ClientStopEvent.java} |  22 +--
 .../internal/client/thin/TcpIgniteClient.java      |  56 ++++++-
 .../systemview/walker/CacheViewWalker.java         | 176 +++++++++++----------
 .../cache/IgniteCacheOffheapManager.java           |   8 +
 .../cache/IgniteCacheOffheapManagerImpl.java       |  16 ++
 .../cache/persistence/GridCacheOffheapManager.java |  33 ++++
 .../cache/ClientCachePutAllConflictRequest.java    |   8 +-
 .../ignite/spi/systemview/view/CacheView.java      |  80 +++++++++-
 .../client/thin/DataReplicationOperationsTest.java |  51 +++---
 .../IgniteClientLifecycleEventListenerTest.java    |  94 +++++++++++
 .../metric/SystemViewCacheExpiryPolicyTest.java    | 114 +++++++++++++
 .../ignite/internal/metric/SystemViewSelfTest.java | 110 +++++++++++++
 .../ignite/testsuites/IgniteCacheTestSuite13.java  |   2 +
 .../org/apache/ignite/client/ClientTestSuite.java  |   2 +
 21 files changed, 708 insertions(+), 179 deletions(-)
 copy 
modules/core/src/main/java/org/apache/ignite/client/events/{ConnectionClosedEvent.java
 => ClientFailEvent.java} (60%)
 copy 
modules/core/src/{test/java/org/apache/ignite/internal/binary/test/GridBinaryTestClass2.java
 => main/java/org/apache/ignite/client/events/ClientLifecycleEvent.java} (85%)
 copy 
modules/core/src/main/java/org/apache/ignite/client/events/{RequestEventListener.java
 => ClientLifecycleEventListener.java} (73%)
 copy 
modules/core/src/main/java/org/apache/ignite/client/{ClientRetryPolicyContext.java
 => events/ClientStartEvent.java} (57%)
 copy 
modules/core/src/main/java/org/apache/ignite/client/events/{ConnectionEvent.java
 => ClientStopEvent.java} (67%)
 create mode 100644 
modules/core/src/test/java/org/apache/ignite/internal/client/thin/events/IgniteClientLifecycleEventListenerTest.java
 create mode 100644 
modules/core/src/test/java/org/apache/ignite/internal/metric/SystemViewCacheExpiryPolicyTest.java

Reply via email to