Merge branch 'gridgain-7.5.30' into ignite-3414-tests
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/d75f55b6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/d75f55b6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/d75f55b6 Branch: refs/heads/ignite-3414 Commit: d75f55b61eb9b8b72a8e4757196a17e6b7a077d4 Parents: cfc51d7 84e83c9 Author: vozerov-gridgain <[email protected]> Authored: Tue Jul 19 09:53:23 2016 +0300 Committer: vozerov-gridgain <[email protected]> Committed: Tue Jul 19 09:53:23 2016 +0300 ---------------------------------------------------------------------- assembly/LICENSE_FABRIC | 7 +- assembly/LICENSE_HADOOP | 7 +- examples/pom-standalone-lgpl.xml | 6 +- examples/pom-standalone.xml | 6 +- examples/pom.xml | 6 +- examples/schema-import/pom-standalone.xml | 6 +- examples/schema-import/pom.xml | 6 +- .../examples/IndexingBridgeMethodTest.java | 93 ++++ .../IgniteExamplesJ8SelfTestSuite.java | 2 + modules/cassandra/pom.xml | 2 +- modules/core/pom.xml | 6 +- .../java/org/apache/ignite/IgniteCache.java | 25 + .../org/apache/ignite/IgniteDataStreamer.java | 52 ++- .../IgniteDataStreamerTimeoutException.java | 45 ++ .../configuration/CacheConfiguration.java | 3 + .../ignite/internal/MarshallerContextImpl.java | 29 +- .../ignite/internal/binary/BinaryContext.java | 6 +- .../cache/CacheEvictableEntryImpl.java | 11 +- .../processors/cache/GridCacheAdapter.java | 215 ++++++++- .../processors/cache/GridCacheProcessor.java | 2 + .../processors/cache/GridCacheProxyImpl.java | 36 ++ .../processors/cache/IgniteCacheProxy.java | 40 ++ .../processors/cache/IgniteInternalCache.java | 23 + .../continuous/CacheContinuousQueryManager.java | 4 +- .../datastreamer/DataStreamerImpl.java | 71 ++- .../service/GridServiceProcessor.java | 70 ++- .../processors/service/GridServiceProxy.java | 54 +-- .../ignite/internal/util/IgniteUtils.java | 21 + .../OptimizedObjectStreamRegistry.java | 145 +++--- .../apache/ignite/transactions/Transaction.java | 5 +- .../resources/META-INF/classnames.properties | 78 +++- .../GridEventStorageCheckAllEventsSelfTest.java | 30 +- .../binary/BinaryMarshallerSelfTest.java | 41 ++ .../cache/GridCacheAbstractFullApiSelfTest.java | 322 ++++++------- .../cache/GridCacheAbstractMetricsSelfTest.java | 2 +- .../cache/GridCacheAbstractSelfTest.java | 113 ++--- .../GridCacheInterceptorAbstractSelfTest.java | 2 +- .../processors/cache/H2CacheStoreStrategy.java | 468 +++++++++++++++++++ .../cache/IgniteCacheAtomicPeekModesTest.java | 2 +- .../cache/IgniteCachePeekModesAbstractTest.java | 463 +++++++++++++++++- .../processors/cache/MapCacheStoreStrategy.java | 145 ++++++ .../cache/TestCacheStoreStrategy.java | 96 ++++ ...idCacheNearOnlyMultiNodeFullApiSelfTest.java | 170 +++---- ...edOffHeapTieredMultiNodeFullApiSelfTest.java | 2 +- .../CacheKeepBinaryIterationTest.java | 36 +- ...eContinuousQueryMultiNodesFilteringTest.java | 278 +++++++++++ ...dCacheContinuousQueryNodesFilteringTest.java | 168 +++++++ .../datastreamer/DataStreamerTimeoutTest.java | 163 +++++++ ...rviceDeploymentExceptionPropagationTest.java | 80 ++++ .../OptimizedMarshallerPooledSelfTest.java | 44 ++ ...CommunicationRecoveryAckClosureSelfTest.java | 18 + .../junits/common/GridCommonAbstractTest.java | 12 +- .../multijvm/IgniteCacheProcessProxy.java | 153 ++++-- .../testsuites/IgniteBinaryBasicTestSuite.java | 2 + .../ignite/testsuites/IgniteCacheTestSuite.java | 2 + .../IgniteMarshallerSelfTestSuite.java | 2 + modules/flume/README.txt | 2 +- .../cache/IgniteCacheQueryIndexSelfTest.java | 2 +- .../IgniteCacheQuerySelfTestSuite3.java | 4 + .../ignite/visor/commands/VisorConsole.scala | 5 +- .../commands/alert/VisorAlertCommand.scala | 2 +- .../commands/cache/VisorCacheCommand.scala | 40 +- .../commands/cache/VisorCacheStopCommand.scala | 2 +- .../config/VisorConfigurationCommand.scala | 23 +- .../commands/events/VisorEventsCommand.scala | 29 +- .../visor/commands/gc/VisorGcCommand.scala | 11 +- .../visor/commands/kill/VisorKillCommand.scala | 184 ++++++-- .../visor/commands/node/VisorNodeCommand.scala | 13 +- .../visor/commands/vvm/VisorVvmCommand.scala | 11 +- .../scala/org/apache/ignite/visor/visor.scala | 76 +-- parent/pom.xml | 1 + 71 files changed, 3606 insertions(+), 695 deletions(-) ----------------------------------------------------------------------
