You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Occasionally, call home fails to respond to user requests. This triggers a CRITICAL error from Heroku and Heroku restarts the process. The most likely cause seems to be that the hourly jobs schedule multiple Promises simultaneously, causing the user request not to be responded to in a timely manner.
There are multiple possible fixes:
Run the jobs in another piece of infractructure (e.g. another dyno or lambda)
Run the jobs in another process/thread
Schedule the promises in series instead of in parallel
The text was updated successfully, but these errors were encountered:
glencbz
changed the title
# Fix occasional non-responsiveness of app
Occasional non-responsiveness of app
Aug 1, 2021
Occasionally, call home fails to respond to user requests. This triggers a CRITICAL error from Heroku and Heroku restarts the process. The most likely cause seems to be that the hourly jobs schedule multiple Promises simultaneously, causing the user request not to be responded to in a timely manner.
There are multiple possible fixes:
The text was updated successfully, but these errors were encountered: