Reputation: 15242
I have a Python app that creates threads via a for loop and I have a few questions regarding multithreading on EC2:
Thanks in advance.
Note: The instance type is a General purpose 'm1.large' 64-bit
Upvotes: 2
Views: 719
Reputation: 2536
You should consider an EC2 instance as you would any other virtual machine- Multi-threaded processes are limited by the number of CPUs that the operating system can use.
Autoscaling allows you to spin up more instances on AWS based on certain parameters. It is not intended to increase the capacity of an existing one.
Upvotes: 2