You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2021/02/15 08:41:47 UTC

[ignite] branch ignite-ducktape updated (349be54 -> 0c45ac8)

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 349be54  version update
     add 0b6fd9f  IGNITE-13472 Fix security context for JDBC bulkload operations (#8266)
     add a125b53  IGNITE-14139 Incorrect initialize checkpoint-runner-cpu thread pool (#8770)
     add 652f69d  IGNITE-14140 Checkpointer thread holds write lock too long (#8772)
     add 84c6841  IGNITE-14138 Fixed an issue where historical rebalance can kill supplier node. Fixes #8769
     add abd7778  IGNITE-14152 Fixed jcache-tck profile exclude tests mask (#8787)
     add 57c39a1  IGNITE-12941 .NET: Fix and document single file deployment on .NET 5
     add 5d7b59c  IGNITE-13902 Add Ignite thin client Spring bean - Fixes #8752.
     new 0c45ac8  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:
 .../_docs/net-specific/net-deployment-options.adoc |  13 +-
 docs/_docs/net-specific/net-troubleshooting.adoc   |  19 ++
 .../apache/ignite/jdbc/JdbcAuthorizationTest.java  |  23 +-
 modules/core/pom.xml                               |   4 +-
 .../org/apache/ignite/IgniteSystemProperties.java  |   9 +
 .../dht/preloader/GridDhtPartitionSupplier.java    |   5 +-
 .../GridCacheDatabaseSharedManager.java            |  13 +-
 .../cache/persistence/GridCacheOffheapManager.java |  27 ++-
 .../persistence/checkpoint/CheckpointEntry.java    |  17 +-
 .../persistence/checkpoint/CheckpointHistory.java  |  25 +-
 .../persistence/checkpoint/CheckpointWorkflow.java |   4 +-
 .../cache/persistence/freelist/PagesList.java      |  38 ++-
 .../processors/closure/GridClosureProcessor.java   |   6 +-
 .../CacheRebalanceWithRemovedWalSegment.java       | 174 ++++++++++++++
 .../db/file/IgnitePdsCheckpointSimpleTest.java     |  87 ++++++-
 .../db/wal/WalRecoveryTxLogicalRecordsTest.java    |  56 ++++-
 .../ignite/testsuites/IgnitePdsMvccTestSuite.java  |   2 +
 .../ignite/testsuites/IgnitePdsTestSuite4.java     |   2 +
 .../Apache.Ignite.Core.Tests/ProjectFilesTest.cs   |  47 ++++
 .../Apache.Ignite.Core/Apache.Ignite.Core.csproj   |   1 +
 .../Impl/Unmanaged/Jni/DllLoader.cs                |  10 +-
 .../Impl/Unmanaged/NativeLibraryUtils.cs           | 108 +++++++++
 .../Impl/Unmanaged/UnmanagedThread.cs              |  20 +-
 modules/platforms/dotnet/DEVNOTES.txt              |   6 +-
 .../org/apache/ignite/IgniteClientSpringBean.java  | 258 +++++++++++++++++++++
 .../java/org/apache/ignite/IgniteSpringBean.java   |   2 +
 .../internal/IgniteClientSpringBeanTest.java       |  61 +++++
 .../ignite/internal/ignite-client-spring-bean.xml} |  23 +-
 .../ignite/testsuites/IgniteSpringTestSuite.java   |   2 +
 .../surefire/testsuites/AssertOnOrphanedTests.java |   2 +
 .../surefire/testsuites/CheckAllTestsInSuites.java |   2 +-
 .../testsuites/OrphanedTestCollection.java         |  21 +-
 pom.xml                                            |   3 -
 33 files changed, 1002 insertions(+), 88 deletions(-)
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/rebalancing/CacheRebalanceWithRemovedWalSegment.java
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/NativeLibraryUtils.cs
 create mode 100644 modules/spring/src/main/java/org/apache/ignite/IgniteClientSpringBean.java
 create mode 100644 modules/spring/src/test/java/org/apache/ignite/internal/IgniteClientSpringBeanTest.java
 copy modules/{mesos/src/main/resources/ignite-default-config.xml => spring/src/test/java/org/apache/ignite/internal/ignite-client-spring-bean.xml} (61%)


[ignite] 01/01: Merge remote-tracking branch 'origin/master' into ignite-ducktape

Posted by av...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 0c45ac89c2ed466c3862cc092c6e4a7087b646bf
Merge: 349be54 5d7b59c
Author: Anton Vinogradov <av...@apache.org>
AuthorDate: Mon Feb 15 11:41:07 2021 +0300

    Merge remote-tracking branch 'origin/master' into ignite-ducktape

 .../_docs/net-specific/net-deployment-options.adoc |  13 +-
 docs/_docs/net-specific/net-troubleshooting.adoc   |  19 ++
 .../apache/ignite/jdbc/JdbcAuthorizationTest.java  |  23 +-
 modules/core/pom.xml                               |   4 +-
 .../org/apache/ignite/IgniteSystemProperties.java  |   9 +
 .../dht/preloader/GridDhtPartitionSupplier.java    |   5 +-
 .../GridCacheDatabaseSharedManager.java            |  13 +-
 .../cache/persistence/GridCacheOffheapManager.java |  27 ++-
 .../persistence/checkpoint/CheckpointEntry.java    |  17 +-
 .../persistence/checkpoint/CheckpointHistory.java  |  25 +-
 .../persistence/checkpoint/CheckpointWorkflow.java |   4 +-
 .../cache/persistence/freelist/PagesList.java      |  38 ++-
 .../processors/closure/GridClosureProcessor.java   |   6 +-
 .../CacheRebalanceWithRemovedWalSegment.java       | 174 ++++++++++++++
 .../db/file/IgnitePdsCheckpointSimpleTest.java     |  87 ++++++-
 .../db/wal/WalRecoveryTxLogicalRecordsTest.java    |  56 ++++-
 .../ignite/testsuites/IgnitePdsMvccTestSuite.java  |   2 +
 .../ignite/testsuites/IgnitePdsTestSuite4.java     |   2 +
 .../Apache.Ignite.Core.Tests/ProjectFilesTest.cs   |  47 ++++
 .../Apache.Ignite.Core/Apache.Ignite.Core.csproj   |   1 +
 .../Impl/Unmanaged/Jni/DllLoader.cs                |  10 +-
 .../Impl/Unmanaged/NativeLibraryUtils.cs           | 108 +++++++++
 .../Impl/Unmanaged/UnmanagedThread.cs              |  20 +-
 modules/platforms/dotnet/DEVNOTES.txt              |   6 +-
 .../org/apache/ignite/IgniteClientSpringBean.java  | 258 +++++++++++++++++++++
 .../java/org/apache/ignite/IgniteSpringBean.java   |   2 +
 .../internal/IgniteClientSpringBeanTest.java       |  61 +++++
 .../ignite/internal/ignite-client-spring-bean.xml  |  40 ++++
 .../ignite/testsuites/IgniteSpringTestSuite.java   |   2 +
 .../surefire/testsuites/AssertOnOrphanedTests.java |   2 +
 .../surefire/testsuites/CheckAllTestsInSuites.java |   2 +-
 .../testsuites/OrphanedTestCollection.java         |  21 +-
 pom.xml                                            |   3 -
 33 files changed, 1028 insertions(+), 79 deletions(-)