如何从两个或多个IIS应用程序中使用Apache Ignite

时间:2016-12-28 13:24:49

标签: asp.net apache caching iis ignite

我是Apache Ignite的新手,并尝试在IIS网站和WCF服务中使用Ignite。我的测试用例涉及一台PC上的两个IIS托管的WCF测试服务。我在两个IIS应用程序中的任何一个中实例化Ignite,然后尝试从另一个访问。到目前为止,这还没有奏效。一旦Ignite在一个IIS应用程序中启动,我就会得到一个"默认网格实例已经启动"从另一个应用程序,但另一个应用程序无法获得现有默认网格实例的句柄。

我从两个IIS测试应用程序的Global.asax Application_Start运行下面的代码。希望有人能够提供见解并指出我正确的方向:

Random random = new Random();
short startCounter = 0;
Stopwatch sw = new Stopwatch();
sw.Start();
do
{
    Thread.Sleep( 1000 * random.Next( 10, 20 ) );
    IgniteEngine = Ignition.TryGetIgnite();
    startCounter++;
    if ( null == IgniteEngine )
    {
        LogHelper.Write( "{0}: CacheManager.InitializeCache attempt {1} to get a new ignite instance failed.".InvariantFormat( CommonSystemInfo.MachineName, startCounter ), "TraceLogger" );
    }

    if ( null == IgniteEngine )
    {
        try
        {
            IgniteEngine = Ignition.Start( new IgniteConfiguration
            {
                JvmClasspath = System.IO.Directory.GetFiles( System.Web.HttpContext.Current.Server.MapPath( @"~\bin\libs" ) ).Aggregate( ( x, y ) => x + ";" + y )
            } );
            if ( null != IgniteEngine )
            {
                LogHelper.Write( "{0}: CacheManager.InitializeCache success starting ignite after {1} attempts and {2} seconds".InvariantFormat( CommonSystemInfo.MachineName, startCounter, sw.Elapsed.TotalSeconds ), "TraceLogger" );
            }
        }
        catch ( Exception ex2 )
        {
            LogHelper.Write( "{0}: CacheManager.InitializeCache error while trying to start a new ignite instance. {1}".InvariantFormat( CommonSystemInfo.MachineName, ex2.GetAllMessages() ), "TraceLogger" );
        }
    }
}
while ( null == IgniteEngine && sw.Elapsed.TotalMinutes <= 2 );

1 个答案:

答案 0 :(得分:1)

看起来您的服务在一个IIS应用程序池中运行,这意味着一个进程和不同的应用程序域。这意味着进程中只有一个JVM,这会导致Default grid instance has already been started错误。

您的选择是:

  • 使用不同的IgniteConfiguration.GridName
  • 将不同的IIS应用程序池分配给其中一个服务
  • 在一个应用程序中运行这两项服务,以便TryGetIgnite正常工作,而您不必再启动Ignite两次