I know that since Oct-21 Cloud Run supports background jobs.
Anyone knows what happens with long-running background jobs in the following scenario?
- CPU always allocated is set to true
- min. number of instances is set to 1
- there are multiple instances at the same time due to higher load and each of them is coincidentally running a background job
Are all of those background jobs guaranteed to finish OR just the one running on that "always on" instance?
Thanks!