Running a Node in ECS Results in ~2min delays during initialization #24258
-
|
Attempting to run Is there any more debug I could turn on to try to figure out the issue with the painfully slow startup?
When testing locally via Docker compose and a single node, cache node, and database node, the time between these calls is milliseconds. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Figured out the issue - Hopefully this might help others who experience same issue. Right after it initializes the logger, the app calls out to the database. In our case we had a dual stack network where DNS would return both IPv6 and IPv4 but would first try IPv6. IPv6 had a black hole which resulted in database connectivity hanging on a socket that would't resolve for around 2 minutes. |
Beta Was this translation helpful? Give feedback.
Figured out the issue - Hopefully this might help others who experience same issue.
Right after it initializes the logger, the app calls out to the database. In our case we had a dual stack network where DNS would return both IPv6 and IPv4 but would first try IPv6. IPv6 had a black hole which resulted in database connectivity hanging on a socket that would't resolve for around 2 minutes.