8000 AMQPConnectionException: Server connection error: 320, message: CONNECTION_FORCED - Node was put into maintenance mode · Issue #1161 · php-amqplib/php-amqplib · GitHub
[go: up one dir, main page]

Skip to content
AMQPConnectionException: Server connection error: 320, message: CONNECTION_FORCED - Node was put into maintenance mode #1161
@ostrolucky

Description

@ostrolucky
AMQPConnectionException: Server connection error: 320, message: CONNECTION_FORCED - Node was put into maintenance mode

This happens when consumer is connected to rabbitmq mode which then goes into maintenance mode. We have this issue every few months, because we are using Amazon MQ (Amazon AWS's service for Rabbitmq) which has required maintenance windows for upgrades. We have reached out to their support, where they told us following:

Hello,

Warm greetings from AWS Premium Support! This is Rajil from the Amazon MQ team regarding the support ticket #170677697201438. I will be assisting you with this case today.

As I understand, you have observed a 'Node was put into maintenance mode' error message on your MQ broker logs - you want to ensure that there would not be any issues during cluster maintenance. Please confirm if my understanding is correct.

Please note that, since Amazon MQ is a managed service, maintenance windows are a necessary period where AWS can make changes in the backend as well as to the broker engine to ensure it has the latest security patches available, among other service/architecture improvements. The two hour period that we configure as maintenance window for the broker has to be configured at a time where you would be expecting no or the least traffic, as restarts are to be expected during this period.

Since you already have a cluster broker deployment, kindly ensure that the client connecting to the broker attempts a retry in case the above error message is observed during a maintenance window. In RabbitMQ cluster deployments, the nodes are restarted one-by-one, meaning at least two nodes will be up and running at all times. Even if a connection is severed, a connection retry will result in the other nodes accepting the connection, and the clients can keep using the broker.

You can read more about maintenance windows in Amazon MQ here[1].

I hope the above information serves you well. Meanwhile, if you feel that I have missed out any point or have misunderstood your concern, or you have any extended queries or concerns related to anything that we discussed here, please feel free to write back to me with the query you might be facing. I will be glad to assist you further.

Have a great day ahead!

========================= References ==========================

[1] Maintaining an Amazon MQ broker - https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/maintaining-brokers.html

Our consumers at the moment crash, but docker restarts the consumer which causes reconnect to different node and things continue normally. However, I think it would make sense if things continued working normally without consumer crashing.

I would like to propose that php-amqplib handles the reconnect automatically. Alternatively, what do you suggest consumer should do? There isn't even specific exception being thrown here so, if we wanted to handle it in userspace, we would have to do something like this (not tested), right?

try {
  $queue->get();
} catch (AMQPConnectionException $e) {
  if (str_contains($e->getMessage(), 'Node was put into maintenance mode')) {
     $connection->reconnect();
     return;
  }
   throw $e;
}

I've also played with heartbeat configuration, but unfortunately it doesn't have any effect in this case.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0