Merge branch 'ignite-sprint-3' of https://git-wip-us.apache.org/repos/asf/incubator-ignite into ignite-593
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/44b1bb24 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/44b1bb24 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/44b1bb24 Branch: refs/heads/ignite-sprint-3 Commit: 44b1bb24ad41d5961b8ae9848200689ee2384a9e Parents: 58b6ceb b10fdc7 Author: AKuznetsov <akuznet...@gridgain.com> Authored: Fri Apr 3 10:13:49 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Fri Apr 3 10:13:49 2015 +0700 ---------------------------------------------------------------------- DEVNOTES.txt | 17 +- examples/pom-standalone.xml | 1 - .../apache/ignite/cache/CacheTypeMetadata.java | 4 +- .../processors/cache/CacheMetricsImpl.java | 1 + .../cache/CacheStorePartialUpdateException.java | 2 +- .../processors/cache/GridCacheAdapter.java | 16 +- .../processors/cache/GridCacheContext.java | 9 +- .../processors/cache/GridCacheMapEntry.java | 28 +- .../processors/cache/GridCacheProcessor.java | 13 +- .../processors/cache/GridCacheStoreManager.java | 1202 ------------------ .../cache/GridCacheWriteBehindStore.java | 1015 --------------- .../distributed/dht/GridDhtCacheAdapter.java | 6 +- .../distributed/dht/GridDhtCacheEntry.java | 4 +- .../distributed/dht/GridDhtLocalPartition.java | 4 +- .../distributed/dht/GridDhtLockFuture.java | 2 +- .../dht/atomic/GridDhtAtomicCache.java | 8 +- .../local/atomic/GridLocalAtomicCache.java | 4 +- .../cache/store/CacheOsStoreManager.java | 59 + .../cache/store/CacheStoreManager.java | 182 +++ .../store/GridCacheStoreManagerAdapter.java | 1111 ++++++++++++++++ .../cache/store/GridCacheWriteBehindStore.java | 1015 +++++++++++++++ .../cache/transactions/IgniteTxAdapter.java | 5 +- .../transactions/IgniteTxLocalAdapter.java | 39 +- .../cacheobject/IgniteCacheObjectProcessor.java | 14 +- .../IgniteCacheObjectProcessorImpl.java | 10 +- .../processors/plugin/CachePluginManager.java | 8 +- .../processors/query/GridQueryProcessor.java | 143 ++- .../messages/GridQueryNextPageResponse.java | 34 +- .../resources/META-INF/classnames.properties | 14 +- .../cache/GridCachePartitionedWritesTest.java | 3 +- ...idCacheWriteBehindStoreAbstractSelfTest.java | 189 --- .../GridCacheWriteBehindStoreAbstractTest.java | 349 ----- .../GridCacheWriteBehindStoreLocalTest.java | 30 - ...heWriteBehindStoreMultithreadedSelfTest.java | 163 --- ...BehindStorePartitionedMultiNodeSelfTest.java | 215 ---- ...ridCacheWriteBehindStorePartitionedTest.java | 30 - ...GridCacheWriteBehindStoreReplicatedTest.java | 30 - .../GridCacheWriteBehindStoreSelfTest.java | 267 ---- ...idCacheWriteBehindStoreAbstractSelfTest.java | 191 +++ .../GridCacheWriteBehindStoreAbstractTest.java | 350 +++++ .../GridCacheWriteBehindStoreLocalTest.java | 30 + ...heWriteBehindStoreMultithreadedSelfTest.java | 163 +++ ...BehindStorePartitionedMultiNodeSelfTest.java | 216 ++++ ...ridCacheWriteBehindStorePartitionedTest.java | 30 + ...GridCacheWriteBehindStoreReplicatedTest.java | 30 + .../GridCacheWriteBehindStoreSelfTest.java | 268 ++++ .../loadtests/hashmap/GridCacheTestContext.java | 8 +- .../ignite/testsuites/IgniteCacheTestSuite.java | 1 + .../IgniteCacheWriteBehindTestSuite.java | 3 +- .../query/h2/twostep/GridMapQueryExecutor.java | 86 +- .../query/h2/twostep/GridResultPage.java | 9 +- 51 files changed, 3941 insertions(+), 3690 deletions(-) ----------------------------------------------------------------------