Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/ignite into ignite-3443
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/2ec5d996 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/2ec5d996 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/2ec5d996 Branch: refs/heads/ignite-3443 Commit: 2ec5d996d2d757f5f19af59a41ca1bb076fe5829 Parents: cbfcf7e c421614 Author: Alexey Kuznetsov <[email protected]> Authored: Wed Aug 3 18:25:02 2016 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Wed Aug 3 18:25:02 2016 +0700 ---------------------------------------------------------------------- RELEASE_NOTES.txt | 22 +- modules/benchmarks/pom.xml | 4 +- .../jmh/notify/JmhParkVsNotifyBenchmark.java | 105 ++ .../jmh/notify/JmhWaitStategyBenchmark.java | 259 ++++ .../org/apache/ignite/IgniteFileSystem.java | 3 +- .../igfs/secondary/IgfsSecondaryFileSystem.java | 4 +- .../processors/cache/GridCacheTtlManager.java | 65 +- .../processors/igfs/IgfsCreateResult.java | 2 +- .../internal/processors/igfs/IgfsImpl.java | 63 +- .../processors/igfs/IgfsMetaManager.java | 74 +- .../processors/igfs/IgfsModeResolver.java | 31 +- .../internal/processors/igfs/IgfsPaths.java | 6 +- .../IgfsSecondaryFileSystemCreateContext.java | 3 + .../internal/processors/igfs/IgfsUtils.java | 12 +- .../internal/visor/cache/VisorCacheV4.java | 2 +- .../visor/node/VisorNodeDataCollectorJob.java | 4 +- .../internal/visor/query/VisorQueryJob.java | 38 +- .../query/VisorQueryScanSubstringFilter.java | 63 + .../internal/visor/query/VisorQueryUtils.java | 6 + .../communication/tcp/TcpCommunicationSpi.java | 6 +- .../resources/META-INF/classnames.properties | 20 +- .../cache/CacheGetEntryAbstractTest.java | 37 + .../GridCacheTtlManagerNotificationTest.java | 202 ++++ .../cache/IgniteCacheCreateRestartSelfTest.java | 2 - .../CacheLateAffinityAssignmentTest.java | 4 - .../IgniteCacheExpiryPolicyTestSuite.java | 3 + .../processors/igfs/IgfsAbstractSelfTest.java | 34 +- .../igfs/IgfsDualAbstractSelfTest.java | 13 + .../igfs/IgfsModeResolverSelfTest.java | 51 +- .../junits/common/GridCommonAbstractTest.java | 2 +- .../hadoop/fs/v1/IgniteHadoopFileSystem.java | 7 +- .../hadoop/fs/v2/IgniteHadoopFileSystem.java | 7 +- .../IgniteHadoopFileSystemAbstractSelfTest.java | 1 - .../hadoop/HadoopAbstractMapReduceTest.java | 13 +- .../cache/IgniteCacheQueriesLoadTest1.java | 604 +++++++++ .../IgniteBinaryCacheQueryTestSuite.java | 1 - .../IgniteBinaryCacheQueryTestSuite2.java | 3 + .../Apache.Ignite.Core.Tests.csproj | 1 + .../IgniteConfigurationSerializerTest.cs | 76 +- .../IgniteConfigurationSection.xsd | 1141 +++++++++++++++--- .../dotnet/Apache.Ignite.sln.DotSettings | 4 + .../dotnet/Apache.Ignite/IgniteRunner.cs | 20 +- .../Compute/ClosureExample.cs | 12 +- .../Compute/TaskExample.cs | 14 +- .../Datagrid/ContinuousQueryExample.cs | 16 +- .../Datagrid/DataStreamerExample.cs | 12 +- .../Datagrid/LinqExample.cs | 29 +- .../Datagrid/PutGetExample.cs | 12 +- .../Datagrid/QueryExample.cs | 18 +- .../Datagrid/StoreExample.cs | 20 +- .../Datagrid/TransactionExample.cs | 14 +- .../Events/EventsExample.cs | 16 +- .../Messaging/MessagingExample.cs | 10 +- .../Misc/LifecycleExample.cs | 13 +- .../Services/IMapService.cs | 4 +- .../Services/ServicesExample.cs | 10 +- .../Apache.Ignite.ExamplesDll/Binary/Account.cs | 6 +- .../Apache.Ignite.ExamplesDll/Binary/Address.cs | 2 +- .../Binary/Employee.cs | 8 +- .../Binary/EmployeeKey.cs | 4 +- .../Binary/Organization.cs | 2 +- .../Compute/AverageSalaryJob.cs | 11 +- .../Compute/AverageSalaryTask.cs | 9 +- .../Compute/CharacterCountClosure.cs | 6 +- .../Compute/CharacterCountReducer.cs | 4 +- .../Datagrid/ContinuousQueryFilter.cs | 6 +- .../Datagrid/EmployeeStore.cs | 13 +- .../Datagrid/EmployeeStorePredicate.cs | 5 +- .../Events/LocalListener.cs | 8 +- .../Messaging/LocalListener.cs | 8 +- .../Messaging/RemoteOrderedListener.cs | 10 +- .../Messaging/RemoteUnorderedListener.cs | 10 +- .../Services/MapService.cs | 12 +- 73 files changed, 2830 insertions(+), 512 deletions(-) ----------------------------------------------------------------------
