If you have a CPU-intensive problem like data mining, do you need to break up the work for multiple cores/CPU’s and create a multi-threaded application?
Or does EC2 break up the work among the multiple cores or CPU’s for you?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have one process doing work, and that process is single-threaded, it will only occupy one virtual core.
Yes, you need to multi-thread (or divide the work between multiple running processes).