Sha256: ceb54d4e9be14e1faab43b639465b3221b7bc35eb2713e038a85cdb1dbe0cfa9
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
[![Build Status](https://secure.travis-ci.org/brettweavnet/sdbport.png)](http://travis-ci.org/brettweavnet/sdbport) # Sdbport Sdbport exports & imports data from AWS SimpleDB domains. It can be used as a class or stand alone CLI. ## Installation gem install sdbport ## Usage Set your AWS credentials: ``` export AWS_ACCESS_KEY_ID=key export AWS_SECRET_ACCESS_KEY=secret ``` Export SimpleDB domain: ``` sdbport export -a $AWS_ACCESS_KEY_ID -s $AWS_SECRET_ACCESS_KEY -r us-west-1 -n test -o /tmp/test-domain-dump ``` Import into new domain: ``` sdbport import -a $AWS_ACCESS_KEY_ID -s $AWS_SECRET_ACCESS_KEY -r us-west-1 -n new-domain -i /tmp/test-domain-dump ``` To list CLI subcommands: ``` sdbport -h ``` For details help on specific subcommand: ``` sdbport export -h ``` ## Known Limitations * Single serialiazed process for import. Need to switch to batch put attributes. * Only supports importing into empty domain. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sdbport-0.1.1 | README.md |