I've deployed a dynamic Dash app on Google cloud run which has calls to databases that updates hourly. How do I get cloud run to refresh/run the database calls after deployment? The code is written in python and does use a function to execute the database refresh and app.layout dash function displaying the updated tables/graphs?
Update: ok found out this is related to setting minimum instances to 1 to avoid cold starts. How can I get the app to start quickly but still run the code to update the data?
Thanks,
Eric