Skip to content

Instantly share code, notes, and snippets.

@adamn
Created January 30, 2012 23:26
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamn/1707483 to your computer and use it in GitHub Desktop.
Save adamn/1707483 to your computer and use it in GitHub Desktop.
Simple DynamoDB example for time-series data (i.e. counter for a given item_id at a time)
import time
import boto
from django.conf import settings
conn = boto.connect_dynamodb(aws_access_key_id=settings.AWS_ACCESS_KEY_ID,
aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY)
table_schema = conn.create_schema(
hash_key_name='item_id',
hash_key_proto_value='S',
range_key_name='date_found',
range_key_proto_value='S'
)
table = conn.create_table(
name='counter',
schema=table_schema,
read_units=10,
write_units=10
)
item = table.new_item(
hash_key='1234',
range_key=str(time.time()),
attrs={'counter': 5})
item.put()
rs = table.query(hash_key='1234',
range_key_condition={'LT':time.time()},attributes_to_get=['date_found','counter'])
[x for x in rs]
table.delete()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment