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

Migrating from Palm Calendar to Google Calendar and iPhone

Here are the free steps to migrate from Palm's date book (or Pimlico's DateBk6 ) calendar to Google calendar for full iPhone sync. First, sync Palm with Palm Desktop . Next, open Palm Desktop, select the Calendar view, navigate to File | Export, select Export Type as Date Book Archive, Range as All and provide a file name. This will export the calendar data as Date Book Archive (.dba). There's a paid tool called DBA2CSV that converts .dba files to .csv files. However this can be done for free using Yahoo Calendar. Login into Yahoo Calendar and via Settings/Import, import the .dba file. It helps to have an empty Yahoo Calendar. Via Settings/Export, export the calendar as .csv file. Login to Google Calendar (also works with Google Apps For Your Domain GAFYD Calendar) and import the .csv file into any of the calendars. It is a good idea to create a test calendar and test the import before importing into your real calendar. That way if anything goes wrong, you can delet...

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...

Fetching Stock Data From Yahoo For iOS Applications

Yahoo! provides a great service called Yahoo! Query Language (YQL) which provides a SQL-like interface to a whole bunch of Web services. YQL queries can also be performed via REST. A wide range of services can be accessed through YQL including Yahoo! Finance . A convenient way to play with YQL and explore the available Web services, is to use the YQL Console . The bottom right of the console lists all the data tables, grouped by provider. (Be sure to click "Show Community Tables" to view all the available tables.) The yahoo provider includes the data table yahoo.finance.quote . This table provides access to stock quotes from Yahoo! Finance. As an example, here's the YQL console showing a query for stock data for AAPL . The console helpfully shows the REST URL for the query at the bottom. Armed with the REST URL, it is trivial to write code in Objective-C/iOS to fetch quote data. Here's some code that takes in an NSArray of ticker symbols (NSStrings) and returns a ...