18 days ago
My backend app written in RoR is terrible slow. Nothing has changed, but now its just impossible to use that, each request take +/- 20seconds
my app url is
1 Replies
18 days ago
This thread has been marked as public for community involvement, as it does not contain any sensitive or personal information. Any further activity in this thread will be visible to everyone.
Status changed to Open Railway • 18 days ago
11 days ago
I wouldn’t rely on a “can/can’t open URL” check here since this can be intermittent depending on routing or temporary container state.
But based on the original symptom (sudden ~20s response times with no code changes), this strongly points to an internal runtime issue rather than Railway edge/networking.
Most likely causes in this pattern are:
- DB connection pool exhaustion (requests waiting for checkout timeout)
- Puma thread saturation vs DB pool mismatch
- Slow/hanging SQL or N+1 query growth
- External API calls without timeouts blocking requests
- Memory pressure leading to GC pauses or unstable performance
If /up is still responding fast, that reinforces that the app is up but real request paths are getting blocked internally.
Best next step is checking Rails logs for a slow request trace and correlating it with ActiveRecord timing + Railway CPU/memory during that window.