dot-punto-dot
dot-punto-dot

Reputation: 261

EC2 instance outgoing http request rate limits

I'm building a node application on EC2 that queries various external APIs several times per second via http requests.

I cannot work this out from the EC2 documentation - are there any EC2 rate limits for querying external APIs?

E.g. if I'm continuously making 2 or 3 http requests per second from an ec2 instance, will I start getting rate limit errors from ec2?

Thanks

Upvotes: 0

Views: 907

Answers (1)

zerkms
zerkms

Reputation: 254886

ec2 provides you the virtual machine and (if you configure it) the external connection.

Then it's totally up to you on what you query with it.

AWS provides you the layer 3 network which is charged by traffic amount, not number of requests.

Upvotes: 2

Related Questions