【发布时间】:2015-08-12 17:41:21
【问题描述】:
我有一个 C# 应用程序,我试图在其中测试我的 rabbit mq 客户端的弹性。当消费者正在运行时,我停止了 rabbit mq 服务以查看我的消费者将如何处理这个问题。
我的几乎所有消费者都有try 和catch,但由于后台线程中可能存在异常,我的应用程序在输出窗口下方打印并存在调试器。
线程 'AMQP Connection amqp://test.com:5671' (0x6da18) 已退出 代码为 0 (0x0)。
“System.Net.WebException”类型的第一次机会异常发生在 系统.dll
然后存在调试器。我唯一注意到的是在代码存在之前调用了我的消费者类的析构函数。
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Threading;
using RabbitMQ.Client;
using RabbitMQ.Client.Events;
using RabbitMQ.Client.Exceptions;
using RabbitMQ.Util;
namespace RabbitMQClient
{
public class MessageQueueConsumer : IHealthVerifiable
{
public class TimeoutException : Exception { }
// Have to do this because, somehow, SharedQueue implementation of IEnumerable is faulty
// Count() method hangs, and never returns
private class BufferQueue : SharedQueue<BasicDeliverEventArgs>
{
public int Count()
{
return this.m_queue.Count;
}
}
private const int DEFAULT_ACK_COUNT = 1000;
private String connString;
private QueueingBasicConsumer consumer;
private IConnection conn;
private IModel channel;
private String queueName;
private BufferQueue buffer;
private Object locker = new Object();
private ushort prefetchCount;
private ushort ackCount;
public MessageQueueConsumer(String queueName, String connString, ushort? ackCount = null)
{
this.queueName = queueName;
this.connString = connString;
if (ackCount != null)
this.ackCount = ackCount.Value;
else
this.ackCount = DEFAULT_ACK_COUNT;
this.prefetchCount = (ushort)(this.ackCount * 2);
InitConsumer();
}
~MessageQueueConsumer()
{
Close();
}
public void Close()
{
try
{
channel.Close(200, queueName + " Goodbye");
conn.Close();
}
catch { } //if already closed, do nothing
}
private void InitConsumer()
{
try
{
ConnectionFactory factory = new ConnectionFactory();
factory.Uri = connString;
conn = factory.CreateConnection();
channel = conn.CreateModel();
channel.BasicQos(0, prefetchCount, false);
buffer = new BufferQueue();
consumer = new QueueingBasicConsumer(channel, buffer);
channel.BasicConsume(queueName, false, consumer);
}
catch (Exception e)
{
InitConsumer();
}
}
/// <summary>
/// Get the next event from the queue
/// </summary>
/// <returns>Event</returns>
public byte[] Dequeue(int? timeout = null)
{
lock (locker)
{
try
{
return AttemptDequeue(timeout);
}
catch (EndOfStreamException)
{
// Network interruption while reading the input stream
InitConsumer();
return AttemptDequeue(timeout);
}
catch (OperationInterruptedException)
{
// The consumer was removed, either through channel or connection closure, or through the
// action of IModel.BasicCancel().
// Attempt to reopen and try again
InitConsumer();
return AttemptDequeue(timeout);
}
catch (ConnectFailureException)
{
//Problems connecting to the queue, wait 10sec, then try again.
Thread.Sleep(10000);
InitConsumer();
return AttemptDequeue(timeout);
}
catch (Exception e)
{
//Problems connecting to the queue, wait 10sec, then try again.
Thread.Sleep(10000);
InitConsumer();
return AttemptDequeue(timeout);
}
}
}
private byte[] AttemptDequeue(int? tomeout)
{
BasicDeliverEventArgs message;
if (tomeout == null)
message = (BasicDeliverEventArgs)consumer.Queue.Dequeue();
else
{
if (!consumer.Queue.Dequeue(tomeout.Value, out message))
throw new TimeoutException();
}
if (buffer.Count() == 0 || buffer.Count() == ackCount)
channel.BasicAck(message.DeliveryTag, true);
try
{
return message.Body;
}
catch (Exception e)
{
throw new SerializationException("Error deserializing queued message:", e);
}
}
/// <summary>
/// Attempt to connect to queue to see if it is available
/// </summary>
/// <returns>true if queue is available</returns>
public bool IsHealthy()
{
try
{
if (channel.IsOpen)
return true;
else
{
InitConsumer();
return true;
}
}
catch
{
return false;
}
}
}
}
有什么想法可以捕获此异常并尝试重试连接吗?
【问题讨论】:
-
您拥有的
WebException中的Message到底是什么? -
就是这样,我什至无法查看异常消息。它只是在输出窗口中打印出来,应用程序退出调试模式
-
用 try/catch 包裹你的 main 方法
-
在 Windows 服务的 Main 和 OnStart 方法中添加了
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;。仍然存在调试器。
标签: c# multithreading exception rabbitmq amqp