You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ti...@apache.org on 2023/01/23 08:32:30 UTC

[ignite] branch IGNITE-17177_inc_snapshots updated (de3d7c8def4 -> f3040a1aeef)

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

timoninmaxim pushed a change to branch IGNITE-17177_inc_snapshots
in repository https://gitbox.apache.org/repos/asf/ignite.git


    from de3d7c8def4 IGNITE-17029 Incremental snapshot creation implemented (#10314)
     add c1c0b285fb9 IGNITE-18199 Implement punching holes in snapshot restoration process. (#10468)
     add 06a1d23509f IGNITE-18519 Change parameter name in the SQL Query view docs (#10474)
     add 184564975f0 IGNITE-18494 Fix ignoring near cache configuration while starting cache not from affinity node (#10476)
     add f7bd3318482 IGNITE-18439 SQL Calcite: Take into account TTL of entries during scans - Fixes #10467.
     add 3fd73a97572 IGNITE-18533 Management API to kill client connection (#10478)
     add 3864f18a72e IGNITE-18515 CDC: add documentation about metadata replication (#10481)
     add 7d46e28cdbd IGNITE-18568 [ducktests] Add explicit filelock package dependency (#10486)
     add 66554a27e4b IGNITE-18438 .NET: Fix marshalling of nested binarizable structures with different schemas. (#10484)
     add 21ffc3e92ea IGNITE-18584 Enlarge compression buffer in order to provide sufficient space for compressors. (#10490)
     add 2abc2470c2c IGNITE-18545 Fixed task execution options propagation. (#10482)
     add f3040a1aeef Merge remote-tracking branch 'upstream/master' into IGNITE-17177_inc_snapshots

No new revisions were added by this update.

Summary of changes:
 .../change-data-capture-extensions.adoc            |  21 +-
 docs/_docs/monitoring-metrics/system-views.adoc    |   2 +-
 docs/_docs/sql-reference/operational-commands.adoc |  27 +
 .../query/calcite/exec/IndexFirstLastScan.java     |   2 +-
 .../processors/query/calcite/exec/IndexScan.java   |  40 +-
 .../processors/query/calcite/exec/TableScan.java   |   4 +
 .../query/calcite/schema/CacheIndexImpl.java       |  15 +-
 .../integration/ExpiredEntriesIntegrationTest.java | 128 +++
 .../query/calcite/planner/AbstractPlannerTest.java |   2 +-
 .../ignite/testsuites/IntegrationTestSuite.java    |   2 +
 .../compress/CompressionProcessorImpl.java         |  13 +-
 .../snapshot/SnapshotCompressionBasicTest.java     | 166 +++-
 .../compress/CompressionProcessorTest.java         | 864 +++------------------
 .../internal/commandline/query/KillCommand.java    |  29 +
 .../internal/commandline/query/KillSubcommand.java |   5 +
 .../testsuites/IgniteControlUtilityTestSuite.java  |   4 +-
 ...dShTest.java => KillCommandsControlShTest.java} |  33 +-
 .../main/java/org/apache/ignite/IgniteCompute.java |   4 +-
 .../apache/ignite/internal/IgniteComputeImpl.java  | 254 +++---
 .../internal/executor/GridExecutorService.java     |  32 +-
 .../processors/affinity/GridAffinityProcessor.java |  10 +-
 .../cache/DynamicCacheChangeRequest.java           |   3 +
 .../processors/cache/GridCacheAdapter.java         |  61 +-
 .../datastructures/CacheDataStructuresManager.java |  21 +-
 .../distributed/GridDistributedCacheAdapter.java   |  16 +-
 .../snapshot/IgniteSnapshotManager.java            |  66 +-
 .../snapshot/SnapshotRestoreProcess.java           | 144 +++-
 .../cache/query/GridCacheQueryManager.java         |  18 +-
 .../processors/closure/GridClosureProcessor.java   | 367 ++-------
 .../processors/odbc/ClientListenerProcessor.java   |  17 +-
 .../platform/cache/PlatformCacheManager.java       |   2 +-
 .../platform/callback/PlatformCallbackGateway.java |   7 +-
 .../platform/client/compute/ClientComputeTask.java |  21 +-
 .../platform/compute/PlatformCompute.java          |   4 -
 .../handlers/cache/GridCacheCommandHandler.java    |  18 +-
 .../rest/handlers/task/GridTaskCommandHandler.java |  13 +-
 .../processors/service/GridServiceProxy.java       |  22 +-
 .../processors/task/GridTaskProcessor.java         | 166 +---
 .../processors/task/GridTaskThreadContextKey.java  |  47 --
 .../internal/processors/task/GridTaskWorker.java   |  41 +-
 .../processors/task/TaskExecutionOptions.java      | 189 +++++
 .../ignite/internal/sql/SqlCommandProcessor.java   |  16 +
 .../org/apache/ignite/internal/sql/SqlKeyword.java |   3 +
 .../org/apache/ignite/internal/sql/SqlParser.java  |   5 +
 ...rviceCommand.java => SqlKillClientCommand.java} |  44 +-
 .../VisorClientConnectionDropTask.java}            |  47 +-
 .../main/resources/META-INF/classnames.properties  |   2 +-
 .../internal/GridContinuousTaskSelfTest.java       |  22 +-
 .../IgniteComputeTopologyExceptionTest.java        |   9 +-
 .../IgniteCacheP2pUnmarshallingNearErrorTest.java  |   2 +-
 .../near/GridCacheNearDynamicStartTest.java        | 158 ++++
 ...om2LruNearEnabledPageEvictionMultinodeTest.java |  10 +
 ...domLruNearEnabledPageEvictionMultinodeTest.java |  10 +
 .../compute/TaskOptionsPropagationTest.java        | 299 +++++++
 .../ignite/testsuites/IgniteCacheTestSuite2.java   |   2 +
 .../testsuites/IgniteComputeGridTestSuite.java     |   4 +-
 ...ridCommandHandlerClusterByClassTest_help.output |   7 +
 ...andHandlerClusterByClassWithSSLTest_help.output |   7 +
 modules/ducktests/tests/docker/requirements.txt    |   1 +
 .../internal/processors/query/h2/QueryParser.java  |   2 +-
 .../apache/ignite/util/KillCommandsMXBeanTest.java |  22 +
 .../apache/ignite/util/KillCommandsSQLTest.java    |  15 +
 .../org/apache/ignite/util/KillCommandsTests.java  |  68 ++
 .../platforms/cpp/core/src/jni/os/linux/utils.cpp  |   2 +-
 .../platforms/cpp/core/src/jni/os/win/utils.cpp    |   2 +-
 .../Binary/BinaryStructureTest.cs                  |  85 ++
 .../Platform/PlatformCacheTopologyChangeTest.cs    |  23 +-
 .../Impl/Binary/Metadata/BinaryType.cs             |  34 +-
 .../Impl/Cache/Platform/PlatformCacheManager.cs    |  17 +-
 .../Impl/Unmanaged/UnmanagedCallbacks.cs           |   7 +-
 70 files changed, 2130 insertions(+), 1695 deletions(-)
 create mode 100644 modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/ExpiredEntriesIntegrationTest.java
 rename modules/control-utility/src/test/java/org/apache/ignite/util/{KillCommandsCommandShTest.java => KillCommandsControlShTest.java} (90%)
 delete mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/task/GridTaskThreadContextKey.java
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/task/TaskExecutionOptions.java
 copy modules/core/src/main/java/org/apache/ignite/internal/sql/command/{SqlKillServiceCommand.java => SqlKillClientCommand.java} (64%)
 copy modules/core/src/main/java/org/apache/ignite/internal/visor/{query/VisorQueryCancelOnInitiatorTask.java => client/VisorClientConnectionDropTask.java} (55%)
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridCacheNearDynamicStartTest.java
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/compute/TaskOptionsPropagationTest.java