Merge remote-tracking branch 'remotes/origin/master' into ignite-929
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/5e5be0c3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/5e5be0c3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/5e5be0c3 Branch: refs/heads/ignite-929 Commit: 5e5be0c345aa094871059f00745a7a5bbf6d04e0 Parents: bf6fba8 23dc8fc Author: sboikov <sboi...@gridgain.com> Authored: Wed Jul 8 16:27:02 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Wed Jul 8 16:27:02 2015 +0300 ---------------------------------------------------------------------- dev-tools/slurp.sh | 2 +- modules/core/pom.xml | 4 +- .../cache/eviction/fifo/FifoEvictionPolicy.java | 5 - .../cache/eviction/lru/LruEvictionPolicy.java | 5 - .../eviction/sorted/SortedEvictionPolicy.java | 19 +- .../configuration/CacheConfiguration.java | 4 + .../configuration/TransactionConfiguration.java | 23 +++ .../internal/interop/InteropIgnition.java | 17 +- .../internal/interop/InteropProcessor.java | 7 + .../processors/cache/CacheObjectImpl.java | 1 - .../processors/cache/GridCacheAttributes.java | 3 + .../processors/cache/GridCacheContext.java | 8 +- .../processors/cache/GridCacheIoManager.java | 8 +- .../processors/cache/GridCacheProcessor.java | 21 +- .../cache/GridCacheSharedContext.java | 15 +- .../dht/GridPartitionedGetFuture.java | 13 +- .../distributed/near/GridNearGetFuture.java | 4 +- .../cache/jta/CacheJtaManagerAdapter.java | 17 +- .../cache/jta/CacheNoopJtaManager.java | 2 +- .../cache/query/GridCacheQueryAdapter.java | 35 +++- .../processors/query/GridQueryProcessor.java | 5 + .../visor/cache/VisorCacheConfiguration.java | 11 - .../ignite/spi/discovery/tcp/ServerImpl.java | 46 +++++ .../tcp/internal/TcpDiscoveryNode.java | 2 +- .../tcp/internal/TcpDiscoveryNodesRing.java | 8 +- .../tcp/internal/TcpDiscoveryStatistics.java | 10 +- .../cache/CacheFutureExceptionSelfTest.java | 158 +++++++++++++++ .../GridCachePartitionedNodeRestartTest.java | 5 - ...ePartitionedOptimisticTxNodeRestartTest.java | 2 +- .../GridCacheReplicatedFailoverSelfTest.java | 5 - .../GridCacheReplicatedNodeRestartSelfTest.java | 5 - ...acheAtomicReplicatedNodeRestartSelfTest.java | 8 +- ...heConcurrentEvictionConsistencySelfTest.java | 15 +- .../loadtests/hashmap/GridCacheTestContext.java | 4 +- .../tcp/TcpDiscoveryMultiThreadedTest.java | 38 ++++ .../ignite/testsuites/IgniteCacheTestSuite.java | 1 + .../IgniteSpiDiscoverySelfTestSuite.java | 3 + .../HibernateTransactionalDataRegion.java | 12 +- .../hibernate/HibernateL2CacheSelfTest.java | 7 +- .../HibernateL2CacheTransactionalSelfTest.java | 5 - .../CacheAbstractQueryMetricsSelfTest.java | 157 +++++++++++++- .../cache/CacheLocalQueryMetricsSelfTest.java | 33 +++ ...titionedQueryMetricsDistributedSelfTest.java | 33 +++ ...chePartitionedQueryMetricsLocalSelfTest.java | 33 +++ .../CachePartitionedQueryMetricsSelfTest.java | 32 --- ...plicatedQueryMetricsDistributedSelfTest.java | 33 +++ ...acheReplicatedQueryMetricsLocalSelfTest.java | 33 +++ .../CacheReplicatedQueryMetricsSelfTest.java | 32 --- .../IgniteCacheQuerySelfTestSuite.java | 7 +- .../apache/ignite/cache/jta/CacheTmLookup.java | 3 +- .../processors/cache/jta/CacheJtaManager.java | 72 ++++++- .../cache/jta/GridCacheXAResource.java | 16 +- .../processors/cache/GridCacheJtaSelfTest.java | 52 +++-- .../GridTmLookupLifecycleAwareSelfTest.java | 29 ++- modules/kafka/licenses/apache-2.0.txt | 202 +++++++++++++++++++ modules/mesos/pom.xml | 1 - modules/rest-http/pom.xml | 14 +- modules/urideploy/pom.xml | 8 +- .../commands/cache/VisorCacheCommand.scala | 2 - modules/web/pom.xml | 6 +- .../config/benchmark-put-indexed-val.properties | 64 ++++++ modules/yardstick/config/ignite-base-config.xml | 23 +++ .../cache/IgnitePutIndexedValue1Benchmark.java | 42 ++++ .../cache/IgnitePutIndexedValue2Benchmark.java | 42 ++++ .../cache/IgnitePutIndexedValue8Benchmark.java | 42 ++++ .../ignite/yardstick/cache/model/Person1.java | 55 +++++ .../ignite/yardstick/cache/model/Person2.java | 67 ++++++ .../ignite/yardstick/cache/model/Person8.java | 109 ++++++++++ parent/pom.xml | 1 + scripts/git-patch-prop.sh | 2 +- 70 files changed, 1562 insertions(+), 246 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/5e5be0c3/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java ----------------------------------------------------------------------