Google Cloud Run is optimal for running container at scale.
Rating: 6 out of 10
IncentivizedUse Cases and Deployment Scope
We use a Docker container that converts images to smaller sizes and makes map tiles with large images for indoor maps for navigation. Using just serverless functions was not enough because of the time limit. Making conversions with images takes running time that was only supported using Google Run, which increases the time limit to 24 hours.
Pros
- Serverless service.
- Run python scripts.
- Manage Docker images.
Cons
- Increase up time.
Likelihood to Recommend
It's more suited for having tasks that involve calculation or conversions, like converting big images and tiles. Have tasks that take up to 30 minutes for each execution, Cloud Run is well-suited. But when considering smaller tasks the do not take so much time using Cloud Run is not indicated. Using Google functions is more suited.