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

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


    from 1546a76  IGNITE-13778: fix startup_timeout_sec on discovery_test.py 
(#8519)
     add 4d28cb5  IGNITE-13760 .NET: Fix NullPointerException in GetAffinity on 
client nodes
     add ea97f8a  IGNITE-13753 Fix non-thread-safe collection in 
JmxMetricExporterSpi - Fixes #8492.
     add 15a5da5  IGNITE-12951 Update documents for migrated extensions - Fixes 
#8488.
     add 743195f  IGNITE-13487 Move logging of delegated errors to debug level. 
(#8283)
     add 006c566  IGNITE-13765 Incorrect work of predicates (< and >) in where 
clause with compound primary key (closes #8510)
     add 2eaabd9  IGNITE-13756: Fix node crash if incorrect SQL query fails. 
(#8495)
     add f5dfac2  IGNITE-13716 Fixed an issue where control utility did not 
hide sensitive information. Fixes #8471
     add 236bbb2  IGNITE-13572 Don't skip filtering for caches with zero 
backups - Fixes #8439.
     add edb736d  IGNITE-13705 : Another node fails with failure of target 
node. (#8484)
     new cbfdf07  Merge remote-tracking branch 'origin/master' into 
ignite-ducktape

The 1 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:
 .../streaming/camel-streamer.adoc                  |   6 +-
 .../streaming/flink-streamer.adoc                  |   6 +-
 .../streaming/flume-sink.adoc                      |   2 +-
 .../streaming/jms-streamer.adoc                    |   4 +-
 .../streaming/kafka-streamer.adoc                  |   6 +-
 .../streaming/mqtt-streamer.adoc                   |   2 +-
 .../streaming/rocketmq-streamer.adoc               |   6 +-
 .../streaming/storm-streamer.adoc                  |   6 +-
 .../streaming/twitter-streamer.adoc                |   6 +-
 .../streaming/zeromq-streamer.adoc                 |   4 +-
 .../jdbc/thin/JdbcThinComplexQuerySelfTest.java    |  36 ++-
 .../internal/commandline/CommandHandler.java       |  33 ++-
 .../internal/commandline/CommonArgParser.java      |  15 ++
 .../GridCommandHandlerSslWithSecurityTest.java     |  59 ++++-
 .../internal/processors/job/GridJobWorker.java     |  42 +--
 .../processors/platform/PlatformProcessorImpl.java |  12 +-
 .../platform/cache/affinity/PlatformAffinity.java  |  48 +---
 .../cache/affinity/PlatformAffinityManager.java    |  78 ++++++
 .../internal/processors/task/GridTaskWorker.java   |  74 +++---
 .../ignite/spi/discovery/tcp/ServerImpl.java       |  70 +++--
 .../spi/indexing/IndexingQueryFilterImpl.java      |   4 -
 .../spi/metric/jmx/JmxMetricExporterSpi.java       |   9 +-
 .../tcp/TcpDiscoveryNetworkIssuesTest.java         |  45 +++-
 .../ignite/spi/metric/jmx/DummyMBeanServer.java    | 291 +++++++++++++++++++++
 .../spi/metric/jmx/JmxMetricExporterSpiTest.java   | 141 ++++++++++
 .../ignite/testsuites/IgniteSpiTestSuite.java      |   5 +-
 .../processors/query/h2/database/H2Tree.java       |  34 +++
 .../processors/query/h2/database/H2TreeIndex.java  |   3 +-
 .../processors/cache/index/BasicIndexTest.java     |  15 ++
 .../DynamicEnableIndexingConcurrentSelfTest.java   |   9 +-
 .../cache/index/SqlPartitionEvictionTest.java      | 215 +++++++++++++++
 .../IgniteBinaryCacheQueryTestSuite.java           |   4 +
 .../Cache/Affinity/AffinityTest.cs                 |  56 ++--
 .../Apache.Ignite.Core/Apache.Ignite.Core.csproj   |   1 +
 .../Impl/Cache/CacheAffinityImpl.cs                |  23 +-
 .../CacheAffinityManager.cs}                       |  28 +-
 .../Impl/Cache/Platform/PlatformCache.cs           |  28 +-
 .../Impl/Cache/Platform/PlatformCacheManager.cs    |  36 +--
 .../Apache.Ignite.Core/Impl/Client/IgniteClient.cs |   6 +
 .../Apache.Ignite.Core/Impl/IIgniteInternal.cs     |   7 +
 .../dotnet/Apache.Ignite.Core/Impl/Ignite.cs       |  47 ++--
 41 files changed, 1249 insertions(+), 273 deletions(-)
 create mode 100644 
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/cache/affinity/PlatformAffinityManager.java
 create mode 100644 
modules/core/src/test/java/org/apache/ignite/spi/metric/jmx/DummyMBeanServer.java
 create mode 100644 
modules/core/src/test/java/org/apache/ignite/spi/metric/jmx/JmxMetricExporterSpiTest.java
 create mode 100644 
modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/SqlPartitionEvictionTest.java
 copy modules/platforms/dotnet/Apache.Ignite.Core/Impl/{Common/Listenable.cs => 
Cache/CacheAffinityManager.cs} (55%)

Reply via email to