Hi I have a silly question, but couldn't find any answers.
NodeJS runs on a single thread - if I deploy my express API to elastic beanstalk, does it make any sense to use instance types with multiple vcpus? Does the nodejs environment for elastic beanstalk employ nodejs clustering?
If my app is a straightforward express API, won't it just start one process that will end up utilizing just one cpu? If yes, I feel like its better to rely on single vcpu-instances and have the ASG do the work instead of clustering?