Apache Ignite .Net客户端服务器连接

时间:2017-09-08 05:01:30

标签: c# .net apache ignite

我是Apache Ignite .Net的新手。我使用Nuget的Apache Ignite创建了两个独立的Web应用程序。一个应用程序设置为客户端使用 clientMode = true 但我不知道如何使用IP,端口等连接这两个应用程序。请帮助我... 请注意,这两个应用程序都在localhost上运行。 I have tried with this link

我没有在客户端web.config中添加Ignite的任何配置详细信息。

我的服务器的web.config:

   <configuration>
  <configSections>
    <section name="igniteConfiguration" type="Apache.Ignite.Core.IgniteConfigurationSection, Apache.Ignite.Core" />
  </configSections>
  <runtime>
    <gcServer enabled="true" />
  </runtime>
  <igniteConfiguration xmlns="http://ignite.apache.org/schema/dotnet/IgniteConfigurationSection"
                        localhost="127.0.0.1" peerAssemblyLoadingMode="CurrentAppDomain">
    <atomicConfiguration atomicSequenceReserveSize="10" />

    <discoverySpi type="TcpDiscoverySpi">
      <ipFinder type="TcpDiscoveryMulticastIpFinder">
        <endpoints>
          <string>127.0.0.1:47500..47502</string>
        </endpoints>
      </ipFinder>
    </discoverySpi>
  </igniteConfiguration>
</configuration>

我的服务器代码用于启动Ignite:

IIgnite ignite = Ignition.StartFromApplicationConfiguration();

客户端应用程序挂起代码:

Ignition.Start()

1 个答案:

答案 0 :(得分:1)

Ignite节点将使用默认配置相互连接,您不需要更改任何内容。

从客户端和服务器上的配置中删除discoverySpi,或确保配置相同。

另请注意,如果没有服务器节点,客户端节点将挂起。