Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rabbitmq broker API times out #1112

Open
Tomasz-Kluczkowski opened this issue Jun 5, 2021 · 44 comments
Open

Rabbitmq broker API times out #1112

Tomasz-Kluczkowski opened this issue Jun 5, 2021 · 44 comments
Assignees
Labels

Comments

@Tomasz-Kluczkowski
Copy link
Contributor

Tomasz-Kluczkowski commented Jun 5, 2021

Describe the bug
When using rabbitmq as the broker and specifying broker_api for Flower to use the request for api/queues times out with:

[E 210605 19:25:16 broker:78] RabbitMQ management API call failed: Timeout while connecting

Using identical url from the browser to reach the api/queues endpoint of rabbitmq management api is successful.

To Reproduce
Steps to reproduce the behavior:

  1. Launch flower based on newest master with:
    celery -A tasks -broker=amqp://guest:guest@localhost:5672// flower --debug --broker_api=http://guest:guest@localhost:15672/api/
  2. Wait for flower to fully boot.
  3. Start rabbitmq and wait for it to fully boot.
  4. Go to localhost:5555
  5. Click on broker tab, notice the spinning browser's connection wheel
  6. Observe Flower's logs - eventually it will show the timeout error as above.

Similar situation happens if flower is started first and redis after.

Expected behavior
The rabbitmq's api is responding correctly and Flower is able to use it.

Screenshots
If applicable, add screenshots to help explain your problem.

System information
Output of python -c 'from flower.utils import bugreport; print(bugreport())' command

flower   -> flower:1.0.1-dev tornado:6.1 humanize:3.3.0
software -> celery:5.0.5 (singularity) kombu:5.0.2 py:3.9.2
            billiard:3.6.3.0 py-amqp:5.0.5
platform -> system:Linux arch:64bit, ELF
            kernel version:5.4.0-70-generic imp:CPython
loader   -> celery.loaders.app.AppLoader
settings -> transport:amqp results:disabled

deprecated_settings: None
@Tomasz-Kluczkowski
Copy link
Contributor Author

@mher I am looking into this one as it is I think the last remaining issue to fix and get new release so please assign me.
Also it was reported here: https://stackoverflow.com/questions/66815640/how-can-i-connect-flower-to-the-broker-rabbitmq-in-docker-compose

@Tomasz-Kluczkowski
Copy link
Contributor Author

Results of investigation:

  • if rabbitmq (or broker in general) boots first (and is ready) and flower boots after, all is good (tested in docker-compose as well as launching rabbitmq/flower manually)
  • if flower boots first and we try to access broker tab, we get the timeout, unfortunately if we boot the rabbitmq now, even if it is fully booted flower will still fail to connect to it. Other tabs show no updated content (but no errors are logged when using them).

Tested if similar happens for Redis and it does although the broker tab does not result in spinning wheel of death and no Timeout is logged - still the dashboard, tasks tabs show no content and broker tab shows no real content.

Potential solutions:

  • find out if we can make Flower self-heal - have some mechanism of rebuilding the connection to broker?
  • how would this be done? It should be universal and one method somewhere called always as an attempt to retry.
  • do we have to check for connection to the broker to be present before making any calls? Probably not - just have a retry mechanism or make it a command line option?
  • for docker compose use wait-for-it script and start flower only after broker is ready (a copout really but what can one do)?
  • I will also fix a few bits in docker compose that are no longer valid (mainly using ENTRYPOINT ["flower"] as we can no longer do that in new version - have to use CMD as it can be fully overridden and ENTRYPOINT cannot).

@mher Can you point me at a place in the code where this issue takes place if you remember :)? Also when I boot Flower and there is no broker running, would you expect an exception being raised or an error logged in flower? Is there code that already checks that and stopped working?

@Tomasz-Kluczkowski
Copy link
Contributor Author

This is fixed in #1113 by making a connection check when booting.

@mher
Copy link
Owner

mher commented Jun 20, 2021

d4ea1dc fixes the issue

@Tomasz-Kluczkowski
Copy link
Contributor Author

Thx @mher, I will test in our production if it all works nicely. I think then I will convert my #1113 to just docs and docker compose fix.

@mher
Copy link
Owner

mher commented Jun 20, 2021

Thanks @Tomasz-Kluczkowski , you can keep tests as well.

@petarmaric
Copy link

I'm commenting just to say, as a fellow open source developer, that I'm impressed by you guys going so smoothly between two implementation variations - as well as contributing it on a Sunday.

So yeah, people are indeed watching (and loving) your work :)

@Tomasz-Kluczkowski
Copy link
Contributor Author

Tomasz-Kluczkowski commented Jun 22, 2021

@mher I have tested your change (the added timeouts) and while yes, we no longer get the spinning wheel of death in the browser Flower still is no longer capable of connecting to the broker if it was booted without the broker running.

I have tested with rabbitmq and redis as brokers.

Test:

  • boot flower
  • go to localhost:5555
  • check tabs before broker started - no more super long timeouts for rabbitmq which is nice (redis never had this issue, but I checked it still does not have it :P).
  • boot broker and wait for it to fully boot
  • The broker tab seems to refresh for redis (shows the default celery queue)
  • The broker tab does not refresh for rabbitmq (all remains empty).
  • This is logged any time we try to access the broker tab in rabbitmq case (but the timeout now is 1s not forever :) ):
[E 210622 21:01:06 broker:79] RabbitMQ management API call failed: Timeout while connecting
[I 210622 21:01:07 web:2239] 304 GET /broker (::1) 1025.09ms
  • for both brokers the dashboard and tasks tab now show no content and never update.

If broker is started first and then Flower all is good.

I think we may need to merge my changes from #1113 with waiting for available broker as an improvement of sorts.
In the end Celery itself does it and will not start if there is no broker.
This is very important in kubernetes/docker deployment where we cannot guarantee order of booting of pods/containers to start Flower when the broker is working.

Please let me know what you think.

@Tomasz-Kluczkowski
Copy link
Contributor Author

I will check one more thing and report back.

@Tomasz-Kluczkowski
Copy link
Contributor Author

Tomasz-Kluczkowski commented Jun 22, 2021

I tried and did not achieve anything @mher , I think making a check for broker connection on Flower's boot is the best option for now.

Please let me know if you want to merge it as it looks like I need to fix merge conflicts there.

@mher
Copy link
Owner

mher commented Jun 24, 2021

I'm not able to reproduce. Running without RabbitMQ, then starting, stoping RabbitMQ works as expected. Broker tab shows celery queue when RabbitMQ is available.

