我正在使用带有java应用程序的rabbitmq服务器。当应用程序在特定队列上收到消息时,它会生成一些数据并将它们发送到另一个队列。
运行应用程序时,它会收到消息,生成数据并将其发送到正确的队列中。数据在服务器上得到了很好的接收,并且它们是正确的。但是当应用程序尝试向服务器发送确认时,我得到一个AlreadyClosedException。
我在服务器的日志中有以下消息:关闭AMQP连接。
以下是rabbitMeli消费者类中的handleDelivery函数的代码:
public void handleDelivery( String consumerTag, Envelope envelope, asicProperties properties, byte[] body )
throws IOException {
actionManager.receivedSelectedData( body );
getChannel().basicAck( envelope.getDeliveryTag(), false );
}
以下是receiveSelectedData()方法中的代码,其中数据在发送之前生成:
public void receivedSelectedData( byte[] body ) {
differentialEquations = differentialEquationsObjectManager.fromBytes( body );
timeSeriesCollection.removeAllSeries();
for ( int i = 0; i < differentialEquations.size(); i++ ) {
differentialEquation = differentialEquations.get( i );
for ( int j = 0; j < differentialEquation.getSystems().size(); j++ ) {
try {
generator = new NumericalMethod( differentialEquation, j );
} catch ( Exception e ) {
e.printStackTrace();
}
try {
timeSeriesCollection.addSeries( generator.equationToTimeseriesRK4( 10.0 ) );
} catch ( Exception e ) {
e.printStackTrace();
}
}
}
sender.publish( RabbitMQGenerateSender.GENERATE_DATA_QUEUE_NAME,
timeSeriesCollectionObjectMnanager.toBytes( timeSeriesCollection ) );
}
队列似乎被正确声明,这是我的队列声明:
protected void declareQueue( String queueName ) {
try {
channel.queueDeclare( queueName, true, false, false, null );
} catch ( IOException e ) {
e.printStackTrace();
}
}
和频道声明:
try {
connection = factory.newConnection();
channel = connection.createChannel();
int prefetchCount = 1;
channel.basicQos( prefetchCount );
} catch ( IOException | TimeoutException e ) {
e.printStackTrace();
}
我还有一些其他应用程序使用带有相同通道和队列声明参数的rabbitmq,它们运行良好。我只有一个应用程序在发送确认时系统性地失败。
这是getChannel()方法:
public Channel getChannel() {
return channel;
}
答案 0 :(得分:1)
如果要支持ACK功能,则必须将接收器队列声明为AutoDelete = false
。
这是C#中的一个示例(可能与Java有很小的差异)
private bool PushDataToQueue(byte[] data, string queueName, ref string error)
{
try
{
if (_connection == null || !_connection.IsOpen)
_connection = _factory.CreateConnection();
using (IModel channel = _connection.CreateModel())
{
if (AutoCloseConnection)
_connection.AutoClose = AutoCloseConnection;
// Set the AutoDelete as false, fourth parameter!!!
channel.QueueDeclare(queueName, true, false, false, null);
channel.BasicPublish("", queueName, null, data);
if (!channel.IsClosed)
channel.Close();
}
}
catch (Exception e)
{
error = string.Format("Failed pushing data to queue name '{0}' on host '{1}' with user '{2}'. Error: {3}", queueName, _factory.HostName, _factory.UserName,
e.GetCompleteDetails());
return false;
}
return true;
}