You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2019/12/27 15:43:41 UTC

[ignite] branch master updated (ea92286 -> 02f5358)

This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from ea92286  IGNITE-12482 Fix query mapping on nodes for REPLICATED caches when there are MOVING partitions - Fixes #7182.
     add 02f5358  IGNITE-12385 .NET Thin Client: Introduce ClusterGroup API

No new revisions were added by this update.

Summary of changes:
 .../platform/client/ClientMessageParser.java       |  14 +
 .../ClientClusterGroupGetNodeIdsRequest.java       |  77 +++++
 ...a => ClientClusterGroupGetNodeIdsResponse.java} |  39 ++-
 .../ClientClusterGroupGetNodesDetailsRequest.java  |  57 ++++
 ...ClientClusterGroupGetNodesDetailsResponse.java} |  39 ++-
 .../cluster/ClientClusterGroupProjection.java      | 159 +++++++++
 .../ClientClusterWalChangeStateResponse.java       |   2 +-
 .../Apache.Ignite.Core.Tests.DotNetCore.csproj     |   1 +
 .../Apache.Ignite.Core.Tests.csproj                |   1 +
 .../Apache.Ignite.Core.Tests/AssertExtensions.cs   |  35 +-
 .../Client/Cluster/ClientClusterGroupTests.cs      | 313 ++++++++++++++++++
 .../Compute/ComputeApiTest.cs                      |  84 ++++-
 .../Apache.Ignite.Core/Apache.Ignite.Core.csproj   |   5 +
 .../Apache.Ignite.Core/Client/IClientCluster.cs    |   2 +-
 .../Client/IClientClusterGroup.cs                  |  96 ++++++
 .../Client/IClientClusterNode.cs                   |  98 ++++++
 .../Apache.Ignite.Core/Impl/Client/ClientOp.cs     |   6 +-
 .../Apache.Ignite.Core/Impl/Client/ClientSocket.cs |   7 +-
 .../Impl/Client/Cluster/ClientCluster.cs           |  64 +---
 .../Impl/Client/Cluster/ClientClusterGroup.cs      | 355 +++++++++++++++++++++
 .../Client/Cluster/ClientClusterGroupProjection.cs | 166 ++++++++++
 .../Impl/Client/Cluster/ClientClusterNode.cs       | 171 ++++++++++
 .../Apache.Ignite.Core/Impl/Client/IgniteClient.cs |  42 +++
 .../dotnet/Apache.Ignite.Core/Impl/Ignite.cs       |   2 +-
 24 files changed, 1740 insertions(+), 95 deletions(-)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/cluster/ClientClusterGroupGetNodeIdsRequest.java
 copy modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/cluster/{ClientClusterWalChangeStateResponse.java => ClientClusterGroupGetNodeIdsResponse.java} (54%)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/cluster/ClientClusterGroupGetNodesDetailsRequest.java
 copy modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/cluster/{ClientClusterWalChangeStateResponse.java => ClientClusterGroupGetNodesDetailsResponse.java} (52%)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/cluster/ClientClusterGroupProjection.java
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/Cluster/ClientClusterGroupTests.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Client/IClientClusterGroup.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Client/IClientClusterNode.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cluster/ClientClusterGroup.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cluster/ClientClusterGroupProjection.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cluster/ClientClusterNode.cs