You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2024/02/01 14:21:19 UTC

(ignite-3) branch ignite-20680 updated (515eaeb4ee -> eb7fcb09fe)

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

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


 discard 515eaeb4ee Styles
 discard eb65cd9311 Styles
    omit 172b89a05d Styles
    omit 6af405a2dd Fix tests.
    omit c767768fea Fix tests.
    omit cbb95f1be1 Fix tests.
    omit 46231525ad Implement TABLE_DESTROY and INDEX_DESTROY catalog events, and postpone table and index data removal for historical queries purposes.
     add c1ddcabb81 IGNITE-21144 PartitionReplicaListener should return execution to partition thread pool after calls to PlacementDriver (#3107)
     add 2ecb52c5d5 IGNITE-21393 .NET: Fix TestDataStreamerMetricsWithCancellation flakiness (#3130)
     add c8e5d1143d IGNITE-21278 Add FORCE_INDEX/NO_INDEX hints for calcite engine (#3071)
     add f96035f0fb IGNITE-21414 Use the same event loop for channels of the same logical connection (#3135)
     add f4e8b61e4c Implement TABLE_DESTROY and INDEX_DESTROY catalog events, and postpone table and index data removal for historical queries purposes.
     add eb7fcb09fe Fix tests.

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   (515eaeb4ee)
            \
             N -- N -- N   refs/heads/ignite-20680 (eb7fcb09fe)

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:
 .../network/netty/ChannelEventLoopsSource.java}    |  15 +-
 .../internal/network/netty/ConnectionManager.java  |   5 +
 .../network/recovery/HandshakeManagerUtils.java    |  47 +++--
 .../recovery/RecoveryClientHandshakeManager.java   |   7 +-
 .../recovery/RecoveryServerHandshakeManager.java   |   7 +-
 .../ignite/network/NettyBootstrapFactory.java      |  39 +++-
 .../ignite/network/NettyWorkersRegistrar.java      |   8 +-
 .../network/netty/RecoveryHandshakeTest.java       | 211 +++++++++++++-------
 .../RecoveryClientHandshakeManagerTest.java        |   7 +-
 .../RecoveryServerHandshakeManagerTest.java        |   7 +-
 .../network/DefaultMessagingServiceTest.java       |   8 +-
 .../dotnet/Apache.Ignite.Tests/MetricsTests.cs     |   2 +-
 .../raft/ExecutorInclinedRaftCommandRunner.java    |   8 +-
 .../internal/sql/engine/hint/IgniteHint.java       |   6 +-
 .../internal/sql/engine/prepare/PlannerHelper.java |   3 +
 .../sql/engine/rule/logical/ExposeIndexRule.java   |  90 ++++++++-
 .../ignite/internal/sql/engine/util/Commons.java   |   5 +-
 .../ignite/internal/sql/engine/util/HintUtils.java |  23 +++
 .../sql/engine/planner/AbstractPlannerTest.java    |   4 +-
 .../sql/engine/planner/HashIndexPlannerTest.java   |   2 +-
 .../planner/hints/ForceIndexHintPlannerTest.java   | 172 ++++++++++++++++
 .../planner/hints/NoIndexHintPlannerTest.java      | 184 +++++++++++++++++
 .../internal/table/distributed/TableManager.java   |   3 +-
 .../schema/ExecutorInclinedSchemaSyncService.java  |   8 +-
 .../wrappers/DelegatingPlacementDriver.java        |  71 +++++++
 .../wrappers/ExecutorInclinedPlacementDriver.java  |  69 +++++++
 .../ExecutorInclinedPlacementDriverTest.java       | 218 +++++++++++++++++++++
 27 files changed, 1098 insertions(+), 131 deletions(-)
 copy modules/{catalog/src/main/java/org/apache/ignite/internal/catalog/CatalogCommand.java => network/src/main/java/org/apache/ignite/internal/network/netty/ChannelEventLoopsSource.java} (65%)
 create mode 100644 modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/hints/ForceIndexHintPlannerTest.java
 create mode 100644 modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/hints/NoIndexHintPlannerTest.java
 create mode 100644 modules/table/src/main/java/org/apache/ignite/internal/table/distributed/wrappers/DelegatingPlacementDriver.java
 create mode 100644 modules/table/src/main/java/org/apache/ignite/internal/table/distributed/wrappers/ExecutorInclinedPlacementDriver.java
 create mode 100644 modules/table/src/test/java/org/apache/ignite/internal/table/distributed/wrappers/ExecutorInclinedPlacementDriverTest.java