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

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


    omit 8ccbfcbe18 wip. fix varlen types validation.
    omit 6b1cebfab7 wip. fix temporal types validation.
    omit 095328a64c wip. add tests.
     add 8a541d3b62 IGNITE-17935 Finish implementation of streaming RAFT 
snapshot sender (#1280)
     add 7088f07858 IGNITE-18106 prepareMarshal()/unmarshal() are not relayed 
for Collection subtypes (#1321)
     add a4403f1c17 wip. add tests.
     add d28dbcb659 wip. fix temporal types validation.
     add f2dd61ce91 wip. fix varlen types validation.

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   (8ccbfcbe18)
            \
             N -- N -- N   refs/heads/ignite-18015 (f2dd61ce91)

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.

No new revisions were added by this update.

Summary of changes:
 .../apache/ignite/internal/lock/AutoLockup.java    |  33 ----
 .../ignite/internal/lock/ReusableLockLockup.java   |  52 ------
 .../internal/lock/ReusableLockLockupTest.java      |  54 ------
 modules/network-annotation-processor/build.gradle  |   3 +
 modules/network-annotation-processor/pom.xml       |  12 ++
 .../processor/messages/MessageImplGenerator.java   |   2 +-
 .../network/processor/tests/GenerationTest.java    |  70 ++++++++
 .../network/processor/tests}/TestMessageGroup.java |   9 +-
 .../tests/WithListOfMessagesWithMarshallable.java} |  12 +-
 .../network/processor/tests/WithMarshallable.java} |  11 +-
 .../ignite/network/DefaultMessagingService.java    |   2 +-
 .../snasphot/SnapshotInMemoryStorageFactory.java   |   3 +-
 .../java/org/apache/ignite/internal/raft/Loza.java |   9 +-
 .../raft/storage/SnapshotStorageFactory.java       |   4 +-
 .../storage/impl/IgniteJraftServiceFactory.java    |   8 +-
 .../ignite/raft/jraft/JRaftServiceFactory.java     |   5 +-
 .../jraft/core/DefaultJRaftServiceFactory.java     |   4 +-
 .../storage/snapshot/SnapshotExecutorImpl.java     |   2 +-
 .../internal/schema/row/ExpandableByteBuf.java     |   8 +-
 .../ignite/internal/schema/row/RowAssembler.java   |   8 +-
 .../internal/storage/MvPartitionStorage.java       |   4 +-
 .../internal/table/distributed/TableManager.java   |   3 -
 .../distributed/raft/PartitionDataStorage.java     |  16 +-
 .../table/distributed/raft/PartitionListener.java  |   7 +-
 .../raft/snapshot/PartitionSnapshotStorage.java    |  23 ++-
 .../snapshot/PartitionSnapshotStorageFactory.java  |  50 ++----
 .../raft/snapshot/outgoing/OutgoingSnapshot.java   | 112 ++++++++++--
 .../snapshot/outgoing/OutgoingSnapshotReader.java  |  28 +--
 .../outgoing/OutgoingSnapshotsManager.java         |  46 +++--
 .../raft/snapshot/outgoing/PartitionSnapshots.java |  12 +-
 .../snapshot/outgoing/PartitionsSnapshots.java     |  15 ++
 .../SnapshotAwarePartitionDataStorage.java         |  42 ++++-
 .../raft/snapshot/outgoing/SnapshotMetaUtils.java  |  63 +++++++
 .../PartitionSnapshotStorageFactoryTest.java       |  20 ++-
 .../incoming/IncomingSnapshotCopierTest.java       |   4 +-
 .../outgoing/OutgoingSnapshotCommonTest.java       | 192 +++++++++++++++++++++
 .../OutgoingSnapshotMvDataStreamingTest.java       |  86 +++++++--
 .../outgoing/OutgoingSnapshotReaderTest.java       |  39 ++++-
 .../OutgoingSnapshotTxDataStreamingTest.java       |  43 ++++-
 .../outgoing/OutgoingSnapshotsManagerTest.java     |  22 ++-
 .../SnapshotAwarePartitionDataStorageTest.java     |  33 +++-
 .../snapshot/outgoing/SnapshotMetaUtilsTest.java   |  82 +++++++++
 .../distributed/TestPartitionDataStorage.java      |   8 +-
 .../storage/state/TxStateStorageAbstractTest.java  |  27 +++
 44 files changed, 949 insertions(+), 339 deletions(-)
 delete mode 100644 
modules/core/src/main/java/org/apache/ignite/internal/lock/AutoLockup.java
 delete mode 100644 
modules/core/src/main/java/org/apache/ignite/internal/lock/ReusableLockLockup.java
 delete mode 100644 
modules/core/src/test/java/org/apache/ignite/internal/lock/ReusableLockLockupTest.java
 create mode 100644 
modules/network-annotation-processor/src/test/java/org/apache/ignite/internal/network/processor/tests/GenerationTest.java
 copy modules/{raft/src/test/java/org/apache/ignite/raft/messages => 
network-annotation-processor/src/test/java/org/apache/ignite/internal/network/processor/tests}/TestMessageGroup.java
 (81%)
 copy 
modules/{network/src/test/resources/org/apache/ignite/internal/network/processor/ConflictingTypeMessage.java
 => 
network-annotation-processor/src/test/java/org/apache/ignite/internal/network/processor/tests/WithListOfMessagesWithMarshallable.java}
 (74%)
 copy 
modules/{replicator/src/main/java/org/apache/ignite/internal/replicator/message/ReplicaResponse.java
 => 
network-annotation-processor/src/test/java/org/apache/ignite/internal/network/processor/tests/WithMarshallable.java}
 (81%)
 create mode 100644 
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/raft/snapshot/outgoing/SnapshotMetaUtils.java
 create mode 100644 
modules/table/src/test/java/org/apache/ignite/internal/table/distributed/raft/snapshot/outgoing/OutgoingSnapshotCommonTest.java
 create mode 100644 
modules/table/src/test/java/org/apache/ignite/internal/table/distributed/raft/snapshot/outgoing/SnapshotMetaUtilsTest.java

Reply via email to