This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a change to branch ignite-28273
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
discard e6c99ab2b24 wip
add 3f8bc233e95 IGNITE-28239 Improve MessageTypeException text (#7792)
add d27a7df0406 IGNITE-28268 Fix docker build with custom jdk (#7801)
add 10c837db69a IGNITE-27870 C++ Client: Add server proxy for testing
(#7607)
add c2ad6b8713f IGNITE-28265 .NET: Fix TestSlidingExpiration flakiness
(#7803)
add 889f5020ece IGNITE-28250 Use loopback IP address as listen address in
tests (#7798)
add 35d0692e3e2 IGNITE-28081 C++ Client: Add hashing functions (#7750)
add 9c8e4f2e515 IGNITE-28287 Revert "Update ScaleCube to 2.7.7" (#7808)
add dcf3b5b8074 IGNITE-26763 Improve busy lock coverage for the stop
partition flow (#7797)
add 87c71fefe73 IGNITE-28233 Make ability to exlude mention tickets from
checks durin… (#7809)
add 10c7c833cc9 wip
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 (e6c99ab2b24)
\
N -- N -- N refs/heads/ignite-28273 (10c7c833cc9)
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:
.teamcity/build/distributions/OdbcDeb.kt | 4 +-
.teamcity/build/distributions/OdbcRpm.kt | 4 +-
.teamcity/build/distributions/OdbcZip.kt | 6 +-
.teamcity/files/scripts/bash/CheckCodeBase.sh | 27 +-
.../test/sanity_check/build_types/MentionTicket.kt | 4 +
gradle/libs.versions.toml | 2 +-
.../compaction/ItCatalogCompactionTest.java | 28 +-
...eryAfterCatalogTruncatedAboveStoredLwmTest.java | 30 +-
.../org/apache/ignite/internal/NodeConfig.java | 2 +
.../client/proto/ClientMessageUnpacker.java | 18 +-
.../handler/requests/table/ClientTableCommon.java | 8 +-
.../tx/ClientTransactionDiscardRequest.java | 2 +-
.../ignite/internal/client/TcpClientChannel.java | 20 +-
.../ignite/internal/client/tx/DirectTxUtils.java | 6 +-
.../ignite/client/ClientKeyValueViewTest.java | 13 +-
.../management/topology/ItLogicalTopologyTest.java | 14 +-
.../PlatformCompatibilityTestNodeRunner.java | 21 +-
.../internal/compute/ItExecutionsCleanerTest.java | 14 +-
.../ItDistributionZonesFiltersTest.java | 14 +-
.../rebalance/ItRebalanceTriggersRecoveryTest.java | 37 +-
.../network/scalecube/ScaleCubeClusterService.java | 20 +-
.../ScaleCubeDirectMarshallerTransport.java | 34 +-
.../scalecube/ScaleCubeTopologyService.java | 9 +-
.../ScaleCubeDirectMarshallerTransportTest.java | 5 +-
.../scalecube/ScaleCubeTopologyServiceTest.java | 13 +-
.../PartitionReplicaLifecycleManager.java | 10 +-
modules/platforms/cpp/cmake/dependencies.cmake | 40 +-
modules/platforms/cpp/ignite/common/CMakeLists.txt | 5 +
.../platforms/cpp/ignite/common/big_decimal.cpp | 24 +-
modules/platforms/cpp/ignite/common/big_decimal.h | 19 +-
.../platforms/cpp/ignite/common/bignum_test.cpp | 33 ++
.../cpp/ignite/common/detail/hash_calculator.cpp | 77 ++++
.../cpp/ignite/common/detail/hash_calculator.h | 60 +++
.../cpp/ignite/common/detail/hash_utils.cpp | 131 ++++++
.../cpp/ignite/common/detail/hash_utils.h | 234 +++++++++++
.../cpp/ignite/common/detail/hash_utils_test.cpp | 455 +++++++++++++++++++++
.../cpp/ignite/common/detail/murmur3_hash.cpp | 176 ++++++++
.../ignite/common/detail/murmur3_hash.h} | 16 +-
.../cpp/ignite/common/detail/string_extensions.cpp | 83 ++++
.../common/detail/string_extensions.h} | 39 +-
modules/platforms/cpp/ignite/common/detail/utils.h | 35 +-
modules/platforms/cpp/ignite/common/ignite_time.h | 1 +
.../platforms/cpp/ignite/network/CMakeLists.txt | 2 +-
.../platforms/cpp/tests/fake_server/CMakeLists.txt | 2 +-
.../cpp/tests/fake_server/connection_test.cpp | 35 +-
.../cpp/tests/fake_server/proxy/asio_proxy.h | 275 +++++++++++++
.../tests/fake_server/proxy/message_listener.h} | 30 +-
.../IgniteDistributedCacheTests.cs | 1 +
.../raftsnapshot/ItTableRaftSnapshotsTest.java | 22 +-
.../org/apache/ignite/internal/rest/RestNode.java | 1 +
.../internal/client/ItClientDirectMappingTest.java | 16 +-
.../cluster/management/ItClusterInitTest.java | 1 +
.../management/ItDuplicateNodeNamesTest.java | 12 +-
.../ItNodeBootstrapConfigurationTest.java | 1 +
.../internal/runner/app/ItIgniteServerTest.java | 1 +
.../internal/runner/app/ItNoThreadsLeftTest.java | 1 +
.../runner/app/PlatformTestNodeRunner.java | 4 +
.../app/client/ItAbstractThinClientTest.java | 1 +
.../client/ItThinClientChannelValidatorTest.java | 1 +
.../runner/app/client/ItThinClientSqlTest.java | 2 +-
.../ignite/internal/app/IgniteServerStartTest.java | 1 +
.../ignite/internal/BaseIgniteRestartTest.java | 1 +
.../ignite/internal/ClusterConfiguration.java | 1 +
.../apache/ignite/internal/ConfigTemplates.java | 5 +-
.../org/apache/ignite/internal/ssl/ItSslTest.java | 3 +
.../internal/sql/api/ItSqlCreateZoneTest.java | 26 +-
.../sql/engine/ItUnstableTopologyTest.java | 18 +-
.../internal/sql/sqllogic/ItSqlLogicTest.java | 1 +
...ilablePartitionsRecoveryByFilterUpdateTest.java | 2 +
...lablePartitionsRecoveryWithNodeRestartTest.java | 35 +-
.../internal/table/distributed/TableManager.java | 4 +-
.../ItTransactionPrimaryChangeTest.java | 16 +-
.../tx/distributed/ItTxResourcesVacuumTest.java | 16 +-
.../ignite/internal/tx/PartitionEnlistment.java | 8 +
74 files changed, 1964 insertions(+), 374 deletions(-)
create mode 100644
modules/platforms/cpp/ignite/common/detail/hash_calculator.cpp
create mode 100644 modules/platforms/cpp/ignite/common/detail/hash_calculator.h
create mode 100644 modules/platforms/cpp/ignite/common/detail/hash_utils.cpp
create mode 100644 modules/platforms/cpp/ignite/common/detail/hash_utils.h
create mode 100644
modules/platforms/cpp/ignite/common/detail/hash_utils_test.cpp
create mode 100644 modules/platforms/cpp/ignite/common/detail/murmur3_hash.cpp
copy
modules/platforms/{dotnet/Apache.Ignite.Tests/Compute/Executor/NewerDotnetJobs/EchoJob.cs
=> cpp/ignite/common/detail/murmur3_hash.h} (67%)
create mode 100644
modules/platforms/cpp/ignite/common/detail/string_extensions.cpp
copy modules/platforms/cpp/{tests/compatibility-tests/basic_test.cpp =>
ignite/common/detail/string_extensions.h} (52%)
create mode 100644 modules/platforms/cpp/tests/fake_server/proxy/asio_proxy.h
copy
modules/platforms/{dotnet/Apache.Ignite.Tests/Compute/Executor/NewerDotnetJobs/EchoJob.cs
=> cpp/tests/fake_server/proxy/message_listener.h} (60%)