Autoscaling and Concurrency
Parallelizing Functions
How to parallelize your functions
You can scale out individual Python functions to many containers using the .map()
method.
You might use this for parallelizing computational-heavy tasks, such as batch inference or data processing jobs.
When we run this Python module, 10 containers will be spawned to run the workload:
Was this page helpful?