I am trying to implement Multiprocessing with Python 3.11 in my AWS Lambda function. I wanted to understand the CPU configuration for AWS Lambda.
Documentation says that the vCPUs scale proportionally with the memory we allocate and it can vary between 2 to 6 vCPUs. If we allocate 10GB memory, that gives us 6 vCPUs. Is it same as having 6 core CPU locally? What does 6 vCPUs actually mean?
3