You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2017/05/17 14:01:36 UTC

[2/9] ignite git commit: Merge branch 'master' into ignite-5054-splitter

Merge branch 'master' into ignite-5054-splitter


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/df678925
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/df678925
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/df678925

Branch: refs/heads/ignite-5054-splitter-2
Commit: df678925a75022fa1c332344c1b47202deeabeab
Parents: aa90bad ccaed07
Author: devozerov <vo...@gridgain.com>
Authored: Wed May 17 13:36:49 2017 +0300
Committer: devozerov <vo...@gridgain.com>
Committed: Wed May 17 13:36:49 2017 +0300

----------------------------------------------------------------------
 assembly/LICENSE_FABRIC                         |   2 +-
 assembly/LICENSE_HADOOP                         |   2 +-
 .../DistributedRegressionExample.java           | 149 +++++++
 .../apache/ignite/internal/IgniteKernal.java    |  14 +
 .../stream/v2/DirectByteBufferStreamImplV2.java |  27 +-
 .../managers/communication/GridIoManager.java   | 206 +++++++++-
 .../processors/cache/GridCacheAdapter.java      | 212 +++++-----
 .../cache/GridCacheConcurrentMap.java           |   9 +-
 .../cache/GridCacheConcurrentMapImpl.java       |  35 +-
 .../processors/cache/GridCacheContext.java      |  12 +
 .../processors/cache/GridCacheEventManager.java |  32 ++
 .../processors/cache/GridCacheMapEntry.java     |  14 +-
 .../cache/GridCacheMapEntryFactory.java         |   6 +-
 .../processors/cache/GridCacheProxyImpl.java    |  60 ---
 .../processors/cache/GridNoStorageCacheMap.java |  15 +-
 .../cache/IgniteCacheOffheapManager.java        |   7 +
 .../cache/IgniteCacheOffheapManagerImpl.java    |  17 +
 .../processors/cache/IgniteInternalCache.java   |  61 ---
 .../distributed/GridDistributedCacheEntry.java  |   8 +-
 .../dht/GridCachePartitionedConcurrentMap.java  |  23 +-
 .../distributed/dht/GridDhtCacheAdapter.java    | 170 +-------
 .../distributed/dht/GridDhtCacheEntry.java      |   8 +-
 .../distributed/dht/GridDhtLocalPartition.java  |   8 +-
 .../dht/GridDhtPartitionTopologyImpl.java       |   2 +-
 .../dht/GridPartitionedGetFuture.java           | 158 +++++---
 .../dht/GridPartitionedSingleGetFuture.java     | 141 ++++---
 .../dht/atomic/GridDhtAtomicCache.java          | 226 ++++++-----
 .../dht/atomic/GridDhtAtomicCacheEntry.java     |  11 +-
 .../dht/colocated/GridDhtColocatedCache.java    | 222 ++++++-----
 .../colocated/GridDhtColocatedCacheEntry.java   |  11 +-
 .../colocated/GridDhtDetachedCacheEntry.java    |  10 +-
 .../distributed/near/GridNearCacheAdapter.java  |  23 +-
 .../distributed/near/GridNearCacheEntry.java    |   8 +-
 .../cache/distributed/near/GridNearTxLocal.java |   7 +-
 .../processors/cache/local/GridLocalCache.java  |   6 +-
 .../cache/local/GridLocalCacheEntry.java        |   8 +-
 .../local/atomic/GridLocalAtomicCache.java      | 188 +++++----
 .../GridCacheAtomicSequenceImpl.java            | 101 +----
 .../processors/hadoop/HadoopClasspathUtils.java |   3 +-
 .../platform/cluster/PlatformClusterGroup.java  |  20 +
 .../utils/PlatformConfigurationUtils.java       |   4 +-
 .../ignite/internal/util/IgniteUtils.java       |  49 +--
 .../org/apache/ignite/mxbean/IgniteMXBean.java  |  44 +++
 .../communication/tcp/TcpCommunicationSpi.java  |  17 +-
 .../ignite/spi/discovery/tcp/ClientImpl.java    |  20 +
 .../ignite/spi/discovery/tcp/ServerImpl.java    |  59 ++-
 .../spi/discovery/tcp/TcpDiscoveryImpl.java     |   7 +-
 .../spi/discovery/tcp/TcpDiscoverySpi.java      |   4 +
 .../spi/discovery/tcp/TcpDiscoverySpiMBean.java |  22 ++
 .../TcpDiscoveryRingLatencyCheckMessage.java    |  77 ++++
 .../processors/cache/GridCacheLeakTest.java     |   4 +-
 .../cache/IgniteCacheNoSyncForGetTest.java      | 395 +++++++++++++++++++
 .../GridCachePartitionedFullApiSelfTest.java    |  18 -
 .../cache/eviction/EvictionAbstractTest.java    |  13 +-
 .../IgniteCacheClientNearCacheExpiryTest.java   |   2 +-
 .../IgniteCacheExpiryPolicyAbstractTest.java    |   2 +-
 .../loadtests/hashmap/GridHashMapLoadTest.java  |   4 +-
 .../testsuites/IgniteCacheTestSuite2.java       |   3 +
 modules/hadoop/pom.xml                          |   2 +-
 .../hadoop/jobtracker/HadoopJobTracker.java     |  20 +-
 .../cache/hibernate/HibernateCacheProxy.java    |  25 --
 .../query/h2/twostep/GridMergeIndexSorted.java  |   3 +
 .../query/IgniteSqlSplitterSelfTest.java        |  68 ++++
 .../apache/ignite/ml/math/util/MatrixUtil.java  |   3 +-
 .../org/apache/ignite/ml/IgniteMLTestSuite.java |  35 ++
 .../ml/math/MathImplDistributedTestSuite.java   |   2 +-
 .../ignite/ml/math/MathImplLocalTestSuite.java  |   7 +-
 .../ignite/ml/math/MathImplMainTestSuite.java   |   2 +-
 .../OLSMultipleLinearRegressionTest.java        |   7 +
 .../ml/regressions/RegressionsTestSuite.java    |  32 ++
 .../ignite/impl/binary/binary_type_manager.h    |   6 +-
 .../src/impl/binary/binary_type_manager.cpp     |  83 ++--
 .../Apache.Ignite.Core.Tests.csproj             |   2 +
 .../Binary/BinaryBuilderSelfTest.cs             |  21 +-
 .../Binary/BinarySelfTest.cs                    |  33 +-
 .../Binary/EnumsTest.cs                         | 276 +++++++++++++
 .../Cache/MemoryMetricsTest.cs                  | 134 +++++++
 .../Compute/ComputeApiTest.cs                   |   2 +-
 .../IgniteConfigurationSerializerTest.cs        |   6 +-
 .../IgniteConfigurationTest.cs                  |   4 +-
 .../IgniteStartStopTest.cs                      |   2 +
 .../Apache.Ignite.Core.csproj                   |   2 +
 .../Configuration/MemoryPolicyConfiguration.cs  |   9 +
 .../Apache.Ignite.Core/Cache/IMemoryMetrics.cs  |  55 +++
 .../dotnet/Apache.Ignite.Core/IIgnite.cs        |   7 +
 .../IgniteConfigurationSection.xsd              |   5 +
 .../dotnet/Apache.Ignite.Core/Ignition.cs       |  16 +-
 .../Impl/Binary/BinaryEnum.cs                   |  22 +-
 .../Impl/Binary/BinaryObject.cs                 |   2 +-
 .../Impl/Binary/BinaryProcessor.cs              |   1 -
 .../Impl/Binary/BinaryReflectiveActions.cs      |  12 +-
 .../BinaryReflectiveSerializerInternal.cs       |   9 +-
 .../Impl/Binary/BinarySystemHandlers.cs         | 271 ++++++-------
 .../Impl/Binary/BinaryUtils.cs                  |  39 --
 .../Impl/Binary/BinaryWriter.cs                 |  48 ++-
 .../Binary/DeserializationCallbackProcessor.cs  |  11 +
 .../Impl/Binary/SerializableSerializer.cs       |  10 +-
 .../Impl/Cache/MemoryMetrics.cs                 |  62 +++
 .../Impl/Cluster/ClusterGroupImpl.cs            |  27 +-
 .../dotnet/Apache.Ignite.Core/Impl/Ignite.cs    |   6 +
 .../web-console/backend/app/agentsHandler.js    |  28 +-
 .../web-console/backend/app/browsersHandler.js  |  24 +-
 modules/web-console/frontend/app/app.js         |   7 +-
 .../activities-user-dialog.tpl.pug              |  33 +-
 .../cluster-select/cluster-select.pug           |   6 +-
 .../cluster-select/cluster-select.scss          |  30 ++
 .../app/components/cluster-select/index.js      |   1 +
 .../components/web-console-footer/component.js  |  23 ++
 .../app/components/web-console-footer/index.js  |  23 ++
 .../components/web-console-footer/style.scss    |  55 +++
 .../components/web-console-footer/template.pug  |  19 +
 .../components/web-console-header/component.js  |  34 ++
 .../app/components/web-console-header/index.js  |  23 ++
 .../components/web-console-header/style.scss    | 127 ++++++
 .../components/web-console-header/template.pug  |  25 ++
 .../app/modules/agent/AgentManager.service.js   | 170 +++++---
 .../app/modules/branding/branding.provider.js   |   2 +-
 .../modules/branding/header-title.directive.js  |   6 +-
 .../branding/powered-by-apache.directive.js     |   3 +-
 .../frontend/app/modules/sql/sql.controller.js  |   2 +-
 .../frontend/app/modules/states/signin.state.js |   2 +
 .../frontend/app/primitives/btn/index.scss      | 235 +++++++++++
 .../frontend/app/primitives/index.js            |   2 +
 .../frontend/app/primitives/modal/index.scss    | 180 +++++++++
 .../frontend/app/primitives/table/index.scss    |  91 +++++
 .../frontend/gulpfile.babel.js/paths.js         |   1 +
 .../frontend/gulpfile.babel.js/tasks/bundle.js  |   2 +-
 .../webpack/environments/development.js         |   5 +-
 modules/web-console/frontend/package.json       |   1 +
 .../frontend/public/images/ignite-logo.png      | Bin 1982 -> 0 bytes
 .../frontend/public/images/ignite-logo.svg      |  17 +
 .../frontend/public/images/ignite-logo@2x.png   | Bin 3325 -> 0 bytes
 .../stylesheets/_bootstrap-variables.scss       |   4 +-
 .../frontend/public/stylesheets/style.scss      | 167 +-------
 .../frontend/public/stylesheets/variables.scss  |   6 +
 modules/web-console/frontend/views/403.tpl.pug  |   8 +-
 modules/web-console/frontend/views/404.tpl.pug  |   8 +-
 modules/web-console/frontend/views/base.pug     |   8 +-
 modules/web-console/frontend/views/base2.pug    |   8 +-
 .../frontend/views/includes/footer.pug          |  23 --
 .../frontend/views/includes/header-left.pug     |  64 +++
 .../frontend/views/includes/header-right.pug    |  40 ++
 .../frontend/views/includes/header.pug          |  57 ---
 modules/web-console/frontend/views/index.pug    |   2 +-
 .../web-console/frontend/views/reset.tpl.pug    |  12 +-
 .../web-console/frontend/views/signin.tpl.pug   |  14 +-
 .../console/agent/handlers/ClusterListener.java |  90 +++--
 .../console/agent/handlers/RestListener.java    |   7 +
 .../ignite/console/agent/rest/RestExecutor.java |  19 +-
 .../cache/IgniteGetFromComputeBenchmark.java    | 167 ++++++++
 parent/pom.xml                                  |   3 +-
 151 files changed, 4453 insertions(+), 1806 deletions(-)
----------------------------------------------------------------------