[D 210623 21:22:07 inspector:36] Sending stats inspect command
[D 210623 21:22:07 inspector:36] Sending active_queues inspect command
[D 210623 21:22:07 inspector:36] Sending registered inspect command
[D 210623 21:22:07 inspector:36] Sending scheduled inspect command
[D 210623 21:22:07 inspector:36] Sending active inspect command
[D 210623 21:22:07 inspector:36] Sending reserved inspect command
[D 210623 21:22:07 inspector:36] Sending revoked inspect command
[D 210623 21:22:07 inspector:36] Sending conf inspect command
[I 210623 21:22:14 web:2239] 304 GET /dashboard (::1) 42.40ms
[I 210623 21:22:15 web:2239] 200 GET /dashboard?json=1&_=1624497735046 (::1) 1.34ms
[I 210623 21:22:15 web:2239] 304 GET /tasks (::1) 18.24ms
[I 210623 21:22:16 web:2239] 200 POST /tasks/datatable (::1) 2.98ms
[E 210623 21:22:17 broker:79] RabbitMQ management API call failed: Timeout while connecting
[I 210623 21:22:17 web:2239] 200 GET /broker (::1) 1033.35ms
[D 210623 21:22:49 channel:104] using channel_id: 1
[D 210623 21:22:49 channel:444] Channel open
[D 210623 21:22:49 events:175] Capturing events...
[I 210623 21:22:49 mixins:226] Connected to amqp://guest:**@127.0.0.1:5672//
[D 210623 21:22:49 channel:104] using channel_id: 1
[D 210623 21:22:49 channel:444] Channel open
[D 210623 21:22:50 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
[D 210623 21:22:50 inspector:39] Inspect command reserved took 43.31s to complete
[W 210623 21:22:50 inspector:42] Inspect method reserved failed
[D 210623 21:22:50 inspector:39] Inspect command stats took 43.32s to complete
[W 210623 21:22:50 inspector:42] Inspect method stats failed
[D 210623 21:22:51 inspector:39] Inspect command active took 43.62s to complete
[W 210623 21:22:51 inspector:42] Inspect method active failed
[D 210623 21:22:51 inspector:39] Inspect command scheduled took 43.63s to complete
[D 210623 21:22:51 inspector:39] Inspect command revoked took 43.63s to complete
[W 210623 21:22:51 inspector:42] Inspect method scheduled failed
[D 210623 21:22:51 inspector:39] Inspect command conf took 43.62s to complete
[D 210623 21:22:51 inspector:39] Inspect command registered took 43.63s to complete
[W 210623 21:22:51 inspector:42] Inspect method revoked failed
[W 210623 21:22:51 inspector:42] Inspect method conf failed
[W 210623 21:22:51 inspector:42] Inspect method registered failed
[D 210623 21:22:51 inspector:39] Inspect command active_queues took 43.64s to complete
[W 210623 21:22:51 inspector:42] Inspect method active_queues failed
[D 210623 21:22:51 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
[I 210623 21:23:07 web:2239] 200 GET /broker (::1) 78.92ms
[D 210623 21:23:09 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
[I 210623 21:23:09 web:2239] 304 GET /tasks (::1) 20.86ms
[I 210623 21:23:09 web:2239] 200 POST /tasks/datatable (::1) 4.07ms
[I 210623 21:23:10 web:2239] 200 GET /dashboard (::1) 26.37ms
[I 210623 21:23:10 web:2239] 200 GET /dashboard?json=1&_=1624497790900 (::1) 0.59ms
[D 210623 21:23:11 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
[I 210623 21:23:11 web:2239] 304 GET /tasks (::1) 23.41ms
[I 210623 21:23:11 web:2239] 200 POST /tasks/datatable (::1) 1.80ms
[D 210623 21:23:12 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
[D 210623 21:23:13 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
\[D 210623 21:23:16 channel:147] Closed channel #1
[E 210623 21:23:16 events:184] Failed to capture events: '(0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'', trying again in 1 seconds.
[D 210623 21:23:16 events:187] (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
[E 210623 21:23:34 broker:79] RabbitMQ management API call failed: [Errno 61] Connection refused
[I 210623 21:23:34 web:2239] 200 GET /broker (::1) 50.91ms
[I 210623 21:23:35 web:2239] 304 GET /tasks (::1) 20.51ms
[I 210623 21:23:35 web:2239] 200 POST /tasks/datatable (::1) 2.62ms
[D 210623 21:24:05 channel:104] using channel_id: 1
[D 210623 21:24:05 channel:444] Channel open
[D 210623 21:24:15 connection:726] heartbeat_tick : for connection c17425d70afa424d87d4422f55308906
[D 210623 21:24:17 connection:726] heartbeat_tick : for connection c17425d70afa424d87d4422f55308906
[I 210623 21:24:23 web:2239] 200 GET /broker (::1) 61.83ms
[I 210623 21:24:24 web:2239] 304 GET /tasks (::1) 20.35ms
[I 210623 21:24:24 web:2239] 200 POST /tasks/datatable (::1) 4.48ms
[D 210623 21:24:25 connection:726] heartbeat_tick : for connection c17425d70afa424d87d4422f55308906

@Tomasz-Kluczkowski
Copy link
Contributor Author

I have to check if it makes the difference but my testing was done solely with rabbitmq/redis in docker containers.

This is to simulate closer to our production where it runs in a kubernetes pod.

Are you running rabbitmq for this test inside of a container too?

If not maybe that's the difference that makes or breaks Flower.

If that is the case I think a lot use cases are in containerised environments nowadays and Flower should cater to that too.

I will investigate more tomorrow evening.

@mher
Copy link
Owner

mher commented Jun 25, 2021

Are you running rabbitmq for this test inside of a container too?

Yes

@Tomasz-Kluczkowski
Copy link
Contributor Author

Tomasz-Kluczkowski commented Jun 27, 2021

Hello,
I just did extensive tests and still cannot make it connect to broker if rabbitmq in docker is started after Flower is finished booting up.

I tried initially using pycharm configuration to start the rabbitmq , then deleted the container/image and begun starting rabbitmq via command line with:

docker run --name rabbitmq -d -p 5762:5672 -p 15762:15762 -p 15672:15672 --network host rabbitmq

and I start flower not in a container which maybe is the reason for all of this trouble?
I just start it via:

celery --broker=amqp://guest:guest@localhost:5672// flower --debug --broker_api=http://guest:guest@localhost:15672/api/

Are you running Flower in a docker container for this test too @mher?

Is the latest Flower image based on latest master so I can test too, or have to build it myself?

@mher
Copy link
Owner

mher commented Jun 27, 2021

Are you running Flower in a docker container for this test too @mher?

No, only RabbitMQ server. Flower is running from the master version with celery -A tasks flower --broker_api=http://guest:guest@localhost:15672/api/ --debug command

@Tomasz-Kluczkowski
Copy link
Contributor Author

Hopefully it has nothing to do with this (but I have seen issues with host OS making our own app work differently), but are you testing on Linux?
I am using Linux on my laptop.
Just trying to see where I make an error.

@mher
Copy link
Owner

mher commented Jun 27, 2021

I'm testing on OSX. Have you tried to use -A option instead of --broker?

@Tomasz-Kluczkowski
Copy link
Contributor Author

just did now, and I can see that then it used redis as the broker.

@Tomasz-Kluczkowski
Copy link
Contributor Author

I think because that is the celeryconfig.py inside flower/examples

@Tomasz-Kluczkowski
Copy link
Contributor Author

I am changing the celeryconfig.py to use rabbitmq as the broker_url and test again.

@mher
Copy link
Owner

mher commented Jun 27, 2021

You can change broker with env vars

CELERY_BROKER_URL=amqp://
CELERY_RESULT_BACKEND=rpc

@Tomasz-Kluczkowski
Copy link
Contributor Author

Ok , run with those env vars on both my linux machine and macbook pro with rabbitmq in docker and starting flower first and broker after creates the connection issue. I am really at a loss now what is the difference that makes it run for you @mher.

maybe it's the difference in how you start rabbitmq in docker?

@Tomasz-Kluczkowski
Copy link
Contributor Author

I attach the logs

[I 210627 18:50:56 web:2239] 200 GET /dashboard?json=1&_=1624816256363 (::1) 1.16ms
[E 210627 18:50:57 broker:79] RabbitMQ management API call failed: [Errno 111] Connection refused
[I 210627 18:50:57 web:2239] 200 GET /broker (::1) 42.44ms
[E 210627 18:51:00 broker:79] RabbitMQ management API call failed: [Errno 111] Connection refused
[I 210627 18:51:00 web:2239] 304 GET /broker (::1) 37.95ms
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 events:175] Capturing events...
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[I 210627 18:51:57 mixins:226] Connected to amqp://guest:**@127.0.0.1:5672//
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:104] using channel_id: 1
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:51:57 channel:444] Channel open
[D 210627 18:52:02 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:52:02 channel:104] using channel_id: 1
[D 210627 18:52:02 channel:444] Channel open
[D 210627 18:52:07 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@XPS-15-9560', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.17'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 210627 18:52:07 channel:104] using channel_id: 1
[D 210627 18:52:07 channel:444] Channel open
[I 210627 18:52:28 web:2239] 304 GET /dashboard (::1) 33.90ms
[I 210627 18:52:28 web:2239] 200 GET /dashboard?json=1&_=1624816348920 (::1) 0.57ms
[I 210627 18:52:29 web:2239] 200 GET /dashboard?json=1&_=1624816349925 (::1) 1.22ms
[I 210627 18:52:30 web:2239] 200 GET /dashboard?json=1&_=1624816350923 (::1) 0.99ms
[E 210627 18:52:31 broker:79] RabbitMQ management API call failed: Timeout while connecting
[I 210627 18:52:31 web:2239] 304 GET /broker (::1) 1039.64ms
[I 210627 18:52:43 web:2239] 304 GET /tasks (::1) 33.04ms
[I 210627 18:52:43 web:2239] 200 POST /tasks/datatable (::1) 1.95ms
[I 210627 18:52:53 web:2239] 304 GET /dashboard (::1) 34.19ms
[I 210627 18:52:53 web:2239] 200 GET /dashboard?json=1&_=1624816373178 (::1) 0.41ms
[I 210627 18:52:54 web:2239] 200 GET /dashboard?json=1&_=1624816374183 (::1) 1.35ms
[I 210627 18:52:55 web:2239] 200 GET /dashboard?json=1&_=1624816375181 (::1) 1.75ms
[I 210627 18:52:56 web:2239] 200 GET /dashboard?json=1&_=1624816376180 (::1) 0.54ms
[E 210627 18:52:56 broker:79] RabbitMQ management API call failed: Timeout while connecting
[I 210627 18:52:56 web:2239] 304 GET /broker (::1) 1041.77ms
[E 210627 18:53:15 broker:79] RabbitMQ management API call failed: Timeout while connecting
[I 210627 18:53:15 web:2239] 304 GET /broker (::1) 1035.79ms

@Tomasz-Kluczkowski
Copy link
Contributor Author

You can see before I start rabbitmq in docker, it says:

[E 210627 18:51:00 broker:79] RabbitMQ management API call failed: [Errno 111] Connection refused

Then I start rabbitmq and we get:

[I 210627 18:51:57 mixins:226] Connected to amqp://guest:**@127.0.0.1:5672//

but then I go to the broker tab and still we get:

[E 210627 18:52:31 broker:79] RabbitMQ management API call failed: Timeout while connecting
[I 210627 18:52:31 web:2239] 304 GET /broker (::1) 1039.64ms

:(

@Tomasz-Kluczkowski
Copy link
Contributor Author

The difference I see is that in your logs above after it connected it did all those inspect calls again:

[D 210623 21:22:50 connection:726] heartbeat_tick : for connection fa534377364f4406a3347da30bb814dc
[D 210623 21:22:50 inspector:39] Inspect command reserved took 43.31s to complete
[W 210623 21:22:50 inspector:42] Inspect method reserved failed
[D 210623 21:22:50 inspector:39] Inspect command stats took 43.32s to complete
[W 210623 21:22:50 inspector:42] Inspect method stats failed
[D 210623 21:22:51 inspector:39] Inspect command active took 43.62s to complete
[W 210623 21:22:51 inspector:42] Inspect method active failed
[D 210623 21:22:51 inspector:39] Inspect command scheduled took 43.63s to complete
[D 210623 21:22:51 inspector:39] Inspect command revoked took 43.63s to complete
[W 210623 21:22:51 inspector:42] Inspect method scheduled failed
[D 210623 21:22:51 inspector:39] Inspect command conf took 43.62s to complete
[D 210623 21:22:51 inspector:39] Inspect command registered took 43.63s to complete
[W 210623 21:22:51 inspector:42] Inspect method revoked failed
[W 210623 21:22:51 inspector:42] Inspect method conf failed
[W 210623 21:22:51 inspector:42] Inspect method registered failed
[D 210623 21:22:51 inspector:39] Inspect command active_queues took 43.64s to complete
[W 210623 21:22:51 inspector:42] Inspect method active_queues failed

I do not see that in my logs after it connected, but not sure if this makes any difference

@Tomasz-Kluczkowski
Copy link
Contributor Author

are you running latest rabbitmq docker image @mher?

my command for local testing (I use --network host to have access to the api in the browser)

docker run --name rabbitmq -d -p 5762:5672 -p 15762:15762 --network host rabbitmq

is this how you run yours?

@mher
Copy link
Owner

mher commented Jun 27, 2021

Try to reproduce using this docker-compose

version: "3.9"
services:
    rabbitmq:
        image: rabbitmq:3-management
        ports:
          - 5672:5672
          - 15672:15672
    flower:
        image: mher/flower
        command: --broker=amqp://rabbitmq --broker_api=http://guest:guest@rabbitmq:15672/api/
        ports:
            - 5555:5555
  1. docker-compose up
  2. docker-compose stop rabbitmq
  3. open http://localhost:5555/broker
  4. docker-compose start rabbitmq
  5. open http://localhost:5555/broker

@Tomasz-Kluczkowski
Copy link
Contributor Author

I think this is the reason why it may be working for you.
If you start via docker compose then both rabbitmq and flower start at more or less same time. For me that usually results in correct boot, but once in say 10-15 boots flower will boot too early (before rabbitmq is ready to accept connections) and then the broker tab never works.

Are you testing as I mention below?

What we need to test is strictly manually start flower, wait for it to finish boot, then manually start rabbitmq in docker - for me on both linux and mac it then never connects to broker and shows timeout error.

point number 2 regarding this docker compose - it uses old flower image / celery 4.4.7 (I exec'd into it):

/usr/local/bin $ flower --version
0.9.7
4.4.7 (cliffs)

Could you try the manual starting and then see if it fails for you same way as for me please? If you already did then I have no more ideas for now grrrr :(/

@mher
Copy link
Owner

mher commented Jun 27, 2021

I stop both rabbitmq and flower then start flower

» docker-compose stop rabbitmq flower                                                                              
Stopping flower-docker_flower_1   ... done
Stopping flower-docker_rabbitmq_1 ... done
» docker-compose start flower                                                                                       
Starting flower ... done
...
» docker-compose start rabbitmq                                                                                     
Starting rabbitmq ... done
flower_1    | [E 210627 19:04:49 broker:78] RabbitMQ management API call failed: Timeout while connecting
flower_1    | [I 210627 19:05:29 mixins:229] Connected to amqp://guest:**@rabbitmq:5672//```

@Tomasz-Kluczkowski
Copy link
Contributor Author

Tomasz-Kluczkowski commented Jun 27, 2021 via email

@Tomasz-Kluczkowski
Copy link
Contributor Author

Tomasz-Kluczkowski commented Jun 27, 2021

@mher Ok, I have made a public image of Flower based on its newest master here: https://hub.docker.com/layers/155902451/kilthar/flower/docker-comms-test/images/sha256-3e5ea07f05afb3cad5f86e2399c5ce2c8edad6748b73a3644c8b07af375e3590?context=explore

It uses this Dockerfile as basis (I had to add RUN apk add git to be able to git clone when building the image and pip install from Flower's master via git+https):

FROM python:alpine

# Get latest root certificates
RUN apk add git
RUN apk add --no-cache ca-certificates && update-ca-certificates

# Install the required packages
RUN pip install --no-cache-dir redis pip install git+https://github.com/mher/flower.git@master#egg=flower

# PYTHONUNBUFFERED: Force stdin, stdout and stderr to be totally unbuffered. (equivalent to `python -u`)
# PYTHONHASHSEED: Enable hash randomization (equivalent to `python -R`)
# PYTHONDONTWRITEBYTECODE: Do not write byte files to disk, since we maintain it as readonly. (equivalent to `python -B`)
ENV PYTHONUNBUFFERED=1 PYTHONHASHSEED=random PYTHONDONTWRITEBYTECODE=1

# Default port
EXPOSE 5555

ENV FLOWER_DATA_DIR /data
ENV PYTHONPATH ${FLOWER_DATA_DIR}

WORKDIR $FLOWER_DATA_DIR

# Add a user with an explicit UID/GID and create necessary directories
RUN set -eux; \
    addgroup -g 1000 flower; \
    adduser -u 1000 -G flower flower -D; \
    mkdir -p "$FLOWER_DATA_DIR"; \
    chown flower:flower "$FLOWER_DATA_DIR"
USER flower

VOLUME $FLOWER_DATA_DIR

CMD ["celery flower"]

And the docker-compose.yml file I use for this test:

version: '3'
services:
  rabbitmq:
    image: rabbitmq:3-management
    ports:
      - 5672:5672
      - 15672:15672
  flower:
    image: kilthar/flower:docker-comms-test
    command: celery --broker=amqp://guest:guest@rabbitmq:5672// flower --broker_api=http://guest:guest@rabbitmq:15672/api/ --debug
    volumes:
      - ./examples:/data
    working_dir: /data
    ports:
      - 5555:5555

Fortunately for me during first boot the issue appeared, I attach the complete logs (sorry they are long, lots of spam from rabbitmq :). For the sake of making sure, I went through 3 cycles of docker-compose up, down, up. I was lucky that Flower started first each time and the timeout issue when connecting to rabbitmq appeared straight away but one can also start flower_flower_1 container manually first and then rabbitmq to make sure - result is the same - connection problem.

Notice that flower boots first, way ahead of rabbitmq, which is the condition that triggers the bug.
Also notice that once rabbitmq starts , flower shows that it connected:

flower_1    | [I 210627 21:51:57 mixins:226] Connected to amqp://guest:**@rabbitmq:5672//

but still the broker tab times out:

flower_1    | [E 210627 22:03:53 broker:79] RabbitMQ management API call failed: Timeout while connecting
flower_1    | [I 210627 22:03:53 web:2239] 304 GET /broker (172.22.0.1) 1022.02ms

So it looks like there is a change of behaviour of either celery or kombu in the newest celery package that causes this. My solution to fix which waits for broker is working (we have it running in prod).

Please let me know if you were able to reproduce using this docker-compose.yml

Complete logs of docker-compose up

(flower) (base) tomasz_kluczkowski@XPS-15-9560:~/Dev/flower$ docker-compose up
Creating network "flower_default" with the default driver
Creating flower_flower_1   ... done
Creating flower_rabbitmq_1 ... done
Attaching to flower_flower_1, flower_rabbitmq_1
flower_1    | [D 210627 22:25:29 selector_events:59] Using selector: EpollSelector
flower_1    | [I 210627 22:25:29 command:152] Visit me at http://localhost:5555
flower_1    | [I 210627 22:25:29 command:159] Broker: amqp://guest:**@rabbitmq:5672//
flower_1    | [I 210627 22:25:29 command:160] Registered tasks: 
flower_1    |     ['celery.accumulate',
flower_1    |      'celery.backend_cleanup',
flower_1    |      'celery.chain',
flower_1    |      'celery.chord',
flower_1    |      'celery.chord_unlock',
flower_1    |      'celery.chunks',
flower_1    |      'celery.group',
flower_1    |      'celery.map',
flower_1    |      'celery.starmap']
flower_1    | [D 210627 22:25:29 command:164] Settings: {'cookie_secret': b'9QmFqnjGQNGIZg5sKZHjg6ul06XTo0tqk5EUa4eZZU8=',
flower_1    |      'debug': True,
flower_1    |      'login_url': '/login',
flower_1    |      'static_path': '/usr/local/lib/python3.9/site-packages/flower/static',
flower_1    |      'static_url_prefix': '/static/',
flower_1    |      'template_path': '/usr/local/lib/python3.9/site-packages/flower/templates'}
flower_1    | [D 210627 22:25:29 events:145] Starting enable events timer...
flower_1    | [D 210627 22:25:29 inspector:36] Sending stats inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending active_queues inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending registered inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending scheduled inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending active inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending reserved inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending revoked inspect command
flower_1    | [D 210627 22:25:29 inspector:36] Sending conf inspect command
rabbitmq_1  | Configuring logger redirection
rabbitmq_1  | 2021-06-27 22:25:33.408 [debug] <0.288.0> Lager installed handler error_logger_lager_h into error_logger
rabbitmq_1  | 2021-06-27 22:25:33.413 [debug] <0.294.0> Lager installed handler lager_forwarder_backend into rabbit_log_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.413 [debug] <0.291.0> Lager installed handler lager_forwarder_backend into error_logger_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.413 [debug] <0.297.0> Lager installed handler lager_forwarder_backend into rabbit_log_channel_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.413 [debug] <0.300.0> Lager installed handler lager_forwarder_backend into rabbit_log_connection_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.416 [debug] <0.303.0> Lager installed handler lager_forwarder_backend into rabbit_log_feature_flags_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.417 [debug] <0.306.0> Lager installed handler lager_forwarder_backend into rabbit_log_federation_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.420 [debug] <0.309.0> Lager installed handler lager_forwarder_backend into rabbit_log_ldap_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.421 [debug] <0.312.0> Lager installed handler lager_forwarder_backend into rabbit_log_mirroring_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.422 [debug] <0.315.0> Lager installed handler lager_forwarder_backend into rabbit_log_prelaunch_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.424 [debug] <0.318.0> Lager installed handler lager_forwarder_backend into rabbit_log_queue_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.425 [debug] <0.321.0> Lager installed handler lager_forwarder_backend into rabbit_log_ra_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.427 [debug] <0.324.0> Lager installed handler lager_forwarder_backend into rabbit_log_shovel_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.429 [debug] <0.327.0> Lager installed handler lager_forwarder_backend into rabbit_log_upgrade_lager_event
rabbitmq_1  | 2021-06-27 22:25:33.466 [info] <0.44.0> Application lager started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:33.614 [info] <0.44.0> Application mnesia started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:33.615 [info] <0.273.0> 
rabbitmq_1  |  Starting RabbitMQ 3.8.16 on Erlang 24.0.2
rabbitmq_1  |  Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
rabbitmq_1  |  Licensed under the MPL 2.0. Website: https://rabbitmq.com
rabbitmq_1  | 
rabbitmq_1  |   ##  ##      RabbitMQ 3.8.16
rabbitmq_1  |   ##  ##
rabbitmq_1  |   ##########  Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
rabbitmq_1  |   ######  ##
rabbitmq_1  |   ##########  Licensed under the MPL 2.0. Website: https://rabbitmq.com
rabbitmq_1  | 
rabbitmq_1  |   Doc guides: https://rabbitmq.com/documentation.html
rabbitmq_1  |   Support:    https://rabbitmq.com/contact.html
rabbitmq_1  |   Tutorials:  https://rabbitmq.com/getstarted.html
rabbitmq_1  |   Monitoring: https://rabbitmq.com/monitoring.html
rabbitmq_1  | 
rabbitmq_1  |   Logs: <stdout>
rabbitmq_1  | 
rabbitmq_1  |   Config file(s): /etc/rabbitmq/rabbitmq.conf
rabbitmq_1  | 
rabbitmq_1  |   Starting broker...2021-06-27 22:25:33.617 [info] <0.273.0> 
rabbitmq_1  |  node           : rabbit@a958aad2d5e0
rabbitmq_1  |  home dir       : /var/lib/rabbitmq
rabbitmq_1  |  config file(s) : /etc/rabbitmq/rabbitmq.conf
rabbitmq_1  |  cookie hash    : tT7TvHZYbD7gzkNEbXrqHw==
rabbitmq_1  |  log(s)         : <stdout>
rabbitmq_1  |  database dir   : /var/lib/rabbitmq/mnesia/rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:33.907 [debug] <0.284.0> Lager installed handler lager_backend_throttle into lager_event
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:34.017 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:35.932 [info] <0.273.0> Running boot step pre_boot defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.932 [info] <0.273.0> Running boot step rabbit_core_metrics defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.933 [info] <0.273.0> Running boot step rabbit_alarm defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.936 [info] <0.355.0> Memory high watermark set to 12786 MiB (13407834931 bytes) of 31966 MiB (33519587328 bytes) total
rabbitmq_1  | 2021-06-27 22:25:35.939 [info] <0.357.0> Enabling free disk space monitoring
rabbitmq_1  | 2021-06-27 22:25:35.939 [info] <0.357.0> Disk free limit set to 50MB
rabbitmq_1  | 2021-06-27 22:25:35.941 [info] <0.273.0> Running boot step code_server_cache defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.941 [info] <0.273.0> Running boot step file_handle_cache defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.942 [info] <0.360.0> Limiting to approx 1048479 file handles (943629 sockets)
rabbitmq_1  | 2021-06-27 22:25:35.942 [info] <0.361.0> FHC read buffering:  OFF
rabbitmq_1  | 2021-06-27 22:25:35.942 [info] <0.361.0> FHC write buffering: ON
rabbitmq_1  | 2021-06-27 22:25:35.942 [info] <0.273.0> Running boot step worker_pool defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.942 [info] <0.347.0> Will use 8 processes for default worker pool
rabbitmq_1  | 2021-06-27 22:25:35.942 [info] <0.347.0> Starting worker pool 'worker_pool' with 8 processes in it
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> Running boot step database defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> Node database directory at /var/lib/rabbitmq/mnesia/rabbit@a958aad2d5e0 is empty. Assuming we need to join an existing cluster or initialise from scratch...
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> Configured peer discovery backend: rabbit_peer_discovery_classic_config
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> Will try to lock with peer discovery backend rabbit_peer_discovery_classic_config
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> Peer discovery backend does not support locking, falling back to randomized delay
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping randomized startup delay.
rabbitmq_1  | 2021-06-27 22:25:35.943 [info] <0.273.0> All discovered existing cluster peers: 
rabbitmq_1  | 2021-06-27 22:25:35.944 [info] <0.273.0> Discovered no peer nodes to cluster with. Some discovery backends can filter nodes out based on a readiness criteria. Enabling debug logging might help troubleshoot.
rabbitmq_1  | 2021-06-27 22:25:35.946 [info] <0.44.0> Application mnesia exited with reason: stopped
rabbitmq_1  | 2021-06-27 22:25:35.946 [info] <0.44.0> Application mnesia exited with reason: stopped
rabbitmq_1  | 2021-06-27 22:25:35.969 [info] <0.44.0> Application mnesia started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.120 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.120 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.177 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.177 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.177 [info] <0.273.0> Feature flag `drop_unroutable_metric`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.178 [info] <0.273.0> Feature flag `drop_unroutable_metric`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.189 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [~] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [ ] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [ ] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.190 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.214 [info] <0.273.0> Feature flag `drop_unroutable_metric`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags:   [ ] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags:   [ ] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.225 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.226 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.226 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.240 [info] <0.273.0> Feature flag `empty_basic_get_metric`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.240 [info] <0.273.0> Feature flag `empty_basic_get_metric`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [~] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [ ] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.252 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.267 [info] <0.273.0> Feature flag `empty_basic_get_metric`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [ ] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.280 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.296 [info] <0.273.0> Feature flag `implicit_default_bindings`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.296 [info] <0.273.0> Feature flag `implicit_default_bindings`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [~] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.307 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.321 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 0 retries left
rabbitmq_1  | 2021-06-27 22:25:36.322 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.322 [info] <0.273.0> Feature flag `implicit_default_bindings`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [ ] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.335 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.352 [info] <0.273.0> Feature flag `maintenance_mode_status`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.352 [info] <0.273.0> Feature flag `maintenance_mode_status`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [~] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.363 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.379 [info] <0.273.0> Creating table rabbit_node_maintenance_states for feature flag `maintenance_mode_status`
rabbitmq_1  | 2021-06-27 22:25:36.387 [info] <0.273.0> Feature flag `maintenance_mode_status`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.399 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.399 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.399 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.399 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.399 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.399 [info] <0.273.0> Feature flags:   [ ] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.400 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.400 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.400 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.414 [info] <0.273.0> Feature flag `quorum_queue`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.414 [info] <0.273.0> Feature flag `quorum_queue`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [~] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.424 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.443 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.443 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.444 [info] <0.273.0> Feature flag `quorum_queue`:   migrating Mnesia table rabbit_queue...
rabbitmq_1  | 2021-06-27 22:25:36.464 [info] <0.273.0> Feature flag `quorum_queue`:   migrating Mnesia table rabbit_durable_queue...
rabbitmq_1  | 2021-06-27 22:25:36.501 [info] <0.273.0> Feature flag `quorum_queue`:   Mnesia tables migration done
rabbitmq_1  | 2021-06-27 22:25:36.501 [info] <0.273.0> Feature flag `quorum_queue`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [x] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [ ] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.526 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.543 [info] <0.273.0> Feature flag `user_limits`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.543 [info] <0.273.0> Feature flag `user_limits`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.554 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.554 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.554 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.554 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.554 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.554 [info] <0.273.0> Feature flags:   [x] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.555 [info] <0.273.0> Feature flags:   [~] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.555 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.555 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.572 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.572 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.596 [info] <0.273.0> Feature flag `user_limits`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.607 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [x] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [x] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags:   [ ] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.608 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.625 [info] <0.273.0> Feature flag `virtual_host_metadata`: supported, attempt to enable...
rabbitmq_1  | 2021-06-27 22:25:36.625 [info] <0.273.0> Feature flag `virtual_host_metadata`: mark as enabled=state_changing
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [x] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [x] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags:   [~] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.642 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.662 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.663 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.688 [info] <0.273.0> Feature flag `virtual_host_metadata`: mark as enabled=true
rabbitmq_1  | 2021-06-27 22:25:36.698 [info] <0.273.0> Feature flags: list of feature flags found:
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] drop_unroutable_metric
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] empty_basic_get_metric
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] implicit_default_bindings
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] maintenance_mode_status
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] quorum_queue
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] user_limits
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags:   [x] virtual_host_metadata
rabbitmq_1  | 2021-06-27 22:25:36.699 [info] <0.273.0> Feature flags: feature flag states written to disk: yes
rabbitmq_1  | 2021-06-27 22:25:36.713 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.713 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.757 [info] <0.273.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
rabbitmq_1  | 2021-06-27 22:25:36.757 [info] <0.273.0> Successfully synced tables from a peer
rabbitmq_1  | 2021-06-27 22:25:36.757 [info] <0.273.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping registration.
rabbitmq_1  | 2021-06-27 22:25:36.757 [info] <0.273.0> Running boot step database_sync defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step feature_flags defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step codec_correctness_check defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step external_infrastructure defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step rabbit_registry defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step rabbit_queue_location_random defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.758 [info] <0.273.0> Running boot step rabbit_event defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_exchange_type_direct defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_exchange_type_headers defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_exchange_type_topic defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.759 [info] <0.273.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step rabbit_priority_queue defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Priority queues enabled, real BQ is rabbit_variable_queue
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step rabbit_queue_location_client_local defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step kernel_ready defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step rabbit_sysmon_minder defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.760 [info] <0.273.0> Running boot step rabbit_epmd_monitor defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.761 [info] <0.623.0> epmd monitor knows us, inter-node communication (distribution) port: 25672
rabbitmq_1  | 2021-06-27 22:25:36.761 [info] <0.273.0> Running boot step guid_generator defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.767 [info] <0.273.0> Running boot step rabbit_node_monitor defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.767 [info] <0.627.0> Starting rabbit_node_monitor
rabbitmq_1  | 2021-06-27 22:25:36.768 [info] <0.273.0> Running boot step delegate_sup defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.769 [info] <0.273.0> Running boot step rabbit_memory_monitor defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.769 [info] <0.273.0> Running boot step core_initialized defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.769 [info] <0.273.0> Running boot step upgrade_queues defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.801 [info] <0.273.0> message_store upgrades: 1 to apply
rabbitmq_1  | 2021-06-27 22:25:36.801 [info] <0.273.0> message_store upgrades: Applying rabbit_variable_queue:move_messages_to_vhost_store
rabbitmq_1  | 2021-06-27 22:25:36.802 [info] <0.273.0> message_store upgrades: No durable queues found. Skipping message store migration
rabbitmq_1  | 2021-06-27 22:25:36.802 [info] <0.273.0> message_store upgrades: Removing the old message store data
rabbitmq_1  | 2021-06-27 22:25:36.803 [info] <0.273.0> message_store upgrades: All upgrades applied successfully
rabbitmq_1  | 2021-06-27 22:25:36.840 [info] <0.273.0> Running boot step channel_tracking defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.847 [info] <0.273.0> Setting up a table for channel tracking on this node: tracked_channel_on_node_rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.854 [info] <0.273.0> Setting up a table for channel tracking on this node: tracked_channel_table_per_user_on_node_rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.854 [info] <0.273.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.854 [info] <0.273.0> Running boot step connection_tracking defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.860 [info] <0.273.0> Setting up a table for connection tracking on this node: tracked_connection_on_node_rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.867 [info] <0.273.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost_on_node_rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.873 [info] <0.273.0> Setting up a table for per-user connection counting on this node: tracked_connection_table_per_user_on_node_rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.873 [info] <0.273.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.873 [info] <0.273.0> Running boot step rabbit_exchange_parameters defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.874 [info] <0.273.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.874 [info] <0.273.0> Running boot step rabbit_policies defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Running boot step rabbit_policy defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Running boot step rabbit_queue_location_validator defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Running boot step rabbit_vhost_limit defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent
rabbitmq_1  | 2021-06-27 22:25:36.876 [info] <0.273.0> Management plugin: using rates mode 'basic'
rabbitmq_1  | 2021-06-27 22:25:36.877 [info] <0.273.0> Running boot step recovery defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.879 [info] <0.273.0> Running boot step empty_db_check defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.879 [info] <0.273.0> Will seed default virtual host and user...
rabbitmq_1  | 2021-06-27 22:25:36.879 [info] <0.273.0> Adding vhost '/' (description: 'Default virtual host', tags: [])
rabbitmq_1  | 2021-06-27 22:25:36.923 [info] <0.686.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@a958aad2d5e0/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists
rabbitmq_1  | 2021-06-27 22:25:36.930 [info] <0.686.0> Starting message stores for vhost '/'
rabbitmq_1  | 2021-06-27 22:25:36.931 [info] <0.690.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index
rabbitmq_1  | 2021-06-27 22:25:36.932 [info] <0.686.0> Started message store of type transient for vhost '/'
rabbitmq_1  | 2021-06-27 22:25:36.932 [info] <0.694.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index
rabbitmq_1  | 2021-06-27 22:25:36.933 [warning] <0.694.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch
rabbitmq_1  | 2021-06-27 22:25:36.934 [info] <0.686.0> Started message store of type persistent for vhost '/'
rabbitmq_1  | 2021-06-27 22:25:36.941 [info] <0.273.0> Created user 'guest'
rabbitmq_1  | 2021-06-27 22:25:36.946 [info] <0.273.0> Successfully set user tags for user 'guest' to [administrator]
rabbitmq_1  | 2021-06-27 22:25:36.951 [info] <0.273.0> Successfully set permissions for 'guest' in virtual host '/' to '.*', '.*', '.*'
rabbitmq_1  | 2021-06-27 22:25:36.951 [info] <0.273.0> Running boot step rabbit_looking_glass defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.951 [info] <0.273.0> Running boot step rabbit_core_metrics_gc defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.951 [info] <0.273.0> Running boot step background_gc defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.952 [info] <0.273.0> Running boot step routing_ready defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.952 [info] <0.273.0> Running boot step pre_flight defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.952 [info] <0.273.0> Running boot step notify_cluster defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.952 [info] <0.273.0> Running boot step networking defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.952 [info] <0.273.0> Running boot step definition_import_worker_pool defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.952 [info] <0.347.0> Starting worker pool 'definition_import_pool' with 8 processes in it
rabbitmq_1  | 2021-06-27 22:25:36.953 [info] <0.273.0> Running boot step cluster_name defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.953 [info] <0.273.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-E8pqHHnBHnm6hVW_-rcFBA'
rabbitmq_1  | 2021-06-27 22:25:36.959 [info] <0.273.0> Running boot step direct_client defined by app rabbit
rabbitmq_1  | 2021-06-27 22:25:36.959 [info] <0.273.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management
rabbitmq_1  | 2021-06-27 22:25:36.959 [info] <0.731.0> Resetting node maintenance status
rabbitmq_1  | 2021-06-27 22:25:36.959 [info] <0.44.0> Application rabbit started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.973 [info] <0.44.0> Application rabbitmq_management_agent started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.973 [info] <0.44.0> Application cowlib started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.974 [info] <0.44.0> Application cowboy started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.982 [info] <0.44.0> Application rabbitmq_web_dispatch started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:36.984 [info] <0.44.0> Application amqp_client started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:37.036 [info] <0.790.0> Management plugin: HTTP (non-TLS) listener started on port 15672
rabbitmq_1  | 2021-06-27 22:25:37.036 [info] <0.818.0> Statistics database started.
rabbitmq_1  | 2021-06-27 22:25:37.036 [info] <0.817.0> Starting worker pool 'management_worker_pool' with 3 processes in it
rabbitmq_1  | 2021-06-27 22:25:37.037 [info] <0.44.0> Application rabbitmq_management started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:37.068 [info] <0.44.0> Application prometheus started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:37.086 [info] <0.831.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692
rabbitmq_1  | 2021-06-27 22:25:37.087 [info] <0.44.0> Application rabbitmq_prometheus started on node rabbit@a958aad2d5e0
rabbitmq_1  | 2021-06-27 22:25:37.087 [info] <0.731.0> Ready to start client connection listeners
rabbitmq_1  | 2021-06-27 22:25:37.089 [info] <0.875.0> started TCP listener on [::]:5672
rabbitmq_1  | 2021-06-27 22:25:37.323 [info] <0.731.0> Server startup complete; 4 plugins started.
rabbitmq_1  |  * rabbitmq_prometheus
rabbitmq_1  |  * rabbitmq_management
rabbitmq_1  |  * rabbitmq_web_dispatch
rabbitmq_1  |  * rabbitmq_management_agent
rabbitmq_1  |  completed with 4 plugins.
rabbitmq_1  | 2021-06-27 22:25:37.323 [info] <0.731.0> Resetting node maintenance status
rabbitmq_1  | 2021-06-27 22:25:39.676 [info] <0.880.0> accepting AMQP connection <0.880.0> (172.23.0.2:60742 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:39 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:39 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:39.687 [info] <0.880.0> connection <0.880.0> (172.23.0.2:60742 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:39 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:40.682 [info] <0.892.0> accepting AMQP connection <0.892.0> (172.23.0.2:60810 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:40 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:40 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:40.684 [info] <0.892.0> connection <0.892.0> (172.23.0.2:60810 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:40 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:41.705 [info] <0.903.0> accepting AMQP connection <0.903.0> (172.23.0.2:60956 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:41.707 [info] <0.903.0> connection <0.903.0> (172.23.0.2:60956 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:444] Channel open
flower_1    | [D 210627 22:25:41 events:175] Capturing events...
rabbitmq_1  | 2021-06-27 22:25:41.716 [info] <0.914.0> accepting AMQP connection <0.914.0> (172.23.0.2:60958 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [I 210627 22:25:41 mixins:226] Connected to amqp://guest:**@rabbitmq:5672//
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:41.719 [info] <0.914.0> connection <0.914.0> (172.23.0.2:60958 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:41.746 [info] <0.931.0> accepting AMQP connection <0.931.0> (172.23.0.2:60960 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:41.749 [info] <0.931.0> connection <0.931.0> (172.23.0.2:60960 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:41.758 [info] <0.943.0> accepting AMQP connection <0.943.0> (172.23.0.2:60962 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:41.760 [info] <0.943.0> connection <0.943.0> (172.23.0.2:60962 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:41.862 [info] <0.964.0> accepting AMQP connection <0.964.0> (172.23.0.2:60966 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:41.862 [info] <0.967.0> accepting AMQP connection <0.967.0> (172.23.0.2:60974 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:41.863 [info] <0.970.0> accepting AMQP connection <0.970.0> (172.23.0.2:60968 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
rabbitmq_1  | 2021-06-27 22:25:41.863 [info] <0.973.0> accepting AMQP connection <0.973.0> (172.23.0.2:60970 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:41.864 [info] <0.976.0> accepting AMQP connection <0.976.0> (172.23.0.2:60972 -> 172.23.0.3:5672)
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
rabbitmq_1  | 2021-06-27 22:25:41.865 [info] <0.979.0> accepting AMQP connection <0.979.0> (172.23.0.2:60976 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:41.865 [info] <0.967.0> connection <0.967.0> (172.23.0.2:60974 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
rabbitmq_1  | 2021-06-27 22:25:41.866 [info] <0.964.0> connection <0.964.0> (172.23.0.2:60966 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
rabbitmq_1  | 2021-06-27 22:25:41.867 [info] <0.973.0> connection <0.973.0> (172.23.0.2:60970 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
rabbitmq_1  | 2021-06-27 22:25:41.867 [info] <0.976.0> connection <0.976.0> (172.23.0.2:60972 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
flower_1    | [D 210627 22:25:41 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:41.869 [info] <0.970.0> connection <0.970.0> (172.23.0.2:60968 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@a958aad2d5e0', 'copyright': 'Copyright (c) 2007-2021 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 24.0.2', 'product': 'RabbitMQ', 'version': '3.8.16'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
flower_1    | [D 210627 22:25:41 channel:444] Channel open
flower_1    | [D 210627 22:25:41 channel:444] Channel open
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
flower_1    | [D 210627 22:25:41 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:41.872 [info] <0.979.0> connection <0.979.0> (172.23.0.2:60976 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [D 210627 22:25:41 channel:104] using channel_id: 1
flower_1    | [D 210627 22:25:41 channel:444] Channel open
flower_1    | [D 210627 22:25:41 channel:444] Channel open
rabbitmq_1  | 2021-06-27 22:25:46.416 [info] <0.1061.0> accepting AMQP connection <0.1061.0> (172.23.0.1:57796 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:46.418 [info] <0.1064.0> accepting AMQP connection <0.1064.0> (172.23.0.1:57800 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:46.422 [info] <0.1061.0> connection <0.1061.0> (172.23.0.1:57796 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
rabbitmq_1  | 2021-06-27 22:25:46.424 [info] <0.1064.0> connection <0.1064.0> (172.23.0.1:57800 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
rabbitmq_1  | 2021-06-27 22:25:46.437 [info] <0.1077.0> accepting AMQP connection <0.1077.0> (172.23.0.1:57804 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:46.438 [info] <0.1080.0> accepting AMQP connection <0.1080.0> (172.23.0.1:57808 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:46.440 [info] <0.1077.0> connection <0.1077.0> (172.23.0.1:57804 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
rabbitmq_1  | 2021-06-27 22:25:46.441 [info] <0.1080.0> connection <0.1080.0> (172.23.0.1:57808 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
rabbitmq_1  | 2021-06-27 22:25:46.454 [info] <0.1119.0> accepting AMQP connection <0.1119.0> (172.23.0.1:57818 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:46.455 [info] <0.1122.0> accepting AMQP connection <0.1122.0> (172.23.0.1:57814 -> 172.23.0.3:5672)
rabbitmq_1  | 2021-06-27 22:25:46.458 [info] <0.1119.0> connection <0.1119.0> (172.23.0.1:57818 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
rabbitmq_1  | 2021-06-27 22:25:46.458 [info] <0.1122.0> connection <0.1122.0> (172.23.0.1:57814 -> 172.23.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
flower_1    | [I 210627 22:25:55 web:2239] 304 GET /dashboard (172.23.0.1) 30.76ms
flower_1    | [I 210627 22:25:55 web:2239] 200 GET /dashboard?json=1&_=1624832755483 (172.23.0.1) 0.81ms
flower_1    | [I 210627 22:25:56 web:2239] 200 GET /dashboard?json=1&_=1624832756485 (172.23.0.1) 0.70ms
flower_1    | [I 210627 22:25:57 web:2239] 200 GET /dashboard?json=1&_=1624832757485 (172.23.0.1) 0.47ms
flower_1    | [I 210627 22:25:58 web:2239] 200 GET /dashboard?json=1&_=1624832758485 (172.23.0.1) 0.53ms
flower_1    | [I 210627 22:25:59 web:2239] 200 GET /dashboard?json=1&_=1624832759485 (172.23.0.1) 0.86ms
flower_1    | [I 210627 22:26:00 web:2239] 200 GET /dashboard?json=1&_=1624832760485 (172.23.0.1) 0.52ms
flower_1    | [E 210627 22:26:00 broker:79] RabbitMQ management API call failed: Timeout while connecting
flower_1    | [I 210627 22:26:00 web:2239] 304 GET /broker (172.23.0.1) 1030.55ms
flower_1    | [E 210627 22:26:05 broker:79] RabbitMQ management API call failed: Timeout while connecting
flower_1    | [I 210627 22:26:05 web:2239] 304 GET /broker (172.23.0.1) 1023.93ms

@nicolaerosia
Copy link

nicolaerosia commented Jun 30, 2021

you can use the image mher/flower with the tag latest, I see it's being built regularly, https://hub.docker.com/r/mher/flower/tags?page=1&ordering=last_updated

LE: Oh! I'm wrong actually, I see it's doing pip install flower :-s
https://hub.docker.com/layers/mher/flower/latest/images/sha256-f26cfddeec3860215b73d10a6dd3e2e200bb2a9d5447bc398705f74f3c43751a?context=explore

This explains some of the things I'm seeing :)

@Tomasz-Kluczkowski
Copy link
Contributor Author

Yeah that's why I built a new one. I wonder if anyone else has same connection issue depending on order of booting of Flower/broker.

We definitely had it in our kubernetes cluster until I used the my fork of Flower with waiting for broker on boot...

@petarmaric
Copy link

Yep, same issue here during local development, via docker-compose.

@jhkcia
Copy link

jhkcia commented Jul 9, 2021

You can use this docker-compose file:

version: '3.4'
services:
rabbitmq:
image: rabbitmq
ports:
- 5672:5672

flower:
    image: mher/flower
    environment: 
        - CELERY_BROKER_URL=pyamqp://guest@rabbitmq//
        - FLOWER_PORT=5555
    ports: 
        - 5555:5555
    depends_on: 
        - rabbitmq

*** remember not to use single quotation for CELERY_BROKER_URL value!! the below config will raise error:

    - CELERY_BROKER_URL='pyamqp://guest@rabbitmq//'

@ccrvlh
Copy link

ccrvlh commented Jul 31, 2021

Though of posting here, seems to be a similar problem I'm having.
I have RabbitMQ running in a cluster and a few workers running with 5.x.
The old notation of "flower ... " wouldn't work after I updated the works, and I tried a few variations and it seems that Flower doesn't read the broker_api variable.

I have a env var set with FLOWER_BROKER_API, and also tried with celery flower --broker_api=http://my-broker-service/api/, and nothing.

When looking at the logs flower is connecting to the default broker Broker: amqp://guest:**@localhost:5672// and RabbitMQ management API gives a timeout while connecting.

I might be doing something wrong, but that has been my experience so far after updating to Celery 5.

EDIT: Got it working when setting the CELERY_BROKER_URL env on the Flower manifest. Maybe the lack of the CELERY_... env was making it override the broker_api flag? And it trying to connect to the default API of the broker?

@egelja
Copy link

egelja commented Aug 26, 2021

This is happening when I run Flower/RabbitMQ too.

Compose File:

queue:
  # image: rabbitmq:3
  # Using the below image instead is required to enable the "Broker" tab in the flower UI:
  image: rabbitmq:3-management
  #
  # You also have to change the flower command

flower:
  image: mher/flower
  env_file:
    # This just sets login details
    - .env
  environment:
    - CELERY_BROKER_URL=amqp://guest@queue:5672//
  command:
    - "celery"
    - "--broker=amqp://guest@queue:5672//"
    - "flower"
    # For the "Broker" tab to work in the flower UI, uncomment the following command argument,
    # and change the queue service's image as well
    - "--broker_api=http://guest:guest@queue:15672/api//"

Versions:

$ docker compose exec flower python -c "import flower, celery; print(f'Flower {flower.__version__}'); print(f'Celery {celery.__version__}')"
Flower 1.0.0
Celery 5.1.2
Logs from RabbitMQ (queue_1) and Flower (flower_1)

Note: some of the RabbitMQ connections are from Celery.

queue_1  | 2021-08-26 02:04:41.580402+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:41.613306+00:00 [info] <0.222.0> Feature flags:   [ ] implicit_default_bindings
queue_1  | 2021-08-26 02:04:41.613415+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:41.613447+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:41.613467+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:41.613751+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:41.613798+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:41.613825+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:42.463568+00:00 [noti] <0.44.0> Application syslog exited with reason: stopped
queue_1  | 2021-08-26 02:04:42.463731+00:00 [noti] <0.222.0> Logging: switching to configured handler(s); following messages may not be visible in this log output
queue_1  | 2021-08-26 02:04:42.527782+00:00 [noti] <0.222.0> Logging: configured log handlers are now ACTIVE
queue_1  | 2021-08-26 02:04:43.168067+00:00 [info] <0.222.0> ra: starting system quorum_queues
queue_1  | 2021-08-26 02:04:43.168263+00:00 [info] <0.222.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/quorum/rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:43.377841+00:00 [info] <0.260.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered
queue_1  | 2021-08-26 02:04:43.426681+00:00 [noti] <0.265.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables
queue_1  | 2021-08-26 02:04:43.460687+00:00 [info] <0.222.0> ra: starting system coordination
queue_1  | 2021-08-26 02:04:43.460793+00:00 [info] <0.222.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/coordination/rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:43.473182+00:00 [info] <0.273.0> ra: meta data store initialised for system coordination. 0 record(s) recovered
queue_1  | 2021-08-26 02:04:43.473929+00:00 [noti] <0.278.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables
queue_1  | 2021-08-26 02:04:43.483266+00:00 [info] <0.222.0> 
queue_1  | 2021-08-26 02:04:43.483266+00:00 [info] <0.222.0>  Starting RabbitMQ 3.9.4 on Erlang 24.0.5 [jit]
queue_1  | 2021-08-26 02:04:43.483266+00:00 [info] <0.222.0>  Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
queue_1  | 2021-08-26 02:04:43.483266+00:00 [info] <0.222.0>  Licensed under the MPL 2.0. Website: https://rabbitmq.com
queue_1  | 
queue_1  |   ##  ##      RabbitMQ 3.9.4
queue_1  |   ##  ##
queue_1  |   ##########  Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
queue_1  |   ######  ##
queue_1  |   ##########  Licensed under the MPL 2.0. Website: https://rabbitmq.com
queue_1  | 
queue_1  |   Erlang:      24.0.5 [jit]
queue_1  |   TLS Library: OpenSSL - OpenSSL 1.1.1k  25 Mar 2021
queue_1  | 
queue_1  |   Doc guides:  https://rabbitmq.com/documentation.html
queue_1  |   Support:     https://rabbitmq.com/contact.html
queue_1  |   Tutorials:   https://rabbitmq.com/getstarted.html
queue_1  |   Monitoring:  https://rabbitmq.com/monitoring.html
queue_1  | 
queue_1  |   Logs: /var/log/rabbitmq/rabbit@a35bf8148a2b_upgrade.log
queue_1  |         <stdout>
queue_1  | 
queue_1  |   Config file(s): /etc/rabbitmq/conf.d/10-default-guest-user.conf
queue_1  | 
queue_1  |   Starting broker...2021-08-26 02:04:43.488020+00:00 [info] <0.222.0> 
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>  node           : rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>  home dir       : /var/lib/rabbitmq
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>  config file(s) : /etc/rabbitmq/conf.d/10-default-guest-user.conf
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>  cookie hash    : G1QjiwLRAwtdOonej+2vrg==
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>  log(s)         : /var/log/rabbitmq/rabbit@a35bf8148a2b_upgrade.log
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>                 : <stdout>
queue_1  | 2021-08-26 02:04:43.488020+00:00 [info] <0.222.0>  database dir   : /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:44.154731+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:44.154940+00:00 [info] <0.222.0> Feature flags:   [ ] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:44.154989+00:00 [info] <0.222.0> Feature flags:   [ ] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:44.155013+00:00 [info] <0.222.0> Feature flags:   [ ] implicit_default_bindings
queue_1  | 2021-08-26 02:04:44.155126+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:44.155162+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:44.155193+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:44.155211+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:44.155324+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:44.155375+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.234220+00:00 [info] <0.222.0> Running boot step pre_boot defined by app rabbit
queue_1  | 2021-08-26 02:04:49.234282+00:00 [info] <0.222.0> Running boot step rabbit_global_counters defined by app rabbit
queue_1  | 2021-08-26 02:04:49.234583+00:00 [info] <0.222.0> Running boot step rabbit_osiris_metrics defined by app rabbit
queue_1  | 2021-08-26 02:04:49.234788+00:00 [info] <0.222.0> Running boot step rabbit_core_metrics defined by app rabbit
queue_1  | 2021-08-26 02:04:49.235704+00:00 [info] <0.222.0> Running boot step rabbit_alarm defined by app rabbit
queue_1  | 2021-08-26 02:04:49.244828+00:00 [info] <0.291.0> Memory high watermark set to 2478 MiB (2598528614 bytes) of 6195 MiB (6496321536 bytes) total
queue_1  | 2021-08-26 02:04:49.255034+00:00 [info] <0.293.0> Enabling free disk space monitoring
queue_1  | 2021-08-26 02:04:49.255103+00:00 [info] <0.293.0> Disk free limit set to 50MB
queue_1  | 2021-08-26 02:04:49.260480+00:00 [info] <0.222.0> Running boot step code_server_cache defined by app rabbit
queue_1  | 2021-08-26 02:04:49.260634+00:00 [info] <0.222.0> Running boot step file_handle_cache defined by app rabbit
queue_1  | 2021-08-26 02:04:49.260936+00:00 [info] <0.296.0> Limiting to approx 1048479 file handles (943629 sockets)
queue_1  | 2021-08-26 02:04:49.261168+00:00 [info] <0.297.0> FHC read buffering: OFF
queue_1  | 2021-08-26 02:04:49.261222+00:00 [info] <0.297.0> FHC write buffering: ON
queue_1  | 2021-08-26 02:04:49.262411+00:00 [info] <0.222.0> Running boot step worker_pool defined by app rabbit
queue_1  | 2021-08-26 02:04:49.262640+00:00 [info] <0.280.0> Will use 8 processes for default worker pool
queue_1  | 2021-08-26 02:04:49.262699+00:00 [info] <0.280.0> Starting worker pool 'worker_pool' with 8 processes in it
queue_1  | 2021-08-26 02:04:49.264555+00:00 [info] <0.222.0> Running boot step database defined by app rabbit
queue_1  | 2021-08-26 02:04:49.265409+00:00 [info] <0.222.0> Node database directory at /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b is empty. Assuming we need to join an existing cluster or initialise from scratch...
queue_1  | 2021-08-26 02:04:49.265570+00:00 [info] <0.222.0> Configured peer discovery backend: rabbit_peer_discovery_classic_config
queue_1  | 2021-08-26 02:04:49.265642+00:00 [info] <0.222.0> Will try to lock with peer discovery backend rabbit_peer_discovery_classic_config
queue_1  | 2021-08-26 02:04:49.265833+00:00 [info] <0.222.0> All discovered existing cluster peers:
queue_1  | 2021-08-26 02:04:49.265867+00:00 [info] <0.222.0> Discovered no peer nodes to cluster with. Some discovery backends can filter nodes out based on a readiness criteria. Enabling debug logging might help troubleshoot.
queue_1  | 2021-08-26 02:04:49.269476+00:00 [noti] <0.44.0> Application mnesia exited with reason: stopped
queue_1  | 2021-08-26 02:04:49.461227+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.461523+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.477077+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.477556+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.477666+00:00 [info] <0.222.0> Feature flag `drop_unroutable_metric`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.478082+00:00 [info] <0.222.0> Feature flag `drop_unroutable_metric`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.480864+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.480963+00:00 [info] <0.222.0> Feature flags:   [~] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.481063+00:00 [info] <0.222.0> Feature flags:   [ ] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.481301+00:00 [info] <0.222.0> Feature flags:   [ ] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.481354+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.481395+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.481421+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.481462+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.481501+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.481547+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.500583+00:00 [info] <0.222.0> Feature flag `drop_unroutable_metric`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.503529+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.503619+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.503653+00:00 [info] <0.222.0> Feature flags:   [ ] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.503683+00:00 [info] <0.222.0> Feature flags:   [ ] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.503709+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.503880+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.503901+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.503921+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.504002+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.504047+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.517940+00:00 [info] <0.222.0> Feature flag `empty_basic_get_metric`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.518180+00:00 [info] <0.222.0> Feature flag `empty_basic_get_metric`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.520633+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.520749+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.520835+00:00 [info] <0.222.0> Feature flags:   [~] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.520911+00:00 [info] <0.222.0> Feature flags:   [ ] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.520988+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.521033+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.521073+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.521275+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.521312+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.521346+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.536860+00:00 [info] <0.222.0> Feature flag `empty_basic_get_metric`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.541682+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.541751+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.541772+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.541789+00:00 [info] <0.222.0> Feature flags:   [ ] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.541877+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.541905+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.541922+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.541959+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.542052+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.542072+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.555678+00:00 [info] <0.222.0> Feature flag `implicit_default_bindings`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.555844+00:00 [info] <0.222.0> Feature flag `implicit_default_bindings`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.557832+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.558050+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.558126+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.558215+00:00 [info] <0.222.0> Feature flags:   [~] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.558247+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.558272+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.558344+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.558382+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.558412+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.558446+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.571555+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 0 retries left
queue_1  | 2021-08-26 02:04:49.572035+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.572119+00:00 [info] <0.222.0> Feature flag `implicit_default_bindings`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.576426+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.576528+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.576558+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.576587+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.576656+00:00 [info] <0.222.0> Feature flags:   [ ] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.576681+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.576697+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.576714+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.576795+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.576839+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.589977+00:00 [info] <0.222.0> Feature flag `maintenance_mode_status`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.590131+00:00 [info] <0.222.0> Feature flag `maintenance_mode_status`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.591798+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.591931+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.591984+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.592023+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.592055+00:00 [info] <0.222.0> Feature flags:   [~] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.592083+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.592149+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.592189+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.592229+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.592301+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.611144+00:00 [info] <0.222.0> Creating table rabbit_node_maintenance_states for feature flag `maintenance_mode_status`
queue_1  | 2021-08-26 02:04:49.619820+00:00 [info] <0.222.0> Feature flag `maintenance_mode_status`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.623626+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.623733+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.623781+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.623801+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.623822+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.623848+00:00 [info] <0.222.0> Feature flags:   [ ] quorum_queue
queue_1  | 2021-08-26 02:04:49.623871+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.623905+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.623932+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.623960+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.637603+00:00 [info] <0.222.0> Feature flag `quorum_queue`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.637746+00:00 [info] <0.222.0> Feature flag `quorum_queue`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.639132+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.639256+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.639302+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.639372+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.639406+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.639432+00:00 [info] <0.222.0> Feature flags:   [~] quorum_queue
queue_1  | 2021-08-26 02:04:49.639455+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.639529+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.639568+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.639616+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.652230+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.652530+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.652592+00:00 [info] <0.222.0> Feature flag `quorum_queue`:   migrating Mnesia table rabbit_queue...
queue_1  | 2021-08-26 02:04:49.691999+00:00 [info] <0.222.0> Feature flag `quorum_queue`:   migrating Mnesia table rabbit_durable_queue...
queue_1  | 2021-08-26 02:04:49.727350+00:00 [info] <0.222.0> Feature flag `quorum_queue`:   Mnesia tables migration done
queue_1  | 2021-08-26 02:04:49.727451+00:00 [info] <0.222.0> Feature flag `quorum_queue`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.731270+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.731407+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.731442+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.731466+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.731502+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.731569+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.731653+00:00 [info] <0.222.0> Feature flags:   [ ] stream_queue
queue_1  | 2021-08-26 02:04:49.731696+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.731794+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.731848+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.746750+00:00 [info] <0.222.0> Feature flag `stream_queue`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.747056+00:00 [info] <0.222.0> Feature flag `stream_queue`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.749310+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.749439+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.749515+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.749588+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.749628+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.749682+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.749730+00:00 [info] <0.222.0> Feature flags:   [~] stream_queue
queue_1  | 2021-08-26 02:04:49.749800+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.749838+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.749903+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.760910+00:00 [info] <0.222.0> Feature flag `stream_queue`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.765843+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.765958+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.765999+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.766027+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.766242+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.766307+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.766346+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1  | 2021-08-26 02:04:49.766422+00:00 [info] <0.222.0> Feature flags:   [ ] user_limits
queue_1  | 2021-08-26 02:04:49.766461+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.766492+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.780718+00:00 [info] <0.222.0> Feature flag `user_limits`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.780912+00:00 [info] <0.222.0> Feature flag `user_limits`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.782834+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.783090+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.783316+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.783685+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.783731+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.783779+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.784105+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1  | 2021-08-26 02:04:49.784575+00:00 [info] <0.222.0> Feature flags:   [~] user_limits
queue_1  | 2021-08-26 02:04:49.785012+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.785529+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.801406+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.801642+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.834142+00:00 [info] <0.222.0> Feature flag `user_limits`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.837974+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.838189+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.838250+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.838288+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.838369+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.838402+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.838432+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1  | 2021-08-26 02:04:49.838461+00:00 [info] <0.222.0> Feature flags:   [x] user_limits
queue_1  | 2021-08-26 02:04:49.838679+00:00 [info] <0.222.0> Feature flags:   [ ] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.838731+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.855905+00:00 [info] <0.222.0> Feature flag `virtual_host_metadata`: supported, attempt to enable...
queue_1  | 2021-08-26 02:04:49.856131+00:00 [info] <0.222.0> Feature flag `virtual_host_metadata`: mark as enabled=state_changing
queue_1  | 2021-08-26 02:04:49.857828+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.857982+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.858023+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.858158+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.858194+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.858222+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.858264+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1  | 2021-08-26 02:04:49.858298+00:00 [info] <0.222.0> Feature flags:   [x] user_limits
queue_1  | 2021-08-26 02:04:49.858323+00:00 [info] <0.222.0> Feature flags:   [~] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.858375+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.896658+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.897028+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.948894+00:00 [info] <0.222.0> Feature flag `virtual_host_metadata`: mark as enabled=true
queue_1  | 2021-08-26 02:04:49.952504+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1  | 2021-08-26 02:04:49.952626+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1  | 2021-08-26 02:04:49.952687+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1  | 2021-08-26 02:04:49.952716+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1  | 2021-08-26 02:04:49.952743+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1  | 2021-08-26 02:04:49.952791+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1  | 2021-08-26 02:04:49.952818+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1  | 2021-08-26 02:04:49.952838+00:00 [info] <0.222.0> Feature flags:   [x] user_limits
queue_1  | 2021-08-26 02:04:49.952887+00:00 [info] <0.222.0> Feature flags:   [x] virtual_host_metadata
queue_1  | 2021-08-26 02:04:49.952921+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1  | 2021-08-26 02:04:49.965206+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.965552+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.981913+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1  | 2021-08-26 02:04:49.982059+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1  | 2021-08-26 02:04:49.982090+00:00 [info] <0.222.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping registration.
queue_1  | 2021-08-26 02:04:49.982115+00:00 [info] <0.222.0> Will try to unlock with peer discovery backend rabbit_peer_discovery_classic_config
queue_1  | 2021-08-26 02:04:49.982235+00:00 [info] <0.222.0> Running boot step database_sync defined by app rabbit
queue_1  | 2021-08-26 02:04:49.982402+00:00 [info] <0.222.0> Running boot step feature_flags defined by app rabbit
queue_1  | 2021-08-26 02:04:49.982597+00:00 [info] <0.222.0> Running boot step codec_correctness_check defined by app rabbit
queue_1  | 2021-08-26 02:04:49.982687+00:00 [info] <0.222.0> Running boot step external_infrastructure defined by app rabbit
queue_1  | 2021-08-26 02:04:49.982727+00:00 [info] <0.222.0> Running boot step rabbit_registry defined by app rabbit
queue_1  | 2021-08-26 02:04:49.982887+00:00 [info] <0.222.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983002+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_random defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983084+00:00 [info] <0.222.0> Running boot step rabbit_event defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983412+00:00 [info] <0.222.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983531+00:00 [info] <0.222.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983603+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_direct defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983678+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983768+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_headers defined by app rabbit
queue_1  | 2021-08-26 02:04:49.983875+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_topic defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984020+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984095+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984170+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984230+00:00 [info] <0.222.0> Running boot step rabbit_priority_queue defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984275+00:00 [info] <0.222.0> Priority queues enabled, real BQ is rabbit_variable_queue
queue_1  | 2021-08-26 02:04:49.984436+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_client_local defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984567+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984646+00:00 [info] <0.222.0> Running boot step kernel_ready defined by app rabbit
queue_1  | 2021-08-26 02:04:49.984716+00:00 [info] <0.222.0> Running boot step rabbit_sysmon_minder defined by app rabbit
queue_1  | 2021-08-26 02:04:49.985046+00:00 [info] <0.222.0> Running boot step rabbit_epmd_monitor defined by app rabbit
queue_1  | 2021-08-26 02:04:49.987637+00:00 [info] <0.562.0> epmd monitor knows us, inter-node communication (distribution) port: 25672
queue_1  | 2021-08-26 02:04:49.987940+00:00 [info] <0.222.0> Running boot step guid_generator defined by app rabbit
queue_1  | 2021-08-26 02:04:49.999435+00:00 [info] <0.222.0> Running boot step rabbit_node_monitor defined by app rabbit
queue_1  | 2021-08-26 02:04:49.999705+00:00 [info] <0.566.0> Starting rabbit_node_monitor
queue_1  | 2021-08-26 02:04:49.999974+00:00 [info] <0.222.0> Running boot step delegate_sup defined by app rabbit
queue_1  | 2021-08-26 02:04:50.001250+00:00 [info] <0.222.0> Running boot step rabbit_memory_monitor defined by app rabbit
queue_1  | 2021-08-26 02:04:50.001797+00:00 [info] <0.222.0> Running boot step core_initialized defined by app rabbit
queue_1  | 2021-08-26 02:04:50.001909+00:00 [info] <0.222.0> Running boot step upgrade_queues defined by app rabbit
queue_1  | 2021-08-26 02:04:50.012125+00:00 [info] <0.222.0> message_store upgrades: 1 to apply
queue_1  | 2021-08-26 02:04:50.012489+00:00 [info] <0.222.0> message_store upgrades: Applying rabbit_variable_queue:move_messages_to_vhost_store
queue_1  | 2021-08-26 02:04:50.012804+00:00 [info] <0.222.0> message_store upgrades: No durable queues found. Skipping message store migration
queue_1  | 2021-08-26 02:04:50.012894+00:00 [info] <0.222.0> message_store upgrades: Removing the old message store data
queue_1  | 2021-08-26 02:04:50.014719+00:00 [info] <0.222.0> message_store upgrades: All upgrades applied successfully
queue_1  | 2021-08-26 02:04:50.027328+00:00 [info] <0.222.0> Running boot step channel_tracking defined by app rabbit
queue_1  | 2021-08-26 02:04:50.036040+00:00 [info] <0.222.0> Setting up a table for channel tracking on this node: tracked_channel_on_node_rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:50.049147+00:00 [info] <0.222.0> Setting up a table for channel tracking on this node: tracked_channel_table_per_user_on_node_rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:50.049697+00:00 [info] <0.222.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit
queue_1  | 2021-08-26 02:04:50.049824+00:00 [info] <0.222.0> Running boot step connection_tracking defined by app rabbit
queue_1  | 2021-08-26 02:04:50.057852+00:00 [info] <0.222.0> Setting up a table for connection tracking on this node: tracked_connection_on_node_rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:50.065174+00:00 [info] <0.222.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost_on_node_rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:50.073526+00:00 [info] <0.222.0> Setting up a table for per-user connection counting on this node: tracked_connection_table_per_user_on_node_rabbit@a35bf8148a2b
queue_1  | 2021-08-26 02:04:50.074254+00:00 [info] <0.222.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit
queue_1  | 2021-08-26 02:04:50.074427+00:00 [info] <0.222.0> Running boot step rabbit_exchange_parameters defined by app rabbit
queue_1  | 2021-08-26 02:04:50.074687+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit
queue_1  | 2021-08-26 02:04:50.075423+00:00 [info] <0.222.0> Running boot step rabbit_policies defined by app rabbit
queue_1  | 2021-08-26 02:04:50.076212+00:00 [info] <0.222.0> Running boot step rabbit_policy defined by app rabbit
queue_1  | 2021-08-26 02:04:50.076372+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_validator defined by app rabbit
queue_1  | 2021-08-26 02:04:50.076425+00:00 [info] <0.222.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit
queue_1  | 2021-08-26 02:04:50.076522+00:00 [info] <0.222.0> Running boot step rabbit_stream_coordinator defined by app rabbit
queue_1  | 2021-08-26 02:04:50.076780+00:00 [info] <0.222.0> Running boot step rabbit_vhost_limit defined by app rabbit
queue_1  | 2021-08-26 02:04:50.076914+00:00 [info] <0.222.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management
queue_1  | 2021-08-26 02:04:50.077082+00:00 [info] <0.222.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent
queue_1  | 2021-08-26 02:04:50.077155+00:00 [info] <0.222.0> Management plugin: using rates mode 'basic'
queue_1  | 2021-08-26 02:04:50.078192+00:00 [info] <0.222.0> Running boot step recovery defined by app rabbit
queue_1  | 2021-08-26 02:04:50.081784+00:00 [info] <0.222.0> Running boot step empty_db_check defined by app rabbit
queue_1  | 2021-08-26 02:04:50.081900+00:00 [info] <0.222.0> Will seed default virtual host and user...
queue_1  | 2021-08-26 02:04:50.082204+00:00 [info] <0.222.0> Adding vhost '/' (description: 'Default virtual host', tags: [])
queue_1  | 2021-08-26 02:04:50.119207+00:00 [info] <0.627.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists
queue_1  | 2021-08-26 02:04:50.123560+00:00 [info] <0.627.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048'
queue_1  | 2021-08-26 02:04:50.130744+00:00 [info] <0.627.0> Starting message stores for vhost '/'
queue_1  | 2021-08-26 02:04:50.131063+00:00 [info] <0.631.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index
queue_1  | 2021-08-26 02:04:50.134585+00:00 [info] <0.627.0> Started message store of type transient for vhost '/'
queue_1  | 2021-08-26 02:04:50.134919+00:00 [info] <0.635.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index
queue_1  | 2021-08-26 02:04:50.136455+00:00 [warn] <0.635.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch
queue_1  | 2021-08-26 02:04:50.138538+00:00 [info] <0.627.0> Started message store of type persistent for vhost '/'
queue_1  | 2021-08-26 02:04:50.147031+00:00 [info] <0.222.0> Created user 'guest'
queue_1  | 2021-08-26 02:04:50.151573+00:00 [info] <0.222.0> Successfully set user tags for user 'guest' to [administrator]
queue_1  | 2021-08-26 02:04:50.155598+00:00 [info] <0.222.0> Successfully set permissions for 'guest' in virtual host '/' to '.*', '.*', '.*'
queue_1  | 2021-08-26 02:04:50.155682+00:00 [info] <0.222.0> Running boot step rabbit_looking_glass defined by app rabbit
queue_1  | 2021-08-26 02:04:50.155743+00:00 [info] <0.222.0> Running boot step rabbit_core_metrics_gc defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156170+00:00 [info] <0.222.0> Running boot step background_gc defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156389+00:00 [info] <0.222.0> Running boot step routing_ready defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156421+00:00 [info] <0.222.0> Running boot step pre_flight defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156442+00:00 [info] <0.222.0> Running boot step notify_cluster defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156483+00:00 [info] <0.222.0> Running boot step networking defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156551+00:00 [info] <0.222.0> Running boot step definition_import_worker_pool defined by app rabbit
queue_1  | 2021-08-26 02:04:50.156623+00:00 [info] <0.280.0> Starting worker pool 'definition_import_pool' with 8 processes in it
queue_1  | 2021-08-26 02:04:50.158304+00:00 [info] <0.222.0> Running boot step cluster_name defined by app rabbit
queue_1  | 2021-08-26 02:04:50.158513+00:00 [info] <0.222.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-RevaNhNCV6ua4uby1WfeOw'
queue_1  | 2021-08-26 02:04:50.163928+00:00 [info] <0.222.0> Running boot step direct_client defined by app rabbit
queue_1  | 2021-08-26 02:04:50.164133+00:00 [info] <0.222.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management
queue_1  | 2021-08-26 02:04:50.164245+00:00 [info] <0.672.0> Resetting node maintenance status
queue_1  | 2021-08-26 02:04:50.225919+00:00 [info] <0.737.0> Management plugin: HTTP (non-TLS) listener started on port 15672
queue_1  | 2021-08-26 02:04:50.226385+00:00 [info] <0.765.0> Statistics database started.
queue_1  | 2021-08-26 02:04:50.226634+00:00 [info] <0.764.0> Starting worker pool 'management_worker_pool' with 3 processes in it
queue_1  | 2021-08-26 02:04:50.271017+00:00 [info] <0.779.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692
queue_1  | 2021-08-26 02:04:50.271503+00:00 [info] <0.672.0> Ready to start client connection listeners
queue_1  | 2021-08-26 02:04:50.275095+00:00 [info] <0.823.0> started TCP listener on [::]:5672
queue_1  |  completed with 4 plugins.
queue_1  | 2021-08-26 02:04:50.403318+00:00 [info] <0.672.0> Server startup complete; 4 plugins started.
queue_1  | 2021-08-26 02:04:50.403318+00:00 [info] <0.672.0>  * rabbitmq_prometheus
queue_1  | 2021-08-26 02:04:50.403318+00:00 [info] <0.672.0>  * rabbitmq_management
queue_1  | 2021-08-26 02:04:50.403318+00:00 [info] <0.672.0>  * rabbitmq_web_dispatch
queue_1  | 2021-08-26 02:04:50.403318+00:00 [info] <0.672.0>  * rabbitmq_management_agent
queue_1  | 2021-08-26 02:04:51.877017+00:00 [info] <0.827.0> accepting AMQP connection <0.827.0> (172.19.0.5:56850 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:51.882098+00:00 [info] <0.827.0> connection <0.827.0> (172.19.0.5:56850 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:52.916026+00:00 [info] <0.839.0> accepting AMQP connection <0.839.0> (172.19.0.5:56852 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:52.918856+00:00 [info] <0.839.0> connection <0.839.0> (172.19.0.5:56852 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:53.178892+00:00 [info] <0.850.0> accepting AMQP connection <0.850.0> (172.19.0.8:38174 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:53.182171+00:00 [info] <0.850.0> connection <0.850.0> (172.19.0.8:38174 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:53.191382+00:00 [info] <0.858.0> accepting AMQP connection <0.858.0> (172.19.0.8:38176 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:53.195385+00:00 [info] <0.858.0> connection <0.858.0> (172.19.0.8:38176 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:53.218764+00:00 [info] <0.876.0> accepting AMQP connection <0.876.0> (172.19.0.8:38178 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:53.222113+00:00 [info] <0.876.0> connection <0.876.0> (172.19.0.8:38178 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:55.919581+00:00 [info] <0.926.0> accepting AMQP connection <0.926.0> (172.19.0.5:56860 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:55.924919+00:00 [info] <0.926.0> connection <0.926.0> (172.19.0.5:56860 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:55.939498+00:00 [info] <0.937.0> accepting AMQP connection <0.937.0> (172.19.0.5:56862 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:55.942739+00:00 [info] <0.937.0> connection <0.937.0> (172.19.0.5:56862 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.056055+00:00 [info] <0.954.0> accepting AMQP connection <0.954.0> (172.19.0.5:56864 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.056119+00:00 [info] <0.957.0> accepting AMQP connection <0.957.0> (172.19.0.5:56866 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.056672+00:00 [info] <0.960.0> accepting AMQP connection <0.960.0> (172.19.0.5:56868 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.060019+00:00 [info] <0.954.0> connection <0.954.0> (172.19.0.5:56864 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.061250+00:00 [info] <0.960.0> connection <0.960.0> (172.19.0.5:56868 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.061867+00:00 [info] <0.957.0> connection <0.957.0> (172.19.0.5:56866 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.165668+00:00 [info] <0.1005.0> accepting AMQP connection <0.1005.0> (172.19.0.5:56870 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.165903+00:00 [info] <0.1008.0> accepting AMQP connection <0.1008.0> (172.19.0.5:56874 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.166064+00:00 [info] <0.1011.0> accepting AMQP connection <0.1011.0> (172.19.0.5:56872 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.167220+00:00 [info] <0.1014.0> accepting AMQP connection <0.1014.0> (172.19.0.5:56876 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.168025+00:00 [info] <0.1017.0> accepting AMQP connection <0.1017.0> (172.19.0.5:56878 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:04:56.174060+00:00 [info] <0.1011.0> connection <0.1011.0> (172.19.0.5:56872 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.174350+00:00 [info] <0.1005.0> connection <0.1005.0> (172.19.0.5:56870 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.174464+00:00 [info] <0.1008.0> connection <0.1008.0> (172.19.0.5:56874 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.175818+00:00 [info] <0.1014.0> connection <0.1014.0> (172.19.0.5:56876 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:04:56.178986+00:00 [info] <0.1017.0> connection <0.1017.0> (172.19.0.5:56878 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:06:35.130623+00:00 [info] <0.1138.0> accepting AMQP connection <0.1138.0> (172.19.0.9:47950 -> 172.19.0.4:5672)
queue_1  | 2021-08-26 02:06:35.137751+00:00 [info] <0.1138.0> connection <0.1138.0> (172.19.0.9:47950 -> 172.19.0.4:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1  | 2021-08-26 02:08:17.457665+00:00 [warn] <0.1138.0> closing AMQP connection <0.1138.0> (172.19.0.9:47950 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:17.457665+00:00 [warn] <0.1138.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.189403+00:00 [warn] <0.1008.0> closing AMQP connection <0.1008.0> (172.19.0.5:56874 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.189403+00:00 [warn] <0.1008.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.189472+00:00 [warn] <0.1014.0> closing AMQP connection <0.1014.0> (172.19.0.5:56876 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.189472+00:00 [warn] <0.1014.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190123+00:00 [warn] <0.960.0> closing AMQP connection <0.960.0> (172.19.0.5:56868 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190123+00:00 [warn] <0.960.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190498+00:00 [warn] <0.957.0> closing AMQP connection <0.957.0> (172.19.0.5:56866 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190498+00:00 [warn] <0.957.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190718+00:00 [warn] <0.839.0> closing AMQP connection <0.839.0> (172.19.0.5:56852 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190718+00:00 [warn] <0.839.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190774+00:00 [warn] <0.1017.0> closing AMQP connection <0.1017.0> (172.19.0.5:56878 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190774+00:00 [warn] <0.1017.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190779+00:00 [warn] <0.1005.0> closing AMQP connection <0.1005.0> (172.19.0.5:56870 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190779+00:00 [warn] <0.1005.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190410+00:00 [warn] <0.1011.0> closing AMQP connection <0.1011.0> (172.19.0.5:56872 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190410+00:00 [warn] <0.1011.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190841+00:00 [warn] <0.827.0> closing AMQP connection <0.827.0> (172.19.0.5:56850 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190841+00:00 [warn] <0.827.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.190801+00:00 [warn] <0.926.0> closing AMQP connection <0.926.0> (172.19.0.5:56860 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.190801+00:00 [warn] <0.926.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.191239+00:00 [warn] <0.937.0> closing AMQP connection <0.937.0> (172.19.0.5:56862 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.191239+00:00 [warn] <0.937.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.191461+00:00 [warn] <0.954.0> closing AMQP connection <0.954.0> (172.19.0.5:56864 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1  | 2021-08-26 02:08:27.191461+00:00 [warn] <0.954.0> client unexpectedly closed TCP connection
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>     supervisor: {<0.974.0>,rabbit_channel_sup_sup}
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>     errorContext: shutdown_error
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>     reason: shutdown
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>     offender: [{nb_children,1},
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>                {id,channel_sup},
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>                {mfargs,{rabbit_channel_sup,start_link,[]}},
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>                {restart_type,temporary},
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>                {shutdown,infinity},
queue_1  | 2021-08-26 02:08:27.193493+00:00 [erro] <0.974.0>                {child_type,supervisor}]
queue_1  | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>     supervisor: {<0.1045.0>,rabbit_channel_sup}
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>     errorContext: shutdown_error
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>     reason: noproc
flower_1  | [I 210826 02:10:33 command:152] Visit me at http://localhost:5555
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>     offender: [{pid,<0.1053.0>},
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                {id,channel},
flower_1  | [I 210826 02:10:33 command:159] Broker: amqp://guest:**@queue:5672//
flower_1  | [I 210826 02:10:33 command:160] Registered tasks: 
flower_1  |     ['celery.accumulate',
flower_1  |      'celery.backend_cleanup',
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                {mfargs,
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                    {rabbit_channel,start_link,
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                        [1,<0.1005.0>,<0.1046.0>,<0.1005.0>,
flower_1  |      'celery.chain',
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                         <<"172.19.0.5:56870 -> 172.19.0.4:5672">>,
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                         rabbit_framing_amqp_0_9_1,
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                         {user,<<"guest">>,
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                             [administrator],
flower_1  |      'celery.chord',
flower_1  |      'celery.chord_unlock',
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                             [{rabbit_auth_backend_internal,none}]},
flower_1  |      'celery.chunks',
flower_1  |      'celery.group',
flower_1  |      'celery.map',
flower_1  |      'celery.starmap']
flower_1  | [I 210826 02:10:53 mixins:226] Connected to amqp://guest:**@queue:5672//
flower_1  | [E 210826 02:11:05 broker:79] RabbitMQ management API call failed: Timeout while connecting
flower_1  | [E 210826 02:12:58 broker:79] RabbitMQ management API call failed: Timeout while connecting
flower_1  | [I 210826 02:13:07 command:47] SIGTERM detected, shutting down
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                         <<"/">>,
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                         [{<<"consumer_cancel_notify">>,bool,true},
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                          {<<"connection.blocked">>,bool,true},
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                          {<<"authentication_failure_close">>,bool,true}],
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                         <0.1020.0>,<0.1048.0>]}},
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                {restart_type,intrinsic},
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                {shutdown,70000},
queue_1   | 2021-08-26 02:08:27.193154+00:00 [erro] <0.1045.0>                {child_type,worker}]
queue_1   | 2021-08-26 02:08:30.026877+00:00 [warn] <0.876.0> closing AMQP connection <0.876.0> (172.19.0.8:38178 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:08:30.026877+00:00 [warn] <0.876.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:08:30.027038+00:00 [warn] <0.850.0> closing AMQP connection <0.850.0> (172.19.0.8:38174 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:08:30.027038+00:00 [warn] <0.850.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:08:30.027235+00:00 [warn] <0.858.0> closing AMQP connection <0.858.0> (172.19.0.8:38176 -> 172.19.0.4:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:08:30.027235+00:00 [warn] <0.858.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:08:30.472796+00:00 [noti] <0.60.0> SIGTERM received - shutting down
queue_1   | 2021-08-26 02:08:30.472796+00:00 [noti] <0.60.0> 
queue_1   | 2021-08-26 02:08:30.481665+00:00 [warn] <0.729.0> HTTP listener registry could not find context rabbitmq_prometheus_tls
queue_1   | 2021-08-26 02:08:30.505508+00:00 [warn] <0.729.0> HTTP listener registry could not find context rabbitmq_management_tls
queue_1   | 2021-08-26 02:08:30.519916+00:00 [info] <0.222.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping unregistration.
queue_1   | 2021-08-26 02:08:30.520379+00:00 [info] <0.823.0> stopped TCP listener on [::]:5672
queue_1   | 2021-08-26 02:08:30.523104+00:00 [info] <0.1288.0> Closing all connections in vhost '/' on node 'rabbit@a35bf8148a2b' because the vhost is stopping
queue_1   | 2021-08-26 02:08:30.530585+00:00 [info] <0.635.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent'
queue_1   | 2021-08-26 02:08:30.543622+00:00 [info] <0.635.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped
queue_1   | 2021-08-26 02:08:30.543904+00:00 [info] <0.631.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient'
queue_1   | 2021-08-26 02:08:30.560275+00:00 [info] <0.631.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped
queue_1   | 2021-08-26 02:10:39.308164+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1   | 2021-08-26 02:10:39.337584+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1   | 2021-08-26 02:10:39.337672+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1   | 2021-08-26 02:10:39.337696+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1   | 2021-08-26 02:10:39.337713+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1   | 2021-08-26 02:10:39.337826+00:00 [info] <0.222.0> Feature flags:   [x] user_limits
queue_1   | 2021-08-26 02:10:39.337850+00:00 [info] <0.222.0> Feature flags:   [x] virtual_host_metadata
queue_1   | 2021-08-26 02:10:39.337869+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1   | 2021-08-26 02:10:40.151804+00:00 [noti] <0.44.0> Application syslog exited with reason: stopped
queue_1   | 2021-08-26 02:10:40.151917+00:00 [noti] <0.222.0> Logging: switching to configured handler(s); following messages may not be visible in this log output
queue_1   | 2021-08-26 02:10:40.184989+00:00 [noti] <0.222.0> Logging: configured log handlers are now ACTIVE
queue_1   | 2021-08-26 02:10:45.389815+00:00 [info] <0.222.0> ra: starting system quorum_queues
queue_1   | 2021-08-26 02:10:45.389931+00:00 [info] <0.222.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/quorum/rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:45.395916+00:00 [info] <0.292.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered
queue_1   | 2021-08-26 02:10:45.396643+00:00 [noti] <0.303.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables
queue_1   | 2021-08-26 02:10:45.449405+00:00 [info] <0.222.0> ra: starting system coordination
queue_1   | 2021-08-26 02:10:45.449538+00:00 [info] <0.222.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/coordination/rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:45.454929+00:00 [info] <0.357.0> ra: meta data store initialised for system coordination. 0 record(s) recovered
queue_1   | 2021-08-26 02:10:45.455191+00:00 [noti] <0.362.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables
queue_1   | 2021-08-26 02:10:45.478618+00:00 [info] <0.222.0> 
queue_1   | 2021-08-26 02:10:45.478618+00:00 [info] <0.222.0>  Starting RabbitMQ 3.9.4 on Erlang 24.0.5 [jit]
queue_1   | 2021-08-26 02:10:45.478618+00:00 [info] <0.222.0>  Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
queue_1   | 2021-08-26 02:10:45.478618+00:00 [info] <0.222.0>  Licensed under the MPL 2.0. Website: https://rabbitmq.com
queue_1   | 
queue_1   |   ##  ##      RabbitMQ 3.9.4
queue_1   |   ##  ##
queue_1   |   ##########  Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
queue_1   |   ######  ##
queue_1   |   ##########  Licensed under the MPL 2.0. Website: https://rabbitmq.com
queue_1   | 
queue_1   |   Erlang:      24.0.5 [jit]
queue_1   |   TLS Library: OpenSSL - OpenSSL 1.1.1k  25 Mar 2021
queue_1   | 
queue_1   |   Doc guides:  https://rabbitmq.com/documentation.html
queue_1   |   Support:     https://rabbitmq.com/contact.html
queue_1   |   Tutorials:   https://rabbitmq.com/getstarted.html
queue_1   |   Monitoring:  https://rabbitmq.com/monitoring.html
queue_1   | 
queue_1   |   Logs: /var/log/rabbitmq/rabbit@a35bf8148a2b_upgrade.log
queue_1   |         <stdout>
queue_1   | 
queue_1   |   Config file(s): /etc/rabbitmq/conf.d/10-default-guest-user.conf
queue_1   | 
queue_1   |   Starting broker...2021-08-26 02:10:45.481984+00:00 [info] <0.222.0> 
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>  node           : rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>  home dir       : /var/lib/rabbitmq
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>  config file(s) : /etc/rabbitmq/conf.d/10-default-guest-user.conf
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>  cookie hash    : G1QjiwLRAwtdOonej+2vrg==
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>  log(s)         : /var/log/rabbitmq/rabbit@a35bf8148a2b_upgrade.log
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>                 : <stdout>
queue_1   | 2021-08-26 02:10:45.481984+00:00 [info] <0.222.0>  database dir   : /var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:46.140511+00:00 [info] <0.222.0> Feature flags: list of feature flags found:
queue_1   | 2021-08-26 02:10:46.140708+00:00 [info] <0.222.0> Feature flags:   [x] drop_unroutable_metric
queue_1   | 2021-08-26 02:10:46.140831+00:00 [info] <0.222.0> Feature flags:   [x] empty_basic_get_metric
queue_1   | 2021-08-26 02:10:46.140858+00:00 [info] <0.222.0> Feature flags:   [x] implicit_default_bindings
queue_1   | 2021-08-26 02:10:46.140950+00:00 [info] <0.222.0> Feature flags:   [x] maintenance_mode_status
queue_1   | 2021-08-26 02:10:46.140979+00:00 [info] <0.222.0> Feature flags:   [x] quorum_queue
queue_1   | 2021-08-26 02:10:46.141010+00:00 [info] <0.222.0> Feature flags:   [x] stream_queue
queue_1   | 2021-08-26 02:10:46.141030+00:00 [info] <0.222.0> Feature flags:   [x] user_limits
queue_1   | 2021-08-26 02:10:46.141117+00:00 [info] <0.222.0> Feature flags:   [x] virtual_host_metadata
queue_1   | 2021-08-26 02:10:46.141142+00:00 [info] <0.222.0> Feature flags: feature flag states written to disk: yes
queue_1   | 2021-08-26 02:10:46.562744+00:00 [info] <0.222.0> Running boot step pre_boot defined by app rabbit
queue_1   | 2021-08-26 02:10:46.562818+00:00 [info] <0.222.0> Running boot step rabbit_global_counters defined by app rabbit
queue_1   | 2021-08-26 02:10:46.563704+00:00 [info] <0.222.0> Running boot step rabbit_osiris_metrics defined by app rabbit
queue_1   | 2021-08-26 02:10:46.564071+00:00 [info] <0.222.0> Running boot step rabbit_core_metrics defined by app rabbit
queue_1   | 2021-08-26 02:10:46.565312+00:00 [info] <0.222.0> Running boot step rabbit_alarm defined by app rabbit
queue_1   | 2021-08-26 02:10:46.573881+00:00 [info] <0.373.0> Memory high watermark set to 2478 MiB (2598528614 bytes) of 6195 MiB (6496321536 bytes) total
queue_1   | 2021-08-26 02:10:46.584316+00:00 [info] <0.375.0> Enabling free disk space monitoring
queue_1   | 2021-08-26 02:10:46.584432+00:00 [info] <0.375.0> Disk free limit set to 50MB
queue_1   | 2021-08-26 02:10:46.589846+00:00 [info] <0.222.0> Running boot step code_server_cache defined by app rabbit
queue_1   | 2021-08-26 02:10:46.590085+00:00 [info] <0.222.0> Running boot step file_handle_cache defined by app rabbit
queue_1   | 2021-08-26 02:10:46.590520+00:00 [info] <0.378.0> Limiting to approx 1048479 file handles (943629 sockets)
queue_1   | 2021-08-26 02:10:46.590751+00:00 [info] <0.379.0> FHC read buffering: OFF
queue_1   | 2021-08-26 02:10:46.590820+00:00 [info] <0.379.0> FHC write buffering: ON
queue_1   | 2021-08-26 02:10:46.591846+00:00 [info] <0.222.0> Running boot step worker_pool defined by app rabbit
queue_1   | 2021-08-26 02:10:46.592036+00:00 [info] <0.364.0> Will use 8 processes for default worker pool
queue_1   | 2021-08-26 02:10:46.592103+00:00 [info] <0.364.0> Starting worker pool 'worker_pool' with 8 processes in it
queue_1   | 2021-08-26 02:10:46.594142+00:00 [info] <0.222.0> Running boot step database defined by app rabbit
queue_1   | 2021-08-26 02:10:46.598738+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1   | 2021-08-26 02:10:46.601849+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1   | 2021-08-26 02:10:46.602026+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1   | 2021-08-26 02:10:46.602165+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1   | 2021-08-26 02:10:46.621784+00:00 [info] <0.222.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
queue_1   | 2021-08-26 02:10:46.621970+00:00 [info] <0.222.0> Successfully synced tables from a peer
queue_1   | 2021-08-26 02:10:46.622052+00:00 [info] <0.222.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping registration.
queue_1   | 2021-08-26 02:10:46.622196+00:00 [info] <0.222.0> Running boot step database_sync defined by app rabbit
queue_1   | 2021-08-26 02:10:46.622454+00:00 [info] <0.222.0> Running boot step feature_flags defined by app rabbit
queue_1   | 2021-08-26 02:10:46.622897+00:00 [info] <0.222.0> Running boot step codec_correctness_check defined by app rabbit
queue_1   | 2021-08-26 02:10:46.622972+00:00 [info] <0.222.0> Running boot step external_infrastructure defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623014+00:00 [info] <0.222.0> Running boot step rabbit_registry defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623142+00:00 [info] <0.222.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623235+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_random defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623306+00:00 [info] <0.222.0> Running boot step rabbit_event defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623499+00:00 [info] <0.222.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623602+00:00 [info] <0.222.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623663+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_direct defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623721+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623817+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_headers defined by app rabbit
queue_1   | 2021-08-26 02:10:46.623935+00:00 [info] <0.222.0> Running boot step rabbit_exchange_type_topic defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624008+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_mode_all defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624127+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_mode_exactly defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624228+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_mode_nodes defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624355+00:00 [info] <0.222.0> Running boot step rabbit_priority_queue defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624497+00:00 [info] <0.222.0> Priority queues enabled, real BQ is rabbit_variable_queue
queue_1   | 2021-08-26 02:10:46.624768+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_client_local defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624898+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_min_masters defined by app rabbit
queue_1   | 2021-08-26 02:10:46.624984+00:00 [info] <0.222.0> Running boot step kernel_ready defined by app rabbit
queue_1   | 2021-08-26 02:10:46.625036+00:00 [info] <0.222.0> Running boot step rabbit_sysmon_minder defined by app rabbit
queue_1   | 2021-08-26 02:10:46.625514+00:00 [info] <0.222.0> Running boot step rabbit_epmd_monitor defined by app rabbit
queue_1   | 2021-08-26 02:10:46.627348+00:00 [info] <0.405.0> epmd monitor knows us, inter-node communication (distribution) port: 25672
queue_1   | 2021-08-26 02:10:46.627742+00:00 [info] <0.222.0> Running boot step guid_generator defined by app rabbit
queue_1   | 2021-08-26 02:10:46.639428+00:00 [info] <0.222.0> Running boot step rabbit_node_monitor defined by app rabbit
queue_1   | 2021-08-26 02:10:46.640109+00:00 [info] <0.409.0> Starting rabbit_node_monitor
queue_1   | 2021-08-26 02:10:46.640434+00:00 [info] <0.222.0> Running boot step delegate_sup defined by app rabbit
queue_1   | 2021-08-26 02:10:46.641801+00:00 [info] <0.222.0> Running boot step rabbit_memory_monitor defined by app rabbit
queue_1   | 2021-08-26 02:10:46.642501+00:00 [info] <0.222.0> Running boot step core_initialized defined by app rabbit
queue_1   | 2021-08-26 02:10:46.642573+00:00 [info] <0.222.0> Running boot step upgrade_queues defined by app rabbit
queue_1   | 2021-08-26 02:10:46.664388+00:00 [info] <0.222.0> Running boot step channel_tracking defined by app rabbit
queue_1   | 2021-08-26 02:10:46.664874+00:00 [info] <0.222.0> Setting up a table for channel tracking on this node: tracked_channel_on_node_rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:46.665299+00:00 [info] <0.222.0> Setting up a table for channel tracking on this node: tracked_channel_table_per_user_on_node_rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:46.665691+00:00 [info] <0.222.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit
queue_1   | 2021-08-26 02:10:46.665853+00:00 [info] <0.222.0> Running boot step connection_tracking defined by app rabbit
queue_1   | 2021-08-26 02:10:46.666337+00:00 [info] <0.222.0> Setting up a table for connection tracking on this node: tracked_connection_on_node_rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:46.666662+00:00 [info] <0.222.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost_on_node_rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:46.667032+00:00 [info] <0.222.0> Setting up a table for per-user connection counting on this node: tracked_connection_table_per_user_on_node_rabbit@a35bf8148a2b
queue_1   | 2021-08-26 02:10:46.667935+00:00 [info] <0.222.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit
queue_1   | 2021-08-26 02:10:46.668273+00:00 [info] <0.222.0> Running boot step rabbit_exchange_parameters defined by app rabbit
queue_1   | 2021-08-26 02:10:46.668530+00:00 [info] <0.222.0> Running boot step rabbit_mirror_queue_misc defined by app rabbit
queue_1   | 2021-08-26 02:10:46.669524+00:00 [info] <0.222.0> Running boot step rabbit_policies defined by app rabbit
queue_1   | 2021-08-26 02:10:46.671187+00:00 [info] <0.222.0> Running boot step rabbit_policy defined by app rabbit
queue_1   | 2021-08-26 02:10:46.671570+00:00 [info] <0.222.0> Running boot step rabbit_queue_location_validator defined by app rabbit
queue_1   | 2021-08-26 02:10:46.671894+00:00 [info] <0.222.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit
queue_1   | 2021-08-26 02:10:46.672251+00:00 [info] <0.222.0> Running boot step rabbit_stream_coordinator defined by app rabbit
queue_1   | 2021-08-26 02:10:46.673729+00:00 [info] <0.222.0> Running boot step rabbit_vhost_limit defined by app rabbit
queue_1   | 2021-08-26 02:10:46.674323+00:00 [info] <0.222.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management
queue_1   | 2021-08-26 02:10:46.674610+00:00 [info] <0.222.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent
queue_1   | 2021-08-26 02:10:46.674711+00:00 [info] <0.222.0> Management plugin: using rates mode 'basic'
queue_1   | 2021-08-26 02:10:46.676604+00:00 [info] <0.222.0> Running boot step recovery defined by app rabbit
queue_1   | 2021-08-26 02:10:46.676427+00:00 [erro] <0.222.0> Discarding message {'$gen_cast',{force_event_refresh,#Ref<0.3519767561.3492806658.159870>}} from <0.222.0> to <0.892.0> in an old incarnation (1629943479) of this node (1629943837)
queue_1   | 2021-08-26 02:10:46.676427+00:00 [erro] <0.222.0> 
queue_1   | 2021-08-26 02:10:46.676427+00:00 [erro] <0.222.0> 
queue_1   | 2021-08-26 02:10:46.681360+00:00 [info] <0.447.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists
queue_1   | 2021-08-26 02:10:46.707631+00:00 [info] <0.447.0> Starting message stores for vhost '/'
queue_1   | 2021-08-26 02:10:46.708058+00:00 [info] <0.451.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index
queue_1   | 2021-08-26 02:10:46.713881+00:00 [info] <0.447.0> Started message store of type transient for vhost '/'
queue_1   | 2021-08-26 02:10:46.718792+00:00 [info] <0.455.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index
queue_1   | 2021-08-26 02:10:46.724874+00:00 [info] <0.447.0> Started message store of type persistent for vhost '/'
queue_1   | 2021-08-26 02:10:46.740934+00:00 [info] <0.222.0> Running boot step empty_db_check defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741073+00:00 [info] <0.222.0> Will not seed default virtual host and user: have definitions to load...
queue_1   | 2021-08-26 02:10:46.741119+00:00 [info] <0.222.0> Running boot step rabbit_looking_glass defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741172+00:00 [info] <0.222.0> Running boot step rabbit_core_metrics_gc defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741494+00:00 [info] <0.222.0> Running boot step background_gc defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741799+00:00 [info] <0.222.0> Running boot step routing_ready defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741843+00:00 [info] <0.222.0> Running boot step pre_flight defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741903+00:00 [info] <0.222.0> Running boot step notify_cluster defined by app rabbit
queue_1   | 2021-08-26 02:10:46.741953+00:00 [info] <0.222.0> Running boot step networking defined by app rabbit
queue_1   | 2021-08-26 02:10:46.742073+00:00 [info] <0.222.0> Running boot step definition_import_worker_pool defined by app rabbit
queue_1   | 2021-08-26 02:10:46.742200+00:00 [info] <0.364.0> Starting worker pool 'definition_import_pool' with 8 processes in it
queue_1   | 2021-08-26 02:10:46.744565+00:00 [info] <0.222.0> Running boot step cluster_name defined by app rabbit
queue_1   | 2021-08-26 02:10:46.744669+00:00 [info] <0.222.0> Running boot step direct_client defined by app rabbit
queue_1   | 2021-08-26 02:10:46.747762+00:00 [info] <0.222.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management
queue_1   | 2021-08-26 02:10:46.747920+00:00 [info] <0.494.0> Resetting node maintenance status
queue_1   | 2021-08-26 02:10:46.849655+00:00 [info] <0.559.0> Management plugin: HTTP (non-TLS) listener started on port 15672
queue_1   | 2021-08-26 02:10:46.850385+00:00 [info] <0.587.0> Statistics database started.
queue_1   | 2021-08-26 02:10:46.850633+00:00 [info] <0.586.0> Starting worker pool 'management_worker_pool' with 3 processes in it
queue_1   | 2021-08-26 02:10:46.889309+00:00 [info] <0.601.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692
queue_1   | 2021-08-26 02:10:46.889642+00:00 [info] <0.494.0> Ready to start client connection listeners
queue_1   | 2021-08-26 02:10:46.894376+00:00 [info] <0.645.0> started TCP listener on [::]:5672
queue_1   |  completed with 4 plugins.
queue_1   | 2021-08-26 02:10:47.071342+00:00 [info] <0.494.0> Server startup complete; 4 plugins started.
queue_1   | 2021-08-26 02:10:47.071342+00:00 [info] <0.494.0>  * rabbitmq_prometheus
queue_1   | 2021-08-26 02:10:47.071342+00:00 [info] <0.494.0>  * rabbitmq_management
queue_1   | 2021-08-26 02:10:47.071342+00:00 [info] <0.494.0>  * rabbitmq_web_dispatch
queue_1   | 2021-08-26 02:10:47.071342+00:00 [info] <0.494.0>  * rabbitmq_management_agent
queue_1   | 2021-08-26 02:10:49.717377+00:00 [info] <0.649.0> accepting AMQP connection <0.649.0> (172.19.0.3:51728 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:49.720132+00:00 [info] <0.649.0> connection <0.649.0> (172.19.0.3:51728 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:50.734031+00:00 [info] <0.661.0> accepting AMQP connection <0.661.0> (172.19.0.3:51730 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:50.736833+00:00 [info] <0.661.0> connection <0.661.0> (172.19.0.3:51730 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:52.089072+00:00 [info] <0.673.0> accepting AMQP connection <0.673.0> (172.19.0.7:49982 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:52.092291+00:00 [info] <0.673.0> connection <0.673.0> (172.19.0.7:49982 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:52.103587+00:00 [info] <0.681.0> accepting AMQP connection <0.681.0> (172.19.0.7:49984 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:52.106701+00:00 [info] <0.681.0> connection <0.681.0> (172.19.0.7:49984 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:52.130634+00:00 [info] <0.699.0> accepting AMQP connection <0.699.0> (172.19.0.7:49986 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:52.133331+00:00 [info] <0.699.0> connection <0.699.0> (172.19.0.7:49986 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:53.759264+00:00 [info] <0.741.0> accepting AMQP connection <0.741.0> (172.19.0.3:51738 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:53.762578+00:00 [info] <0.741.0> connection <0.741.0> (172.19.0.3:51738 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:53.773425+00:00 [info] <0.752.0> accepting AMQP connection <0.752.0> (172.19.0.3:51740 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:53.776790+00:00 [info] <0.752.0> connection <0.752.0> (172.19.0.3:51740 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.064582+00:00 [info] <0.769.0> accepting AMQP connection <0.769.0> (172.19.0.3:51742 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.064708+00:00 [info] <0.772.0> accepting AMQP connection <0.772.0> (172.19.0.3:51744 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.068435+00:00 [info] <0.769.0> connection <0.769.0> (172.19.0.3:51742 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.068560+00:00 [info] <0.772.0> connection <0.772.0> (172.19.0.3:51744 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.188006+00:00 [info] <0.803.0> accepting AMQP connection <0.803.0> (172.19.0.3:51750 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.188278+00:00 [info] <0.806.0> accepting AMQP connection <0.806.0> (172.19.0.3:51748 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.188819+00:00 [info] <0.809.0> accepting AMQP connection <0.809.0> (172.19.0.3:51746 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.189358+00:00 [info] <0.812.0> accepting AMQP connection <0.812.0> (172.19.0.3:51752 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.189927+00:00 [info] <0.815.0> accepting AMQP connection <0.815.0> (172.19.0.3:51754 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.190310+00:00 [info] <0.818.0> accepting AMQP connection <0.818.0> (172.19.0.3:51756 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:10:54.196529+00:00 [info] <0.806.0> connection <0.806.0> (172.19.0.3:51748 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.197747+00:00 [info] <0.803.0> connection <0.803.0> (172.19.0.3:51750 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.200706+00:00 [info] <0.812.0> connection <0.812.0> (172.19.0.3:51752 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.201077+00:00 [info] <0.809.0> connection <0.809.0> (172.19.0.3:51746 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.201079+00:00 [info] <0.815.0> connection <0.815.0> (172.19.0.3:51754 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:10:54.201286+00:00 [info] <0.818.0> connection <0.818.0> (172.19.0.3:51756 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:12:26.519231+00:00 [info] <0.951.0> accepting AMQP connection <0.951.0> (172.19.0.9:54762 -> 172.19.0.5:5672)
queue_1   | 2021-08-26 02:12:26.522005+00:00 [info] <0.951.0> connection <0.951.0> (172.19.0.9:54762 -> 172.19.0.5:5672): user 'guest' authenticated and granted access to vhost '/'
queue_1   | 2021-08-26 02:13:07.555243+00:00 [warn] <0.951.0> closing AMQP connection <0.951.0> (172.19.0.9:54762 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:07.555243+00:00 [warn] <0.951.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.317801+00:00 [warn] <0.815.0> closing AMQP connection <0.815.0> (172.19.0.3:51754 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.317801+00:00 [warn] <0.815.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.317801+00:00 [warn] <0.772.0> closing AMQP connection <0.772.0> (172.19.0.3:51744 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.317801+00:00 [warn] <0.772.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.317801+00:00 [warn] <0.818.0> closing AMQP connection <0.818.0> (172.19.0.3:51756 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.317801+00:00 [warn] <0.818.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318039+00:00 [warn] <0.806.0> closing AMQP connection <0.806.0> (172.19.0.3:51748 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318039+00:00 [warn] <0.806.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318174+00:00 [warn] <0.803.0> closing AMQP connection <0.803.0> (172.19.0.3:51750 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318174+00:00 [warn] <0.803.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318235+00:00 [warn] <0.809.0> closing AMQP connection <0.809.0> (172.19.0.3:51746 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318235+00:00 [warn] <0.809.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318374+00:00 [warn] <0.769.0> closing AMQP connection <0.769.0> (172.19.0.3:51742 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318374+00:00 [warn] <0.769.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318630+00:00 [warn] <0.752.0> closing AMQP connection <0.752.0> (172.19.0.3:51740 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318630+00:00 [warn] <0.752.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318646+00:00 [warn] <0.741.0> closing AMQP connection <0.741.0> (172.19.0.3:51738 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318646+00:00 [warn] <0.741.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318695+00:00 [warn] <0.812.0> closing AMQP connection <0.812.0> (172.19.0.3:51752 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318695+00:00 [warn] <0.812.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.319054+00:00 [warn] <0.649.0> closing AMQP connection <0.649.0> (172.19.0.3:51728 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.319054+00:00 [warn] <0.649.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>     supervisor: {<0.853.0>,rabbit_channel_sup}
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>     errorContext: shutdown_error
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>     reason: noproc
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>     offender: [{pid,<0.857.0>},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                {id,channel},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                {mfargs,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                    {rabbit_channel,start_link,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                        [1,<0.818.0>,<0.854.0>,<0.818.0>,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                         <<"172.19.0.3:51756 -> 172.19.0.5:5672">>,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                         rabbit_framing_amqp_0_9_1,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                         {user,<<"guest">>,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                             [administrator],
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                             [{rabbit_auth_backend_internal,none}]},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                         <<"/">>,
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                         [{<<"consumer_cancel_notify">>,bool,true},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                          {<<"connection.blocked">>,bool,true},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                          {<<"authentication_failure_close">>,bool,true}],
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                         <0.834.0>,<0.855.0>]}},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                {restart_type,intrinsic},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                {shutdown,70000},
queue_1   | 2021-08-26 02:13:17.318895+00:00 [erro] <0.853.0>                {child_type,worker}]
queue_1   | 2021-08-26 02:13:17.318592+00:00 [warn] <0.661.0> closing AMQP connection <0.661.0> (172.19.0.3:51730 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:17.318592+00:00 [warn] <0.661.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:19.780385+00:00 [warn] <0.699.0> closing AMQP connection <0.699.0> (172.19.0.7:49986 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:19.780385+00:00 [warn] <0.699.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:19.780489+00:00 [warn] <0.681.0> closing AMQP connection <0.681.0> (172.19.0.7:49984 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:19.780489+00:00 [warn] <0.681.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:19.780736+00:00 [warn] <0.673.0> closing AMQP connection <0.673.0> (172.19.0.7:49982 -> 172.19.0.5:5672, vhost: '/', user: 'guest'):
queue_1   | 2021-08-26 02:13:19.780736+00:00 [warn] <0.673.0> client unexpectedly closed TCP connection
queue_1   | 2021-08-26 02:13:20.095724+00:00 [noti] <0.60.0> SIGTERM received - shutting down
queue_1   | 2021-08-26 02:13:20.095724+00:00 [noti] <0.60.0> 
queue_1   | 2021-08-26 02:13:20.099693+00:00 [warn] <0.551.0> HTTP listener registry could not find context rabbitmq_prometheus_tls
queue_1   | 2021-08-26 02:13:20.109388+00:00 [warn] <0.551.0> HTTP listener registry could not find context rabbitmq_management_tls
queue_1   | 2021-08-26 02:13:20.126029+00:00 [info] <0.222.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping unregistration.
queue_1   | 2021-08-26 02:13:20.126228+00:00 [info] <0.645.0> stopped TCP listener on [::]:5672
queue_1   | 2021-08-26 02:13:20.128359+00:00 [info] <0.1053.0> Closing all connections in vhost '/' on node 'rabbit@a35bf8148a2b' because the vhost is stopping
queue_1   | 2021-08-26 02:13:20.134760+00:00 [info] <0.455.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent'
queue_1   | 2021-08-26 02:13:20.143692+00:00 [info] <0.455.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent' is stopped
queue_1   | 2021-08-26 02:13:20.143867+00:00 [info] <0.451.0> Stopping message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient'
queue_1   | 2021-08-26 02:13:20.161736+00:00 [info] <0.451.0> Message store for directory '/var/lib/rabbitmq/mnesia/rabbit@a35bf8148a2b/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L/msg_store_transient' is stopped

My Flower UI is also empty:

Dashboard:
image

Tasks:
image

Broker:
image


Celery is working, though:

image

@pymen
Copy link

pymen commented Aug 31, 2021

I have troubleshot it a bit

I got exception
result = {HTTPTimeoutError} Timeout while connecting
args = {tuple: 3} (599, 'Timeout while connecting', None)
code = {int} 599
message = {str} 'Timeout while connecting'
response = {NoneType} None

http_client.fetch(url)
url = 'http://guest:guest@localhost:15672/api/queues/'

but at the same time, if i open the same URL in the browser and get it with requests - it works - see attached pic

image

@pymen
Copy link

pymen commented Aug 31, 2021

the last line where i can catch an exception is tornado.httpclient
self.resolver.resolve(host, port, af) for localhost 15672

image

@Tomasz-Kluczkowski
Copy link
Contributor Author

Could you check this breakpoint when everything is ok (broker was started before Flower and connection is made correctly)?

I wonder what is host then, is it also just 'localhost' ?

@zhfkt
Copy link

zhfkt commented Oct 18, 2021

I had the same issue. I have to change the broker to Redis instead of RabbitMQ to make flower dashboard work.

@Tomasz-Kluczkowski
Copy link
Contributor Author

Well this is still present @mher , would you be willing to merge this: #1113 which makes flower wait for the broker if I fix merge conflicts?
The issue is on boot flower need to have the broker connection - don't know why, but as long as it waits for it - it then works fine.

I did try to investigate why on earth tornado http client is unable to make this request even though simple curl can - but to no avail.

@corpulent
Copy link

I see the same connection error in my project RabbitMQ management API call failed: Timeout while connecting. I only use flower locally so I just restart the flower container after I know RabbitMQ is up and running, and then it all works. Seems like #1113 tries to reconnect again if RabbitMQ is down, so it could solve this issue.

@bdoublet91
Copy link

Any update on this?
I setup flower on docker container with rabbitmq with version 2.0.
I get workers and tasks on one application but not on the other but code is similar ^^
Get rabbitmq connection on both cases.

Another problem concern the broker tab, I get information with N/A but no errors in flower logs ...

Any idea ?
App1: That works
image

App2: That doesnt work
image

Broker tab:
image

My docker-compose:

services:
  flower:
    image: mher/flower:2.0.0
    command: ['celery', '--broker=amqp://guest:guest@rabbitmq:5672//', 'flower', '--port=5555', '--broker_api=http://guest:guest@rabbitmq:15672/api/', '--debug', '--persistent=True', '--db=/data/flower.db', '--state_save_interval=10000', 'purge_offline_workers=10s']
    ports:
      - 5555:5555
    networks:
      - ****
      - ****
  rabbitmq:
    image: rabbitmq:3-management
    healthcheck:
      test: ['CMD', 'rabbitmq-diagnostics', '-q', 'ping']
      interval: 5s
      timeout: 5s
      retries: 20
    environment:
      - RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=-rabbit log_levels [{connection,error}]
    networks:
      - ****

logs of flower for app2:

    
[D 230719 16:05:05 selector_events:54] Using selector: EpollSelector
[D 230719 16:05:05 events:133] Loading state from '/data/flower.db'...
[I 230719 16:05:05 command:165] Visit me at http://0.0.0.0:5555
[I 230719 16:05:05 command:173] Broker: amqp://guest:**@rabbitmq:5672//
[D 230719 16:05:05 functional:335] 
    def backend_cleanup():
        return 1
    
[D 230719 16:05:05 functional:335] 
    def chain(*args, **kwargs):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def xstarmap(task, it):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def accumulate(self, *args, **kwargs):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def chord(self, header, body, partial_args=0, interval=1, countdown=2, max_retries=3, eager=4, **kwargs):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def chunks(task, it, n):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def unlock_chord(self, group_id, callback, interval=0, max_retries=1, result=2, Result=3, GroupResult=4, result_from_tuple=5, **kwargs):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def group(self, tasks, result, group_id, partial_args, add_to_parent=0):
        return 1
    
[D 230719 16:05:05 functional:335] 
    def xmap(task, it):
        return 1
    
[I 230719 16:05:05 command:174] Registered tasks: 
    ['celery.accumulate',
     'celery.backend_cleanup',
     'celery.chain',
     'celery.chord',
     'celery.chord_unlock',
     'celery.chunks',
     'celery.group',
     'celery.map',
     'celery.starmap']
[D 230719 16:05:05 command:178] Settings: {'cookie_secret': 'GWC3umUFcUX9h2X8DAoIVgCu0-cy0cz7rVnR4MpkNeXLRzoC_74Vdm5yqOxdJOKS9BYFFmaSnQ5EP09BRwyBHQ',
     'debug': True,
     'login_url': '/login',
     'static_path': '/usr/local/lib/python3.11/site-packages/flower/static',
     'static_url_prefix': '/static/',
     'template_path': '/usr/local/lib/python3.11/site-packages/flower/templates'}
[D 230719 16:05:05 events:152] Starting enable events timer...
[D 230719 16:05:05 events:156] Starting state save timer...
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 events:182] Capturing events...
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 inspector:34] Sending stats inspect command
[I 230719 16:05:05 mixins:228] Connected to amqp://guest:**@rabbitmq:5672//
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 inspector:34] Sending active_queues inspect command
[D 230719 16:05:05 inspector:34] Sending registered inspect command
[D 230719 16:05:05 inspector:34] Sending scheduled inspect command
[D 230719 16:05:05 inspector:34] Sending active inspect command
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 inspector:34] Sending reserved inspect command
[D 230719 16:05:05 inspector:34] Sending revoked inspect command
[D 230719 16:05:05 inspector:34] Sending conf inspect command
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:05 connection:382] Start from server, version: 0.9, properties: {'capabilities': {'publisher_confirms': True, 'exchange_exchange_bindings': True, 'basic.nack': True, 'consumer_cancel_notify': True, 'connection.blocked': True, 'consumer_priorities': True, 'authentication_failure_close': True, 'per_consumer_qos': True, 'direct_reply_to': True}, 'cluster_name': 'rabbit@bc83b75c7c07', 'copyright': 'Copyright (c) 2007-2022 VMware, Inc. or its affiliates.', 'information': 'Licensed under the MPL 2.0. Website: https://rabbitmq.com', 'platform': 'Erlang/OTP 25.1.2', 'product': 'RabbitMQ', 'version': '3.11.2'}, mechanisms: [b'PLAIN', b'AMQPLAIN'], locales: ['en_US']
[D 230719 16:05:05 channel:104] using channel_id: 1
[D 230719 16:05:05 channel:460] Channel open
[D 230719 16:05:06 connection:728] heartbeat_tick : for connection 45ca2b2952eb4ea7a8924c51c05cf67a
[D 230719 16:05:06 inspector:41] Inspect command scheduled took 1.07s to complete
[D 230719 16:05:06 inspector:41] Inspect command registered took 1.07s to complete

Read a lot of issues about flower, I read maybe there is some bugs with rabbitmq but not with redis, could be the case here ?

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests