Howard Zoopaloopa
Howard Zoopaloopa

Reputation: 3822

EC2 Multiple Simultaneous Network Requests With Python

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? enter image description here

Upvotes: 0

Views: 45

Answers (1)

Vor
Vor

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

Related Questions