Skip to content

Instantly share code, notes, and snippets.

@avelino
Created December 23, 2012 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avelino/4363258 to your computer and use it in GitHub Desktop.
Save avelino/4363258 to your computer and use it in GitHub Desktop.
Inset 1000000 records in Riak via Python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import riak
client = riak.RiakClient()
bucket = client.bucket('test')
for i in range(0, 1000000):
person = bucket.new('riak_developer_%d' % i, data={'name': 'Thiago Avelino %d' % i,
'age': 18+i,
'language': ['python'],})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment