Heroku 500 internal server error
Opened this issue · 2 comments
stevenewald commented
stevenewald commented
I looked into the issue and found that this is largely an issue with Heroku. It limits max threads to 256 for the base plan. The request builder in the ServiceImpl creates threads but waits for java to clean them up, so if many requests are made in succession before Java cleans up the threads, Heroku will refuse to assign more, leading to a 500 internal server error.
pranavmappoli commented
@stevenewald host it in your own env