Merge remote-tracking branch 'remotes/origin/sprint-2' into ignite-424
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/d2ff4ae0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/d2ff4ae0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/d2ff4ae0 Branch: refs/heads/ignite-424 Commit: d2ff4ae0b7fae86935ba69e857089672a2f830a2 Parents: 313ddf1 013b4ba Author: avinogradov <avinogra...@gridgain.com> Authored: Wed Mar 18 16:52:52 2015 +0300 Committer: avinogradov <avinogra...@gridgain.com> Committed: Wed Mar 18 16:52:52 2015 +0300 ---------------------------------------------------------------------- assembly/dependencies-hadoop.xml | 7 +- bin/ignite-schema-import.bat | 2 +- bin/ignite-schema-import.sh | 4 +- bin/include/igniteservice.exe | Bin 6144 -> 0 bytes examples/config/example-cache.xml | 42 +- examples/config/filesystem/example-igfs.xml | 11 +- examples/config/store/example-database.script | 22 +- .../config/store/example-jdbc-pojo-store.xml | 142 -- examples/pom.xml | 7 + .../failover/ComputeFailoverExample.java | 1 + .../datagrid/CachePopularNumbersExample.java | 6 +- .../examples/datagrid/CacheQueryExample.java | 73 +- .../starschema/CacheStarSchemaExample.java | 17 +- .../datagrid/starschema/DimProduct.java | 3 +- .../examples/datagrid/starschema/DimStore.java | 3 +- .../datagrid/starschema/FactPurchase.java | 2 + .../store/CacheNodeWithStoreStartup.java | 48 +- .../datagrid/store/CacheStoreExample.java | 19 + .../store/dummy/CacheDummyPersonStore.java | 1 + .../store/jdbc/CacheJdbcPojoPersonStore.java | 11 - .../examples/datagrid/store/model/Person.java | 2 +- .../datagrid/store/model/PersonKey.java | 97 - .../MemcacheRestExampleNodeStartup.java | 7 - .../apache/ignite/examples/ComputeExample.java | 2 +- .../apache/ignite/gridify/AbstractAopTest.java | 6 +- .../rest/AbstractRestProcessorSelfTest.java | 2 +- .../ignite/jdbc/JdbcComplexQuerySelfTest.java | 8 +- .../ignite/jdbc/JdbcEmptyCacheSelfTest.java | 5 +- .../ignite/jdbc/JdbcLocalCachesSelfTest.java | 16 +- .../ignite/jdbc/JdbcMetadataSelfTest.java | 6 +- .../jdbc/JdbcPreparedStatementSelfTest.java | 5 +- .../ignite/jdbc/JdbcResultSetSelfTest.java | 7 +- .../ignite/jdbc/JdbcStatementSelfTest.java | 7 +- .../clients/src/test/resources/spring-cache.xml | 15 - .../src/test/resources/spring-server-node.xml | 7 - .../test/resources/spring-server-ssl-node.xml | 4 - modules/codegen/pom.xml | 6 + .../ignite/codegen/MessageCodeGenerator.java | 8 + modules/core/pom.xml | 112 + .../META-INF/native/linux64/libigniteshmem.so | Bin 138345 -> 0 bytes .../META-INF/native/osx/libigniteshmem.dylib | Bin 33116 -> 0 bytes .../src/main/java/org/apache/ignite/Ignite.java | 2 +- .../java/org/apache/ignite/IgniteCache.java | 110 +- .../ignite/cache/CacheEntryProcessor.java | 28 + .../java/org/apache/ignite/cache/GridCache.java | 221 -- .../ignite/cache/IgniteEntryProcessor.java | 28 - .../apache/ignite/cache/IgniteImmutable.java | 45 - .../cache/affinity/CacheAffinityKeyMapped.java | 12 +- .../org/apache/ignite/cache/query/Query.java | 72 +- .../apache/ignite/cache/query/QueryMetrics.java | 4 +- .../ignite/cache/query/QueryTypeResolver.java | 32 - .../ignite/cache/query/SqlFieldsQuery.java | 7 + .../org/apache/ignite/cache/query/SqlQuery.java | 9 +- .../apache/ignite/cache/query/TextQuery.java | 7 + .../query/annotations/QuerySqlFunction.java | 4 +- .../cache/store/CacheLoadOnlyStoreAdapter.java | 6 +- .../configuration/CacheConfiguration.java | 287 +-- .../configuration/CacheQueryConfiguration.java | 182 -- .../configuration/IgniteConfiguration.java | 20 +- .../configuration/QueryConfiguration.java | 227 -- .../ignite/events/CacheQueryExecutedEvent.java | 2 +- .../ignite/events/CacheQueryReadEvent.java | 2 + .../igfs/IgfsIpcEndpointConfiguration.java | 20 +- .../apache/ignite/igfs/IgfsIpcEndpointType.java | 2 +- .../ignite/internal/GridKernalContextImpl.java | 7 +- .../org/apache/ignite/internal/IgniteEx.java | 10 +- .../apache/ignite/internal/IgniteKernal.java | 4 +- .../org/apache/ignite/internal/IgnitionEx.java | 3 - .../ignite/internal/MarshallerContextImpl.java | 30 +- .../internal/managers/GridManagerAdapter.java | 6 - .../managers/communication/GridIoManager.java | 8 +- .../communication/GridIoMessageFactory.java | 26 + .../processors/cache/CacheObjectImpl.java | 6 + .../processors/cache/CacheProjection.java | 65 +- .../cache/CacheWeakQueryIteratorsHolder.java | 2 +- .../internal/processors/cache/GridCache.java | 222 ++ .../processors/cache/GridCacheAdapter.java | 179 +- .../processors/cache/GridCacheAttributes.java | 27 - .../cache/GridCacheClearAllRunnable.java | 5 +- .../cache/GridCacheConcurrentMap.java | 2 +- .../processors/cache/GridCacheContext.java | 2 + .../processors/cache/GridCacheProcessor.java | 22 +- .../cache/GridCacheProjectionImpl.java | 25 + .../processors/cache/GridCacheProxyImpl.java | 60 + .../processors/cache/GridCacheStoreManager.java | 30 +- .../processors/cache/GridCacheSwapListener.java | 5 +- .../processors/cache/GridCacheSwapManager.java | 29 +- .../processors/cache/GridCacheUtils.java | 1 - .../cache/GridCacheWriteBehindStore.java | 69 +- .../processors/cache/IgniteCacheProxy.java | 210 +- .../processors/cache/QueryCursorImpl.java | 116 + .../processors/cache/query/CacheQuery.java | 2 +- .../query/GridCacheDistributedQueryManager.java | 2 + .../cache/query/GridCacheQueriesEx.java | 9 +- .../cache/query/GridCacheQueriesImpl.java | 11 +- .../cache/query/GridCacheQueriesProxy.java | 4 +- .../cache/query/GridCacheQueryAdapter.java | 3 +- .../cache/query/GridCacheQueryManager.java | 17 +- .../cache/query/GridCacheSqlQuery.java | 2 +- .../cache/query/GridCacheSqlResult.java | 29 - .../cache/query/GridCacheTwoStepQuery.java | 2 +- .../processors/cache/query/QueryCursorEx.java | 46 + .../processors/cache/query/QueryCursorImpl.java | 87 - .../continuous/CacheContinuousQueryHandler.java | 6 + .../continuous/CacheContinuousQueryManager.java | 11 +- .../jdbc/GridCacheQueryJdbcMetadataTask.java | 2 +- .../query/jdbc/GridCacheQueryJdbcTask.java | 243 ++- .../cacheobject/IgniteCacheObjectProcessor.java | 2 +- .../IgniteCacheObjectProcessorImpl.java | 88 +- .../datastreamer/DataStreamerCacheUpdaters.java | 12 +- .../datastructures/DataStructuresProcessor.java | 1 - .../datastructures/GridCacheSetImpl.java | 1 - .../internal/processors/igfs/IgfsProcessor.java | 5 +- .../processors/query/GridQueryIndexing.java | 34 +- .../processors/query/GridQueryProcessor.java | 523 ++--- .../query/GridQueryTypeDescriptor.java | 18 +- .../messages/GridQueryCancelRequest.java | 114 + .../twostep/messages/GridQueryFailResponse.java | 140 ++ .../messages/GridQueryNextPageRequest.java | 167 ++ .../messages/GridQueryNextPageResponse.java | 240 ++ .../h2/twostep/messages/GridQueryRequest.java | 211 ++ .../processors/task/GridTaskProcessor.java | 2 +- .../apache/ignite/internal/util/GridTimer.java | 2 +- .../internal/util/IgniteExceptionRegistry.java | 164 +- .../ignite/internal/util/IgniteUtils.java | 26 + .../internal/util/io/GridFilenameUtils.java | 1 - .../util/nio/GridShmemCommunicationClient.java | 146 -- .../apache/ignite/internal/visor/VisorJob.java | 3 + .../internal/visor/VisorMultiNodeTask.java | 1 + .../visor/cache/VisorCacheConfiguration.java | 35 +- .../cache/VisorCacheDefaultConfiguration.java | 1 - .../visor/cache/VisorCacheMetadataTask.java | 2 +- .../internal/visor/cache/VisorCacheMetrics.java | 1 + .../cache/VisorCacheMetricsCollectorTask.java | 2 +- .../visor/cache/VisorCachePreloadTask.java | 2 +- .../cache/VisorCacheQueryConfiguration.java | 123 ++ .../visor/cache/VisorCacheResetMetricsTask.java | 2 +- .../visor/cache/VisorCacheSwapBackupsTask.java | 2 +- .../compute/VisorComputeMonitoringHolder.java | 10 +- .../node/VisorCacheQueryConfiguration.java | 106 - .../visor/node/VisorGridConfiguration.java | 11 - .../visor/node/VisorNodeDataCollectorJob.java | 7 +- .../node/VisorNodeDataCollectorJobResult.java | 17 + .../visor/node/VisorNodeDataCollectorTask.java | 2 + .../node/VisorNodeDataCollectorTaskResult.java | 10 + .../node/VisorNodeSuppressedErrorsTask.java | 99 + .../visor/node/VisorQueryConfiguration.java | 138 -- .../internal/visor/query/VisorQueryTask.java | 4 +- .../org/apache/ignite/lang/IgniteImmutable.java | 49 + .../org/apache/ignite/lang/IgnitePredicate.java | 4 +- .../optimized/OptimizedMarshallerUtils.java | 16 +- .../org/apache/ignite/spi/IgniteSpiAdapter.java | 7 +- .../org/apache/ignite/spi/IgniteSpiContext.java | 8 - .../communication/tcp/TcpCommunicationSpi.java | 392 +--- .../tcp/TcpCommunicationSpiMBean.java | 8 - .../TcpDiscoveryMulticastIpFinder.java | 4 +- .../spi/indexing/IndexingQueryFilter.java | 2 +- .../ignite/spi/indexing/noop/package.html | 24 + .../spi/swapspace/file/FileSwapSpaceSpi.java | 10 +- .../ignite/startup/BasicWarmupClosure.java | 1 + .../StreamerCacheAffinityEventRouter.java | 2 +- .../TransactionSynchronization.java | 2 +- .../resources/META-INF/classnames.properties | 44 +- .../core/src/test/bin/start-nodes-custom.bat | 3 +- .../spring-cache-client-benchmark-1.xml | 2 - .../spring-cache-client-benchmark-2.xml | 2 - .../spring-cache-client-benchmark-3.xml | 2 - .../core/src/test/config/discovery-stress.xml | 1 - modules/core/src/test/config/example-cache.xml | 3 - modules/core/src/test/config/igfs-loopback.xml | 2 - modules/core/src/test/config/igfs-shmem.xml | 2 - .../src/test/config/io-manager-benchmark.xml | 1 - .../src/test/config/load/cache-benchmark.xml | 2 - .../test/config/load/cache-client-benchmark.xml | 2 - modules/core/src/test/config/log4j-test.xml | 6 + .../config/spring-cache-put-remove-load.xml | 8 - .../core/src/test/config/store/jdbc/Ignite.xml | 2 +- .../test/config/websession/example-cache.xml | 164 ++ modules/core/src/test/java/ExcludeList | 20 + .../GridCacheAffinityBackupsSelfTest.java | 2 + .../cache/store/jdbc/model/Organization.java | 2 +- .../cache/store/jdbc/model/OrganizationKey.java | 2 +- .../ignite/cache/store/jdbc/model/Person.java | 2 +- .../store/jdbc/model/PersonComplexKey.java | 2 +- .../cache/store/jdbc/model/PersonKey.java | 2 +- .../ignite/igfs/IgfsEventsAbstractSelfTest.java | 2 - .../igfs/IgfsFragmentizerAbstractSelfTest.java | 2 - .../ignite/igfs/IgfsFragmentizerSelfTest.java | 1 + .../GridDiscoveryManagerAliveCacheSelfTest.java | 1 - .../cache/GridCacheAbstractFullApiSelfTest.java | 204 +- .../cache/GridCacheAbstractSelfTest.java | 8 + .../cache/GridCacheClearLocalySelfTest.java | 19 +- .../GridCacheConcurrentTxMultiNodeTest.java | 5 +- ...idCacheConfigurationConsistencySelfTest.java | 23 - ...ridCacheConfigurationValidationSelfTest.java | 3 + .../GridCacheDeploymentOffHeapSelfTest.java | 1 - .../GridCacheFieldsQueryNoDataSelfTest.java | 83 - ...CacheFullTextQueryMultithreadedSelfTest.java | 1 - .../cache/GridCacheKeyCheckSelfTest.java | 1 - .../processors/cache/GridCacheLeakTest.java | 1 - .../cache/GridCacheMemoryModeSelfTest.java | 1 - .../cache/GridCacheOffHeapSelfTest.java | 5 +- .../processors/cache/GridCacheOffHeapTest.java | 1 - .../cache/GridCacheP2PUndeploySelfTest.java | 2 - .../cache/GridCachePutAllFailoverSelfTest.java | 1 - .../cache/GridCacheQueryEmbeddedValue.java | 2 + .../cache/GridCacheQueryIndexSelfTest.java | 126 -- .../GridCacheQueryIndexingDisabledSelfTest.java | 1 - .../GridCacheQueryInternalKeysSelfTest.java | 1 - .../GridCacheReturnValueTransferSelfTest.java | 1 + .../processors/cache/GridCacheStopSelfTest.java | 1 - .../processors/cache/GridCacheTestValue.java | 2 +- .../processors/cache/GridCacheTestValue2.java | 2 + ...idCacheWriteBehindStoreAbstractSelfTest.java | 2 +- .../IgniteCacheContainsKeyAbstractSelfTest.java | 2 - .../IgniteTxExceptionAbstractSelfTest.java | 1 - .../cache/IgniteTxMultiNodeAbstractTest.java | 4 + .../GridCacheAbstractJobExecutionTest.java | 9 +- ...tractPartitionedByteArrayValuesSelfTest.java | 2 - .../GridCacheAtomicTimeoutSelfTest.java | 3 +- ...GridCacheLoadingConcurrentGridStartTest.java | 154 ++ .../GridCacheNodeFailureAbstractTest.java | 1 + ...GridCachePreloadRestartAbstractSelfTest.java | 1 + .../IgniteCrossCacheTxStoreSelfTest.java | 6 - .../IgniteTxTimeoutAbstractTest.java | 2 +- .../dht/GridCacheDhtPreloadOffHeapSelfTest.java | 1 - .../dht/GridCacheDhtPreloadSelfTest.java | 1 + .../near/GridCacheNearEvictionSelfTest.java | 1 + .../near/GridCacheNearMultiNodeSelfTest.java | 1 + ...GridCachePartitionedFilteredPutSelfTest.java | 1 + ...idCachePartitionedHitsAndMissesSelfTest.java | 6 - ...achePartitionedPreloadLifecycleSelfTest.java | 1 + ...hePartitionedQueryMultiThreadedSelfTest.java | 305 --- ...stractReplicatedByteArrayValuesSelfTest.java | 2 - .../GridCacheReplicatedInvalidateSelfTest.java | 2 +- ...CacheReplicatedPreloadLifecycleSelfTest.java | 1 + ...idCacheReplicatedPreloadOffHeapSelfTest.java | 3 +- .../GridCacheLruNearEvictionPolicySelfTest.java | 1 - ...heNearOnlyLruNearEvictionPolicySelfTest.java | 1 - ...eCacheAtomicStoreSessionWriteBehindTest.java | 38 + ...acheStoreSessionWriteBehindAbstractTest.java | 269 +++ ...gniteCacheTxStoreSessionWriteBehindTest.java | 32 + .../GridCacheLocalByteArrayValuesSelfTest.java | 1 - .../GridCacheSwapScanQueryAbstractSelfTest.java | 1 + ...ridCacheContinuousQueryAbstractSelfTest.java | 113 +- ...dCacheContinuousQueryReplicatedSelfTest.java | 6 +- ...dCacheAbstractReduceFieldsQuerySelfTest.java | 410 ---- ...ridCacheReduceFieldsQueryAtomicSelfTest.java | 38 - ...GridCacheReduceFieldsQueryLocalSelfTest.java | 37 - ...cheReduceFieldsQueryPartitionedSelfTest.java | 59 - ...acheReduceFieldsQueryReplicatedSelfTest.java | 37 - .../processors/igfs/IgfsAbstractSelfTest.java | 3 +- ...sCachePerBlockLruEvictionPolicySelfTest.java | 4 - .../processors/igfs/IgfsCacheSelfTest.java | 1 - .../igfs/IgfsDataManagerSelfTest.java | 1 - .../igfs/IgfsDualAbstractSelfTest.java | 1 + .../igfs/IgfsExUniversalFileSystemAdapter.java | 17 + .../igfs/IgfsMetaManagerSelfTest.java | 1 - .../processors/igfs/IgfsMetricsSelfTest.java | 4 - .../processors/igfs/IgfsModesSelfTest.java | 4 - .../processors/igfs/IgfsProcessorSelfTest.java | 2 +- .../igfs/IgfsProcessorValidationSelfTest.java | 8 +- ...IpcEndpointRegistrationAbstractSelfTest.java | 2 - .../processors/igfs/IgfsSizeSelfTest.java | 2 - .../processors/igfs/IgfsStreamsSelfTest.java | 2 +- .../processors/igfs/IgfsTaskSelfTest.java | 2 - .../igfs/UniversalFileSystemAdapter.java | 17 + .../IgfsAbstractRecordResolverSelfTest.java | 2 - .../cache/GridCacheCommandHandlerSelfTest.java | 1 - .../util/IgniteExceptionRegistrySelfTest.java | 51 +- .../ipc/shmem/IpcSharedMemoryNodeStartup.java | 1 - .../loadtests/colocation/spring-colocation.xml | 2 - .../communication/GridIoManagerBenchmark0.java | 1 - .../GridContinuousOperationsLoadTest.java | 2 +- .../ignite/loadtests/mapper/TestObject.java | 2 +- .../swap/GridSwapEvictAllBenchmark.java | 1 - .../marshaller/GridMarshallerAbstractTest.java | 1 - .../OptimizedMarshallerNodeFailoverTest.java | 200 ++ .../spi/GridTcpSpiForwardingSelfTest.java | 1 - .../GridTcpCommunicationSpiAbstractTest.java | 17 +- ...mmunicationSpiConcurrentConnectSelfTest.java | 1 - .../GridTcpCommunicationSpiConfigSelfTest.java | 2 - ...cpCommunicationSpiMultithreadedSelfTest.java | 13 +- ...pCommunicationSpiMultithreadedShmemTest.java | 28 - ...ommunicationSpiMultithreadedTcpSelfTest.java | 28 - ...dTcpCommunicationSpiRecoveryAckSelfTest.java | 1 - ...GridTcpCommunicationSpiRecoverySelfTest.java | 1 - .../GridTcpCommunicationSpiShmemSelfTest.java | 31 - .../tcp/GridTcpCommunicationSpiTcpSelfTest.java | 6 +- .../GridCacheStoreValueBytesNode.java | 5 - .../testframework/GridSpiTestContext.java | 5 - .../testframework/junits/GridAbstractTest.java | 1 - .../junits/GridTestKernalContext.java | 2 - .../ignite/testsuites/IgniteCacheTestSuite.java | 3 + .../IgniteMarshallerSelfTestSuite.java | 1 + .../IgniteSpiCommunicationSelfTestSuite.java | 4 +- .../webapp/META-INF/ignite-webapp-config.xml | 60 - .../query/h2/GridH2IndexingGeoSelfTest.java | 8 +- modules/hadoop/pom.xml | 6 + .../HadoopIgfs20FileSystemAbstractSelfTest.java | 15 - .../igfs/HadoopIgfsDualAbstractSelfTest.java | 3 +- ...oopSecondaryFileSystemConfigurationTest.java | 16 - .../igfs/IgfsNearOnlyMultiNodeSelfTest.java | 1 - .../IgniteHadoopFileSystemAbstractSelfTest.java | 18 - .../IgniteHadoopFileSystemClientSelfTest.java | 2 - ...IgniteHadoopFileSystemHandshakeSelfTest.java | 9 - .../IgniteHadoopFileSystemIpcCacheSelfTest.java | 9 - ...niteHadoopFileSystemLoggerStateSelfTest.java | 2 - ...teHadoopFileSystemSecondaryModeSelfTest.java | 4 - .../hadoop/HadoopAbstractSelfTest.java | 6 - .../HadoopDefaultMapReducePlannerSelfTest.java | 6 +- .../HibernateAccessStrategyAdapter.java | 1 - .../hibernate/HibernateCollectionRegion.java | 2 +- .../cache/hibernate/HibernateEntityRegion.java | 2 +- .../hibernate/HibernateGeneralDataRegion.java | 2 +- .../hibernate/HibernateNaturalIdRegion.java | 2 +- .../HibernateNonStrictAccessStrategy.java | 2 +- .../hibernate/HibernateQueryResultsRegion.java | 2 +- .../HibernateReadOnlyAccessStrategy.java | 2 +- .../HibernateReadWriteAccessStrategy.java | 34 +- .../ignite/cache/hibernate/HibernateRegion.java | 2 +- .../cache/hibernate/HibernateRegionFactory.java | 6 +- .../hibernate/HibernateTimestampsRegion.java | 2 +- .../HibernateTransactionalAccessStrategy.java | 4 +- .../HibernateTransactionalDataRegion.java | 2 +- .../HibernateL2CacheConfigurationSelfTest.java | 2 +- .../hibernate/HibernateL2CacheSelfTest.java | 4 +- .../processors/query/h2/IgniteH2Indexing.java | 843 +++---- .../query/h2/opt/GridH2AbstractKeyValueRow.java | 11 +- .../query/h2/opt/GridH2RowDescriptor.java | 16 +- .../query/h2/opt/GridLuceneIndex.java | 8 +- .../processors/query/h2/sql/GridSqlColumn.java | 6 + .../processors/query/h2/sql/GridSqlElement.java | 48 +- .../query/h2/sql/GridSqlFunction.java | 26 +- .../query/h2/sql/GridSqlFunctionType.java | 3 + .../processors/query/h2/sql/GridSqlJoin.java | 30 +- .../query/h2/sql/GridSqlOperationType.java | 6 +- .../query/h2/sql/GridSqlQueryParser.java | 124 +- .../query/h2/sql/GridSqlQuerySplitter.java | 198 +- .../processors/query/h2/sql/GridSqlSelect.java | 100 +- .../query/h2/sql/GridSqlSortColumn.java | 76 + .../processors/query/h2/sql/GridSqlType.java | 94 + .../query/h2/twostep/GridMapQueryExecutor.java | 436 +++- .../query/h2/twostep/GridMergeIndex.java | 111 +- .../h2/twostep/GridMergeIndexUnsorted.java | 44 +- .../h2/twostep/GridReduceQueryExecutor.java | 415 +++- .../query/h2/twostep/GridResultPage.java | 47 +- .../twostep/messages/GridNextPageRequest.java | 70 - .../twostep/messages/GridNextPageResponse.java | 191 -- .../query/h2/twostep/messages/GridQueryAck.java | 45 - .../twostep/messages/GridQueryFailResponse.java | 57 - .../h2/twostep/messages/GridQueryRequest.java | 72 - .../GridCacheAbstractFieldsQuerySelfTest.java | 8 - .../cache/GridCacheAbstractQuerySelfTest.java | 2058 ------------------ .../cache/GridCacheCrossCacheQuerySelfTest.java | 150 +- .../GridCacheCrossCacheQuerySelfTestNewApi.java | 411 ---- .../cache/GridCacheOffHeapAndSwapSelfTest.java | 12 +- ...idCacheQueryEvictsMultiThreadedSelfTest.java | 28 - .../GridCacheQueryIndexDisabledSelfTest.java | 257 +++ .../cache/GridCacheQueryLoadSelfTest.java | 355 --- .../cache/GridCacheQueryMetricsSelfTest.java | 6 - .../GridCacheQueryMultiThreadedSelfTest.java | 869 -------- ...QueryOffheapEvictsMultiThreadedSelfTest.java | 28 - ...dCacheQueryOffheapMultiThreadedSelfTest.java | 28 - .../cache/GridCacheQuerySimpleBenchmark.java | 212 ++ .../cache/GridCacheQueryTestValue.java | 2 +- ...idCacheReduceQueryMultithreadedSelfTest.java | 8 +- .../GridCacheSqlQueryMultiThreadedSelfTest.java | 142 -- .../processors/cache/GridCacheSwapSelfTest.java | 5 +- .../cache/GridIndexingWithNoopSwapSelfTest.java | 13 +- .../IgniteCacheAbstractFieldsQuerySelfTest.java | 778 +++++++ .../cache/IgniteCacheAbstractQuerySelfTest.java | 1550 +++++++++++++ .../IgniteCacheFieldsQueryNoDataSelfTest.java | 84 + ...hePartitionedQueryMultiThreadedSelfTest.java | 311 +++ ...teCacheQueryEvictsMultiThreadedSelfTest.java | 28 + .../cache/IgniteCacheQueryIndexSelfTest.java | 133 ++ .../cache/IgniteCacheQueryLoadSelfTest.java | 339 +++ .../IgniteCacheQueryMultiThreadedSelfTest.java | 747 +++++++ ...QueryOffheapEvictsMultiThreadedSelfTest.java | 28 + ...eCacheQueryOffheapMultiThreadedSelfTest.java | 28 + ...gniteCacheSqlQueryMultiThreadedSelfTest.java | 197 ++ .../GridCacheAtomicFieldsQuerySelfTest.java | 66 - ...cheAtomicNearEnabledFieldsQuerySelfTest.java | 32 - ...GridCacheAtomicNearEnabledQuerySelfTest.java | 38 - .../near/GridCacheAtomicQuerySelfTest.java | 38 - ...CachePartitionedQueryP2PEnabledSelfTest.java | 34 - .../near/GridCachePartitionedQuerySelfTest.java | 479 ---- .../near/GridCacheQueryNodeRestartSelfTest.java | 225 -- .../IgniteCacheAtomicFieldsQuerySelfTest.java | 59 + ...cheAtomicNearEnabledFieldsQuerySelfTest.java | 32 + ...niteCacheAtomicNearEnabledQuerySelfTest.java | 38 + .../near/IgniteCacheAtomicQuerySelfTest.java | 38 + ...rtitionedFieldsQueryP2PDisabledSelfTest.java | 34 + ...niteCachePartitionedFieldsQuerySelfTest.java | 57 + ...achePartitionedQueryP2PDisabledSelfTest.java | 34 + .../IgniteCachePartitionedQuerySelfTest.java | 133 ++ .../IgniteCacheQueryNodeRestartSelfTest.java | 220 ++ .../GridCacheReplicatedFieldsQuerySelfTest.java | 2 +- ...dCacheReplicatedQueryP2PEnabledSelfTest.java | 34 - .../GridCacheReplicatedQuerySelfTest.java | 683 ------ ...eplicatedFieldsQueryP2PDisabledSelfTest.java | 34 + ...gniteCacheReplicatedFieldsQuerySelfTest.java | 79 + ...CacheReplicatedQueryP2PDisabledSelfTest.java | 34 + .../IgniteCacheReplicatedQuerySelfTest.java | 576 +++++ .../GridCacheLocalAtomicQuerySelfTest.java | 32 - .../GridCacheLocalFieldsQuerySelfTest.java | 38 - .../local/GridCacheLocalQuerySelfTest.java | 107 - .../IgniteCacheLocalAtomicQuerySelfTest.java | 32 + .../IgniteCacheLocalFieldsQuerySelfTest.java | 38 + .../local/IgniteCacheLocalQuerySelfTest.java | 85 + ...dCacheAbstractReduceFieldsQuerySelfTest.java | 413 ++++ ...ridCacheReduceFieldsQueryAtomicSelfTest.java | 38 + ...GridCacheReduceFieldsQueryLocalSelfTest.java | 37 + ...cheReduceFieldsQueryPartitionedSelfTest.java | 59 + ...acheReduceFieldsQueryReplicatedSelfTest.java | 37 + .../query/h2/GridH2IndexRebuildTest.java | 8 + .../query/h2/GridH2IndexingOffheapSelfTest.java | 20 +- .../h2/GridIndexingSpiAbstractSelfTest.java | 98 +- .../query/h2/sql/GridQueryParsingTest.java | 67 +- .../tcp/GridOrderedMessageCancelSelfTest.java | 10 - .../IgniteCacheQuerySelfTestSuite.java | 55 +- .../scalar/src/test/resources/spring-cache.xml | 67 +- .../tests/ScalarAffinityRoutingSpec.scala | 6 +- .../ignite/scalar/tests/ScalarCacheSpec.scala | 4 +- .../schema-import/src/main/java/media/style.css | 2 +- .../schema/generator/SnippetGenerator.java | 10 +- .../ignite/cache/spring/SpringCacheManager.java | 2 +- .../util/nodestart/IgniteNodeCallableImpl.java | 42 +- .../commands/cache/VisorCacheCommand.scala | 61 +- .../config/VisorConfigurationCommand.scala | 15 - .../commands/cache/VisorCacheCommandSpec.scala | 17 +- .../internal/websession/WebSessionSelfTest.java | 2 +- modules/winservice/IgniteService.sln | 22 - .../winservice/IgniteService/IgniteService.cs | 170 -- .../IgniteService/IgniteService.csproj | 90 - modules/winservice/README.md | 20 - modules/yardstick/config/ignite-base-config.xml | 52 +- .../yardstick/config/ignite-store-config.xml | 10 - modules/yardstick/pom.xml | 8 +- pom.xml | 88 +- .../basic-concepts/async-support.md | 92 - .../basic-concepts/getting-started.md | 235 -- .../basic-concepts/ignite-life-cycel.md | 122 -- .../documentation/basic-concepts/maven-setup.md | 85 - .../basic-concepts/what-is-ignite.md | 48 - .../basic-concepts/zero-deployment.md | 73 - wiki/documentation/clustering/aws-config.md | 59 - wiki/documentation/clustering/cluster-config.md | 193 -- wiki/documentation/clustering/cluster-groups.md | 227 -- wiki/documentation/clustering/cluster.md | 145 -- .../documentation/clustering/leader-election.md | 76 - wiki/documentation/clustering/network-config.md | 118 - wiki/documentation/clustering/node-local-map.md | 52 - .../documentation/compute-grid/checkpointing.md | 255 --- .../compute-grid/collocate-compute-and-data.md | 46 - wiki/documentation/compute-grid/compute-grid.md | 73 - .../documentation/compute-grid/compute-tasks.md | 122 -- .../compute-grid/distributed-closures.md | 124 -- .../compute-grid/executor-service.md | 40 - .../compute-grid/fault-tolerance.md | 96 - .../compute-grid/job-scheduling.md | 86 - .../compute-grid/load-balancing.md | 76 - .../data-grid/affinity-collocation.md | 95 - .../data-grid/automatic-db-integration.md | 119 - wiki/documentation/data-grid/cache-modes.md | 254 --- wiki/documentation/data-grid/cache-queries.md | 181 -- wiki/documentation/data-grid/data-grid.md | 85 - wiki/documentation/data-grid/data-loading.md | 94 - wiki/documentation/data-grid/evictions.md | 103 - .../data-grid/hibernate-l2-cache.md | 190 -- wiki/documentation/data-grid/jcache.md | 116 - wiki/documentation/data-grid/off-heap-memory.md | 197 -- .../documentation/data-grid/persistent-store.md | 128 -- wiki/documentation/data-grid/rebalancing.md | 122 -- wiki/documentation/data-grid/transactions.md | 144 -- .../data-grid/web-session-clustering.md | 253 --- .../distributed-data-structures/atomic-types.md | 114 - .../countdownlatch.md | 41 - .../distributed-data-structures/id-generator.md | 57 - .../queue-and-set.md | 133 -- .../distributed-events/automatic-batching.md | 33 - wiki/documentation/distributed-events/events.md | 118 - .../distributed-file-system/igfs.md | 18 - .../distributed-messaging/messaging.md | 90 - wiki/documentation/http/configuration.md | 67 - wiki/documentation/http/rest-api.md | 1663 -------------- .../release-notes/release-notes.md | 30 - .../service-grid/cluster-singletons.md | 111 - .../service-grid/service-configuration.md | 50 - .../service-grid/service-example.md | 111 - wiki/documentation/service-grid/service-grid.md | 79 - wiki/licence-prepender.sh | 51 - 492 files changed, 13969 insertions(+), 19852 deletions(-) ----------------------------------------------------------------------