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 06ccab132b4c2337cc3539e7a378180ccae4d46c
Merge: b173b50 1e84d44
Author: Anton Vinogradov <a...@apache.org>
AuthorDate: Thu Jun 18 13:22:08 2020 +0300

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

 DEVNOTES.txt                                       |  12 +-
 assembly/dependencies-apache-ignite-slim.xml       | 222 +++++++++++
 assembly/release-apache-ignite-slim.xml            |  50 +++
 examples/README-slim.txt                           |  32 ++
 .../jdbc2/JdbcAbstractDmlStatementSelfTest.java    |   3 +-
 .../persistence/FoldersReuseCompatibilityTest.java |   3 +-
 ...IgnitePersistenceCompatibilityAbstractTest.java |   3 +-
 .../MoveBinaryMetadataCompatibility.java           | 111 ++++++
 .../IgniteCompatibilityBasicTestSuite.java         |   4 +-
 .../org/apache/ignite/client/ClientServices.java   |  56 +++
 .../org/apache/ignite/client/IgniteClient.java     |  20 +
 .../configuration/DataStorageConfiguration.java    |   6 +
 .../ignite/internal/MarshallerContextImpl.java     |   7 +-
 .../internal/MarshallerMappingFileStore.java       |  65 +++-
 .../internal/binary/BinaryClassDescriptor.java     |   4 +-
 .../ignite/internal/binary/BinaryContext.java      |   4 +-
 .../apache/ignite/internal/binary/BinaryUtils.java |   2 +-
 .../internal/client/thin/ClientOperation.java      |   4 +-
 .../internal/client/thin/ClientServicesImpl.java   | 180 +++++++++
 .../ignite/internal/client/thin/ClientUtils.java   |  11 +-
 .../client/thin/ProtocolBitmaskFeature.java        |   5 +-
 .../internal/client/thin/ProtocolContext.java      |  12 +
 .../internal/client/thin/TcpIgniteClient.java      |  16 +
 .../cache/GridCachePartitionExchangeManager.java   |  58 +--
 .../cache/binary/BinaryMetadataFileStore.java      |  79 +++-
 .../binary/CacheObjectBinaryProcessorImpl.java     |   8 +-
 .../dht/preloader/GridDhtPartitionDemander.java    |   2 -
 .../preloader/GridDhtPartitionsExchangeFuture.java |  26 +-
 .../dht/topology/GridClientPartitionTopology.java  |   2 +-
 .../dht/topology/GridDhtPartitionTopology.java     |   2 +-
 .../dht/topology/GridDhtPartitionTopologyImpl.java |  71 ++--
 .../filename/PdsConsistentIdProcessor.java         |   3 +
 .../snapshot/IgniteSnapshotManager.java            |  15 +-
 .../wal/reader/StandaloneGridKernalContext.java    |   4 +-
 .../platform/client/ClientBitmaskFeature.java      |   5 +-
 .../platform/client/ClientMessageParser.java       |  12 +-
 .../client/service/ClientServiceInvokeRequest.java | 323 ++++++++++++++++
 .../platform/services/PlatformServices.java        |  13 +
 .../processors/service/GridServiceProxy.java       |  10 +-
 .../org/apache/ignite/client/AsyncChannelTest.java |  16 +-
 .../ignite/client/ConnectToStartingNodeTest.java   |  12 +-
 .../test/java/org/apache/ignite/client/Person.java |   6 +
 .../client/thin/AbstractThinClientTest.java        |  79 ++++
 .../internal/client/thin/ClusterApiTest.java       |  13 +-
 .../internal/client/thin/ClusterGroupTest.java     |  11 +-
 .../internal/client/thin/ComputeTaskTest.java      |  17 +-
 .../ignite/internal/client/thin/ServicesTest.java  | 417 +++++++++++++++++++++
 ...hallerCacheClientRequestsMappingOnMissTest.java |   5 +-
 .../cache/IgniteMarshallerCacheFSRestoreTest.java  |  11 +-
 .../MarshallerCacheJobRunNodeRestartTest.java      |   3 +-
 .../SetTxTimeoutOnPartitionMapExchangeTest.java    |   6 +-
 .../binary/BinaryMetadataMoveLegacyFolderTest.java | 225 +++++++++++
 .../IgnitePdsBinaryMetadataAsyncWritingTest.java   |   5 +-
 ...gnitePdsBinaryMetadataOnClusterRestartTest.java |  10 +-
 .../IgnitePdsNoSpaceLeftOnDeviceTest.java          |   4 +-
 .../db/IgnitePdsMultiNodePutGetRestartTest.java    |  22 +-
 .../IgniteUidAsConsistentIdMigrationTest.java      |   6 +-
 .../db/wal/reader/IgniteWalReaderTest.java         |   5 +-
 .../TxPartitionCounterStateConsistencyTest.java    |  94 +++++
 ...unterStateConsistencyVolatileRebalanceTest.java |   6 +
 .../colocation/GridTestLifecycleBean.java          |   4 +-
 .../marshaller/MarshallerContextSelfTest.java      |   3 +-
 .../platform/AbstractPlatformServiceCallTask.java  |  30 ++
 .../PlatformServiceCallCollectionsTask.java        |   9 +-
 .../PlatformServiceCallCollectionsThinTask.java    |  65 ++++
 .../ignite/platform/PlatformServiceCallTask.java   |  58 +--
 .../platform/PlatformServiceCallThinTask.java      |  76 ++++
 .../testframework/junits/GridAbstractTest.java     |   5 +-
 .../junits/common/GridCommonAbstractTest.java      |   7 +-
 .../testsuites/IgniteBinaryObjectsTestSuite.java   |   5 +-
 .../modulestest/IgniteLaunchInModularEnvTest.java  |   5 +-
 .../org/apache/ignite/client/ClientTestSuite.java  |   2 +
 .../cache/CacheRegisterMetadataLocallyTest.java    |   2 +-
 .../persistence/db/wal/IgniteWalRecoveryTest.java  | 196 +++++++++-
 .../IgniteConfigurationTest.cs                     |   2 +-
 .../Services/CallPlatformServiceTest.cs            |  37 +-
 .../config/benchmark-thin-services.properties      |  78 ++++
 .../yardstick/config/ignite-services-config.xml    |  51 +++
 .../IgniteThinServiceInvocationBenchmark.java      |  45 +++
 .../yardstick/thin/service/SimpleService.java}     |  30 +-
 .../yardstick/thin/service/SimpleServiceImpl.java} |  36 +-
 81 files changed, 2831 insertions(+), 353 deletions(-)

Reply via email to