Using Amazon AWS to create an offline database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:27:20Z http://stackoverflow.com/feeds/question/310058 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/310058/using-amazon-aws-to-create-an-offline-database 2 Using Amazon AWS to create an offline database joshuaball 2008-11-21T20:20:02Z 2009-07-30T01:55:44Z <p>Hi,</p> <p><strong>Problem Statement:</strong> I would like to create an offline database to lookup prices/info on the n most useful books to sell in the United States (where n is probably 3 million or so). </p> <p><strong>Question:</strong> So, my question is (and I am open to other approaches here as well), I am trying to figure out how to use Amazon AWS to download a list of the n higest salesrank books being sold as well as some information about the book (i.e. title, prices, etc...).</p> <p><strong>What I have done so far:</strong> First, something like this exists already (asellertool.com), however, I thought this would be an interesting project to work on and quite frankly, we aren't serious enough to need to pay the $30/month subscription.</p> <p>Now, AWS is great (and easy) if you have a few items you want to look up, but I can't seem to figure out how enumerate on sales rank. Originally, I was hoping to enumerate all of the book items Amazon had by ISBN. But that wasn't available either. Then I thought I could find a list of all ISBN numbers out there, but that was a dead end too. Finally I thought I could create my own list of ISBN numbers, but as I did some back of the envelope calculations, I thought better of it as my solutions would take roughly a year to go through a third of the 10 digit space at 100/second (and it was overkill anyway).</p> <p>So, I am back on Sales Ranking, which is currently seems like a dead end as well. So, if you have any thoughts, I would appreciate it.</p> http://stackoverflow.com/questions/310058/using-amazon-aws-to-create-an-offline-database/358872#358872 0 Answer by ju for Using Amazon AWS to create an offline database ju 2008-12-11T10:11:14Z 2008-12-11T10:11:14Z <p>I was wondering which one of Amazon AWS services you want to use? Or you don't know?</p> <p>And why you need offline database? Why not make requests on everything you need and make some temporary cache?</p> http://stackoverflow.com/questions/310058/using-amazon-aws-to-create-an-offline-database/364339#364339 1 Answer by alexandrul for Using Amazon AWS to create an offline database alexandrul 2008-12-12T22:14:47Z 2008-12-12T22:14:47Z <p>Take a look at <a href="http://www.awszone.com/index.aws" rel="nofollow">AWS Zone</a>, in the <code>Amazon E-Commerce Service</code> section.</p> http://stackoverflow.com/questions/310058/using-amazon-aws-to-create-an-offline-database/1150049#1150049 0 Answer by cheap for Using Amazon AWS to create an offline database cheap 2009-07-19T14:43:40Z 2009-07-19T14:43:40Z <p>I'm not a programmer either, but curious and cheap. Asellerstool is probably great, but they wouldn't be around if not for Amazons free data base. Well, I guess nobody cares about used book prices?</p> http://stackoverflow.com/questions/310058/using-amazon-aws-to-create-an-offline-database/1204079#1204079 1 Answer by Brian Surowiec for Using Amazon AWS to create an offline database Brian Surowiec 2009-07-30T01:55:44Z 2009-07-30T01:55:44Z <p>Amazon has a data feed service you can use which contains GZipped xml files of all their products based on top level categories. It's updated once a day and totals about 20GB/110GB of compressed/uncompressed data. Since you only need books it's more in the area of 4GB/31GB. The only thing is I'm not sure who's able to use this and what's involved with getting an account. They don't list anything about this on their website as far as I know so you will most likely have to contact someone there to find out more about it. We use this at work for stuff we do with them and it's some of the craziest xml processing I've had to do.</p>