I have a Dash App running in a GCP Cloud Run container. This is a data dashboard that makes calls back to a GCP Postgres instance to update data that refreshes every 30 min. If the app is being access often the I believe the container stays refreshed and allows the for the app to refresh quickly. However when its is accessed often the container is not making the database calls and refreshing the data. How can I periodically have the GCP Cloud Run container run functions in the code and query new data?
Thanks,
Eric