Merge branches 'ignite-639' and 'ignite-sprint-3' of https://git-wip-us.apache.org/repos/asf/incubator-ignite into ignite-639
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/5e0050cb Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/5e0050cb Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/5e0050cb Branch: refs/heads/ignite-452 Commit: 5e0050cb2ab4922b26fbaf3d8ec98799a57dc5ee Parents: 1aba457 ed6632a Author: AKuznetsov <akuznet...@gridgain.com> Authored: Thu Apr 2 13:42:30 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Thu Apr 2 13:42:30 2015 +0700 ---------------------------------------------------------------------- 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/5e0050cb/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java ----------------------------------------------------------------------