Streamlit Cloud Deployment: Error running app "Streamlit server consistently failed status checks"

Hi,
the deployment of our web app works locally fine and also the setup via Streamlit Cloud works. However, once functions are being triggered in the app, very shortly after that the “Oh no!” page gets shown and in the logs these error messages are displayed:

[17:23:37] ❗️ Streamlit server consistently failed status checks
[17:23:37] ❗️ Please fix the errors, push an update to the git repo, or reboot the app.

This is the link to the repository. The entryfile of the multi-page web app is this one.

If possible, it would be great to get a visualization of the memory consumption of the app. The data being read in and processed is not taking more than 100-200MB.

I would appreciate any help! :wink:

  1. Check Code: Examine your app’s code and logs to identify the specific error that’s causing the crash.
  2. Memory Consumption: Monitor your app’s memory usage using Python libraries like psutil to ensure it’s within Streamlit Cloud’s resource limits.
  3. Dependencies: Ensure all necessary dependencies are correctly specified in your requirements.txt file.
  4. Logs: Review your app’s logs for any errors or exceptions that might provide clues about the issue.
  5. Streamlit Version: Verify that you’re using a compatible version of Streamlit with your app.
  6. Resource Limits: Confirm that your app’s resource usage (CPU, memory) doesn’t exceed Streamlit Cloud’s limits.
  7. Reboot App: If needed, try rebooting the app as suggested in the error message.
  8. Community Support: Seek assistance on the Streamlit Community Forum for more specific debugging.

For visualizing memory consumption, Python libraries like psutil and Streamlit’s st.experimental_get_query_params() can help.

I hope this helps resolve the issue!

@Ridaone Thanks for your reply. As a feedback:

  1. Check Code → Here is no issue, locally it works fine…
  2. Memory Consumption: → This is what I am currently investigating :+1: In case you have good and easy setups for this other than regularly printing used memory, let me know.
  3. Dependencies: → Yes, this I have already updated and before my app was running in this issue, but this is all fixed.
  4. Logs: → nope, works fine.
  5. Streamlit Version: → yes, I am using 1.26 version of Streamlit (the latest one)
  6. Resource Limits: → this is what I am currently still investigating.
  7. Reboot App: → already done, does not help and the issue occurs again & again.
  8. Community Support: → yes, let’s hope more ppl see this post and might also help me as they faced a similar situation.

For visualizing memory consumption, Python libraries like psutil and Streamlit’s st.experimental_get_query_params() can help. → will also look now into this `st.experimental_get_query_params(), thanks!

But in case you have any other idea, let me know. Thanks!!! :wink:

@Ridaone and anyone else running in the same issue:

In the end it was truly an OOM (out of memory) issue and even though my raw data was very small (70MB), it was parquet files and when reading them in they actually used up 6-7 GB of memory. I have checked the memory consumption locally via memory-profiler. This works totally easy by installing & importing the package and adding a decorator to your dashboard function:

from memory_profiler import profile

@profile
def your_dashboard_function():

This gives you line by line your dashboard code and tells you in each step how much cumulative memory is consumed + the delta of each code line.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.