Hi,
We are running a vert.x web application and under extreme high load of 10 million concurrent connections we get the following logs:
2025-03-11 02:26:14,892 [ERROR] [vert.x-eventloop-thread-1] [io.vertx.ext.web.RoutingContext] - Unhandled exception in router
The web application is run on a cluster of EC2 nodes, behind a load balancer.
What we see is certain nodes, become unhealthy however CPU and Memory utilization stay's within limit of around 30% only.
Also in the logs we don't see any stacktrace so really unsure of what is cause this.
We have added a failure handler like this:
router.route().failureHandler(getFailureHandler());
In this we print status code and error message, and what we see is:
Error 200: Connection was closed
So looks like status is still 200, but error message is Connection was closed
Any idea on how we can debug this problem or atleast have some stracktrace printed in the logs ?
Thanks
Sachin