The StackmobExporter exports a copy of all the data in a table out of stackmob in a json format.
Stackmob Request
The tool uses a WebRequest object and adds the relevant headers required to export the data.
Security used is OAuth v1.
Default proxy added if you use one
Results
The result can be written to either txt or CSV
file. When writing to txt you have an option to export the result by key/value pair numbers per file. The
CSV file export does this automatically.
The AWS Importer imports data into the Amazon DynamoDB tables. It reads a
json or CSV file and inserts the data into a table you have selected.
File formats
The txt, json or CSV file gets parsed into a json array. The array populates an AWS Document object and inserts the data into the DynamoDB table a document (row) at a time.
3rd Party Assemblies (assemblies embedded in the exe)
AWSSDK - Amazon web services SDK and used to get / push data
ServiceStack.Text.dll - json object conversions
SimpleOAuth.dll - OAuth v1