Replies: 4 comments 1 reply
-
Code import httpx async def main(): asyncio.run(main())` Error logs: Traceback (most recent call last): |
Beta Was this translation helpful? Give feedback.
-
The only thing we can suggest without server logs is that RabbitMQ 3.8 has reached end of life in July this year. If this is an HTTP API response timeout, then you can try a higher value or Producing a complete backup with tens of thousands of entities is going to be CPU intensive and In the commercial RabbitMQ edition there is a feature that continuously transfers definitions to a separate cluster. Unfortunately, the very first transfer will include everything and be similar |
Beta Was this translation helpful? Give feedback.
-
Thank you for taking the time to help me Ya i tried with rabbitmq export definitions and it worked without any issue but i need to use management api, since i am calling the api from different pod from rabbitmq pod. Also i noticed the version i am using is outdated. we are going upgrade it as soon as possible. Is there any to fix the timeout as mentioned in the document https://www.rabbitmq.com/management.html
|
Beta Was this translation helpful? Give feedback.
-
Refer: https://www.rabbitmq.com/management.html management.tcp.inactivity_timeout has the default of 300 seconds Is there any chance to increase this default values |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using Rabbitmq version (3.8.14), and using it as 8 node cluster using kubenetes.
In my prod environment , i have nearly
connections 25000
queues 29000
exchanges 56000
consumer 50000
channels 25000
and also lot user,permissions, bindings
I am taking backup using the management API
curl -k -u username:password https://localhost:9450/api/definitions
but it get timed out after one minute and my code clearly indicates it timed out at rabbitmqMy application is ssl enabled(HTTPS) , when i used that option my pod not coming up, is there any other option that i need to give o configure this.
How to avoid time out after one minute , when taking backup using management API, also i posed question rabbitmq google groups but i did't get enough answers
https://groups.google.com/g/rabbitmq-users/c/2dibT7etGC4/m/u4NpVEb5AQAJ?utm_medium=email&utm_source=footer
I have referred to following page increased the timedout
https://www.rabbitmq.com/management.html
For RabbitMQ 3.7.9 and later versions.
Configures HTTP (non-encrypted) listener timeouts
management.tcp.idle_timeout = 120000
management.tcp.inactivity_timeout = 120000
management.tcp.request_timeout = 120000
For RabbitMQ 3.7.9 and later versions.
Configures HTTPS (TLS-enabled) listener timeouts
management.ssl.idle_timeout = 120000
management.ssl.inactivity_timeout = 120000
management.ssl.request_timeout = 120000
Beta Was this translation helpful? Give feedback.
All reactions