15

我正在寻找方法使远程调用不受我控制的服务,直到连接成功。我也不想简单地设置一个计时器,每n秒/分钟执行一次操作,直到成功。经过大量研究,断路器模式似乎非常适合。

我找到了一个使用 Castle Windsor 拦截器的实现,看起来很棒。唯一的问题是我不知道如何使用它。从我发现的有关该主题的几篇文章中,我能找到的唯一用法示例是简单地使用断路器来调用一个动作一次,这似乎不是很有用。由此看来,我似乎需要简单地在循环中使用断路器来运行我的操作while(true)

如何使用 Windsor 拦截器执行调用外部服务的操作,直到它成功而不会猛击我们的服务器?

有人可以填写缺失的部分吗?

这是我能想到的

while(true)
{
    try
    {
        service.Subscribe();
        break;
    }
    catch (Exception e)
    {
        Console.WriteLine("Gotcha!");

        Thread.Sleep(TimeSpan.FromSeconds(10));
    }
}

Console.WriteLine("Success!");

public interface IService
{
    void Subscribe();
}

public class Service : IService
{
    private readonly Random _random = new Random();

    public void Subscribe()
    {
        var a = _random.Next(0, 10) % 2421;
        if(_random.Next(0, 10) % 2 != 0)
            throw new AbandonedMutexException();
    }
}

基于此,我想我现在理解了这个概念以及如何应用它。

4

2 回答 2

10

如果您有很多线程访问相同的资源,这是一个有趣的想法。其工作方式是汇集来自所有线程的尝试计数。您不必担心在实际失败之前编写一个循环来尝试访问数据库 5 次,而是让断路器跟踪所有访问资源的尝试。

在一个示例中,您说 5 个线程运行这样的循环(伪代码):

int errorCount = 0;
while(errorCount < 10) // 10 tries
{
    if(tryConnect() == false)
      errorCount++;
    else
      break;
}

假设你的错误处理是正确的,这个循环可以运行 5 次,并且 ping 资源总共 50 次。

断路器尝试减少它尝试访问资源的总次数。每个线程或请求尝试都会增加一个错误计数器。一旦达到错误限制,断路器将不会尝试连接到它的资源以在任何线程上进行更多调用,直到超时结束。在资源准备好之前轮询资源的效果仍然相同,但是您减少了总负载。

static volatile int errorCount = 0;

while(errorCount < 10)
{
   if(tryConnect() == false)
      errorCount++;
   else
       break;
}

使用这个拦截器实现,拦截器被注册为单例。因此,对于对任何方法的任何调用,资源类的所有实例都将首先通过断路器重定向代码。拦截器只是您班级的代理。它基本上会覆盖您的方法并在调用您的方法之前先调用拦截器方法。

如果您没有任何电路理论知识,开/关位可能会令人困惑。 维基:

如果电路在其电源的正极和负极端子之间缺乏完整的路径,则该电路是“开路”

理论上,该电路在连接断开时打开,在连接可用时关闭。您的示例的重要部分是:

public void Intercept(IInvocation invocation)
    {
        using (TimedLock.Lock(monitor))
        {
            state.ProtectedCodeIsAboutToBeCalled(); /* only throws an exception when state is Open, otherwise, it doesn't do anything. */
        }

        try
        {
            invocation.Proceed(); /* tells the interceptor to call the 'actual' method for the class that's being proxied.*/
        }
        catch (Exception e)
        {
            using (TimedLock.Lock(monitor))
            {
                failures++; /* increments the shared error count */
                state.ActUponException(e); /* only implemented in the ClosedState class, so it changes the state to Open if the error count is at it's threshold. */ 
            }
            throw;
        }

        using (TimedLock.Lock(monitor))
        {
            state.ProtectedCodeHasBeenCalled(); /* only implemented in HalfOpen, if it succeeds the "switch" is thrown in the closed position */
        }
    }
于 2011-10-06T15:04:07.873 回答
5

我创建了一个名为的库CircuitBreaker.Net,它封装了所有服务逻辑以安全地执行调用。它很容易使用,一个例子可能如下所示:

// Initialize the circuit breaker
var circuitBreaker = new CircuitBreaker(
    TaskScheduler.Default,
    maxFailures: 3,
    invocationTimeout: TimeSpan.FromMilliseconds(100),
    circuitResetTimeout: TimeSpan.FromMilliseconds(10000));

try
{
    // perform a potentially fragile call through the circuit breaker
    circuitBreaker.Execute(externalService.Call);
    // or its async version
    // await circuitBreaker.ExecuteAsync(externalService.CallAsync);
}
catch (CircuitBreakerOpenException)
{
    // the service is unavailable, failover here
}
catch (CircuitBreakerTimeoutException)
{
    // handle timeouts
}
catch (Exception)
{
    // handle other unexpected exceptions
}

它可以通过nuget package获得。你可以在 github 上找到源代码。

于 2016-03-10T19:48:01.157 回答