Confused between put request pricing and data transfer in pricing

0

Hi,

I have read object of any size upload (data transfer in) is free. But 'PUT' request has price tag. Isn't that put request is same as object upload?

can someone make me understand, how they two differ in AWS perspective?

asked 5 years ago719 views
3 Answers
0

As you have seen, there are many different cost structures associated with S3.
One way you can look at it, is that AWS breaks out the cost structures into various categories, such as:

  • Storage pricing
  • Request pricing
  • S3 Storage Management pricing
  • Data transfer pricing
  • S3 transfer acceleration pricing
  • Cross-region replication pricing
  • AWS Gov Cloud Region

To determine your costs when using S3, you will need to look at how you are using S3 and which categories may be applicable.
For the S3 put Object request action, you will need to look at both the Request pricing and the Data transfer in pricing (both apply to the same action, and they could have made you pay extra money based on the size of the object that needs to be transferred in over the network - for example, the could have charged an additional $0.002 per GB during the upload (object put) process. But instead, the actual data in transfer in is free. ). Let me know if that helps.

Note: The definitions of each of the categories along with their costs can be found in the following document
Link: https://aws.amazon.com/s3/pricing/

-randy

answered 5 years ago
0

Hi Randy,

So , PUT is a part of s3 hidden server request through API/SDK calls.
Where , Data transfer in , is more of AWS network utilization related.

When I pay for a virtual storage space like "DropBox", I usually think of monthly/yearly payment to the storage space , but not in terms of number of requests I made to the dropbox server.

Now I realized in AWS architechture, I pay for AWSInternalNetworkUsage_storageManagement_APIrequests , but since data transfer in(AWSInternalNetworkUsage when I do the upload) is not charged, I only pay storageManagement+APIrequests.

I hope I understood it correctly now.

I have a follow up question:
Why does AWS charge for API requests? Does it use AWSInternalNetwork such as DirectConnect or some other mechanism to process the PUT or any other API request?

answered 5 years ago
0

Yep, sounds like you've got it :-)
As for your follow up question - Why does AWS charge for "requests"?
If no one is making a request to data, the network, CPU, and storage devices are basically sitting there doing nothing.. just taking up storage space. However, once a request is made to storage, disk IOPS, network, and CPU processing is occurring to process that data. These resources, although plentiful in the AWS ecosystem, are "shared" hardware resources. Let's say 2 different customers are storing 1 TB of data. Customer "A" that makes 200,000 data requests over a months time, and customer "B" makes 500 data requests over a months time. Customer "A" is using up way more resources than customer "B". Another analogy is renting a car for 1 day. Standard daily rental is $19.95 per day. However, if you drive more than 20 miles the rental company will add an additional $0.20 per mile to the daily rental price.
-randy

answered 5 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions