Merge remote-tracking branch 'remotes/origin/ignite-sprint-3' into ignite-645
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/7f69f2ae Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/7f69f2ae Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/7f69f2ae Branch: refs/heads/ignite-366 Commit: 7f69f2aee4251e0a78ca563c5fc8fd139f875e3f Parents: dfb4679 ed6632a Author: sboikov <[email protected]> Authored: Wed Apr 1 22:54:21 2015 +0300 Committer: sboikov <[email protected]> Committed: Wed Apr 1 22:54:21 2015 +0300 ---------------------------------------------------------------------- examples/pom.xml | 19 +- examples/schema-import/pom.xml | 10 +- .../examples/datagrid/CacheQueryExample.java | 12 +- modules/aop/pom.xml | 6 +- modules/aws/pom.xml | 4 +- modules/clients/pom.xml | 10 +- modules/codegen/pom.xml | 4 +- modules/core/pom.xml | 8 +- .../apache/ignite/cache/CachingProvider.java | 2 +- .../store/jdbc/CacheAbstractJdbcStore.java | 2 +- .../cache/store/jdbc/CacheJdbcBlobStore.java | 9 +- .../configuration/FileSystemConfiguration.java | 6 + .../ignite/internal/GridCachePluginContext.java | 2 +- .../apache/ignite/internal/IgniteKernal.java | 5 +- .../cache/CacheObjectByteArrayImpl.java | 2 +- .../processors/cache/CacheObjectContext.java | 14 +- .../processors/cache/CacheObjectImpl.java | 10 +- .../cache/DynamicCacheDescriptor.java | 2 +- .../processors/cache/GridCacheAdapter.java | 4 +- .../processors/cache/GridCacheMapEntry.java | 2 +- .../processors/cache/GridCacheProcessor.java | 66 ++-- .../cache/query/GridCacheQueryManager.java | 16 +- .../continuous/CacheContinuousQueryManager.java | 28 ++ .../IgniteCacheObjectProcessorImpl.java | 173 +++++++---- .../processors/igfs/IgfsDataManager.java | 11 +- .../processors/igfs/IgfsFileAffinityRange.java | 23 +- .../processors/igfs/IgfsHelperImpl.java | 3 +- .../processors/plugin/CachePluginManager.java | 2 +- .../ignite/plugin/CachePluginConfiguration.java | 5 +- .../ignite/plugin/CachePluginContext.java | 2 +- .../ignite/plugin/CachePluginProvider.java | 3 +- .../spi/discovery/tcp/TcpDiscoverySpi.java | 9 +- .../ignite/startup/BasicWarmupClosure.java | 2 +- .../IgniteCacheAtomicLocalStoreValueTest.java | 49 +++ ...iteCacheAtomicNearEnabledStoreValueTest.java | 30 ++ ...maryWriteOrderNearEnabledStoreValueTest.java | 31 ++ ...heAtomicPrimaryWriteOrderStoreValueTest.java | 32 ++ .../cache/IgniteCacheAtomicStoreValueTest.java | 55 ++++ .../IgniteCacheStoreValueAbstractTest.java | 311 +++++++++++++++++++ .../cache/IgniteCacheTxLocalStoreValueTest.java | 49 +++ .../IgniteCacheTxNearEnabledStoreValueTest.java | 30 ++ .../cache/IgniteCacheTxStoreValueTest.java | 49 +++ ...IgniteCacheJdbcBlobStoreNodeRestartTest.java | 52 ++++ ...IgniteCacheStoreNodeRestartAbstractTest.java | 116 +++++++ .../junits/common/GridCommonAbstractTest.java | 2 +- .../ignite/testsuites/IgniteCacheTestSuite.java | 11 + modules/extdata/p2p/pom.xml | 4 +- modules/extdata/uri/pom.xml | 4 +- modules/geospatial/pom.xml | 4 +- modules/hadoop/pom.xml | 8 +- modules/hibernate/pom.xml | 6 +- .../hibernate/CacheHibernateBlobStore.java | 9 +- .../CacheHibernateBlobStoreNodeRestartTest.java | 52 ++++ .../testsuites/IgniteHibernateTestSuite.java | 2 + modules/indexing/pom.xml | 4 +- .../processors/query/h2/IgniteH2Indexing.java | 4 +- modules/jcl/pom.xml | 4 +- modules/jta/pom.xml | 4 +- modules/log4j/pom.xml | 4 +- modules/rest-http/pom.xml | 2 +- modules/scalar/pom.xml | 10 +- modules/schedule/pom.xml | 4 +- modules/schema-import/pom.xml | 2 +- modules/slf4j/pom.xml | 2 +- modules/spring/pom.xml | 8 +- modules/ssh/pom.xml | 8 +- .../ant/beautifier/GridJavadocAntTask.java | 8 +- modules/urideploy/pom.xml | 6 +- modules/visor-console/pom.xml | 8 +- .../scala/org/apache/ignite/visor/visor.scala | 2 +- modules/visor-plugins/pom.xml | 2 +- modules/web/pom.xml | 8 +- modules/yardstick/pom.xml | 6 +- pom.xml | 56 ++-- 74 files changed, 1249 insertions(+), 285 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7f69f2ae/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7f69f2ae/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheMapEntry.java ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7f69f2ae/modules/core/src/test/java/org/apache/ignite/testframework/junits/common/GridCommonAbstractTest.java ----------------------------------------------------------------------
