Skip to main content

Comparing Amazon S3 and Google Blobstore API

Last week, Google announced that they are moving the Google App Engine out of preview status and changed their pricing model. The general buzz is that the new prices are significantly higher and people are disappointed with Google. Here's a comparison of the prices between Google and AWS specifically looking at storage.

Google offers the Blobstore API, which is somewhat equivalent to Amazon's Simple Storage Service (S3). Google's free tier offers 5GB which is same as Amazon's free tier except that Amazon offers that for just a year while Google has no time restrictions. In the paid tier, Google charges a flat $0.17/GB/month. Amazon on the other hand has a tiered pricing scheme based on three factors - amount of data, location of the S3 bucket and, redundancy. Amazon's prices in the US Standard region range from $0.14/GB/month (for less that 1TB) for the nine nines redundancy and reduced redundancy storage is even cheaper ranging from $0.093/GB/month to $0.037/GB/month.

Here's a graph showing the pricing differences between the Blobstore API and S3 focusing just on the US Standard region for S3. Comparing Blobstore API vs Amazon S3

For the free tier (under 5GB), Google is cheaper, but once you exceed that threshold, S3 is the way to go.

Comments

Popular posts from this blog

FCC Aproves Sirius-XM Merger

This has been a long time coming but finally the FCC has finally approved the merger of Sirius Satellite Radio with XM Satellite Radio . The combined entity is pretty much a monopoly in the satellite radio space but they are still competing with terrestrial radio. Either way, their stocks, NASDAQ:SIRI and NASDAQ:XMSR should get a good boost on Monday. Yahoo! Finance Quote for SIRI Quote for XMSR

Lead Tide SIM Reader

I recently came across a cheap little device for reading SIM cards . It was available from Meritline for less than USD 5 with free shipping. Curious to see what it was like, I ordered one. The device came in a small package along with a mini CD containing drivers. The packaging advertised the device as the LEAD TIDE Sim reader . Like most things these days, it's made in China. The device has a USB 1.1 interface. There was no product code or number anywhere on the packaging. Installing the drivers for the device turned out to be harder than I expected. The mini CD's autorun installed some stuff but Microsoft Windows XP couldn't install any suitable driver for the device. The mini-CD had several top level directories with what appeared to be product codes but I couldn't match any to the device itself since it had no product code. Google searches revealed that I wasn't alone in my endeavors to get the device working . Further digging revealed pointers to some thir

Getting Mailvelope on Chrome to use GnuPG on macOS

Mailvelope is a browser add-on that helps use GPG encryption and signing on webmail systems like Gmail. Here are the steps on macOS (tested with "Big Sur") to get Mailvelope to use the GnuPG backend. Install gpgme via Homebrew: brew install gpgme This will install gpgme-json in /usr/local/bin by default.  Create a file called gpgmejson.json in  "~/Library/Application Support/Google/Chrome/NativeMessagingHosts" with the following contents: {     "name": "gpgmejson",     "description": "Integration with GnuPG",     "path": "/usr/local/bin/gpgme-json",     "type": "stdio",     "allowed_origins": [         "chrome-extension://kajibbejlbohfaggdiogboambcijhkke/"     ] } Now in Mailvelope > Options > General , GnuPG will show up as the encryption backend.