My function needs to run once every day. I thought of using Google Cloud Functions service along with Cloud Scheduler(to automate running it) in that case. The problem is Cloud Functions have maximum timeout set as 9 minutes (after that time function is terminated). My function isn't CPU intensive or memory intensive, but needs around ~30 minutes to execute. Are there any workarounds/alternatives for that case?
Little bit of context: the function I want to run once per day is simple data synchronization between two REST APIs. It takes so long, because of low rate limit of one API.