Below are sample records that I would normally insert into MySQL. I can then do the regular types of queries usig SQL. Note that I will have datetime in 5 minute intervals.
datetime account_id country zip count
2012-04-27 03:40 1234 69 91845 234
2012-04-27 03:45 3432 43 91813 212
I will be using simpledb with the python boto api.
Given that its a key value data store where the values can be stored as dictionary/json type objects, what is the proper structure to store the data so I can query? E.g. select sum(count) group by country.