Reputation: 3822
Can Amazon's EC2 instances make multiple, simultaneous network requests?
I'm pinging a few different api's with the same query. I'm wondering if I break my api request loop into subprocesses (using python's subprocess) if I'm just creating a network que or am I actually splitting my bandwidth for each call?
Upvotes: 0
Views: 45
Reputation: 35099
As long as your application creates it's own socket you should be splitting bandwidth.
You can check if it's true with sudo netstat -apeen
command.
Upvotes: 1