Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add support for synchronizing to a local slave instance #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,29 @@ the slave table(s).
See the heading below entitled "Authentication and Authorization to AWS DynamoDB API" for
more information related to credentials.

### Syncing Tables to a Local DynamoDB Instance

When developing locally using the DynamoDB emulator or Docker image, it can be useful to pull
data from upstream environments.

See the [AWS documentation][local-setup] on how to set up the emulator or Docker image for
local development.

To synchronize from a remote table to a local table, set the `--slave-endpoint` parameter
to the URL of the local endpoint, and set the rest of the parameters as you normally
would. Note that slave credential parameters will be ignored when using the
`--slave-endpoint` param. For example:

```bash
node src/cli.js \
--master us-east-1:my-dynamodb-table \
--slave-endpoint http://localhost:8000 \
--slave us-west-2:my-dynamodb-table \
--write-missing \
--write-differing
```

Note: the region does not matter on the `--slave`; feel free to use any valid region.

### "Dry Run" Mode

Expand Down Expand Up @@ -354,3 +377,4 @@ details.
[contributing]: https://github.com/silvermine/silvermine-info#contributing
[envvars]: http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-environment.html
[credsfile]: http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-shared.html
[local-setup]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html
22 changes: 16 additions & 6 deletions src/Synchronizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ module.exports = Class.extend({
this._master = _.extend({}, master, { id: (master.region + ':' + master.name), docs: this._makeDocClient(master) });

this._slaves = _.map(slaves, function(def) {
return _.extend({}, def, { id: (def.region + ':' + def.name), docs: this._makeDocClient(def, opts.slaveCredentials) });
var client = this._makeDocClient(def, opts.slaveCredentials, opts.slaveEndpoint);

return _.extend({}, def, { id: (def.region + ':' + def.name), docs: client });
}.bind(this));

this._abortScanning = false;
Expand Down Expand Up @@ -507,7 +509,8 @@ module.exports = Class.extend({
_compareTableDescriptions: function() {
var def = Q.defer(),
describeMaster = this._describeTable(this._master),
describeSlaves = Q.all(_.map(this._slaves, _.partial(this._describeTable.bind(this), _, this._opts.slaveCredentials)));
slaveDescribeFn = _.partial(this._describeTable.bind(this), _, this._opts.slaveCredentials, this._opts.slaveEndpoint),
describeSlaves = Q.all(_.map(this._slaves, slaveDescribeFn));

function logDescription(title, tableDef, tableDesc) {
console.log('%s table %s', title, tableDef.id);
Expand Down Expand Up @@ -560,19 +563,26 @@ module.exports = Class.extend({
return def.promise;
},

_describeTable: function(tableDef, creds) {
var dyn = new AWS.DynamoDB({ region: tableDef.region, credentials: creds || AWS.config.credentials });
_describeTable: function(tableDef, creds, endpoint) {
var dyn;

dyn = new AWS.DynamoDB({
region: tableDef.region,
endpoint: endpoint,
credentials: (endpoint ? undefined : (creds || AWS.config.credentials)),
});

return Q.ninvoke(dyn, 'describeTable', { TableName: tableDef.name })
.then(function(resp) {
return resp.Table;
});
},

_makeDocClient: function(def, creds) {
_makeDocClient: function(def, creds, endpoint) {
return new AWS.DynamoDB.DocumentClient({
region: def.region,
credentials: creds || AWS.config.credentials,
endpoint: endpoint,
credentials: (endpoint ? undefined : (creds || AWS.config.credentials)),
maxRetries: this._opts.maxRetries,
retryDelayOptions: {
base: this._opts.retryDelayBase,
Expand Down
5 changes: 5 additions & 0 deletions src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ argvOpts = {
'role-arn',
'mfa-serial',
'mfa-token',
'slave-endpoint',
'slave-profile',
'slave-role-arn',
'slave-mfa-serial',
Expand Down Expand Up @@ -160,6 +161,10 @@ if (!_.isEmpty(argv['slave-profile'])) {
options.slaveCredentials = new AWS.SharedIniFileCredentials({ profile: argv['slave-profile'] });
}

if (!_.isEmpty(argv['slave-endpoint'])) {
options.slaveEndpoint = argv['slave-endpoint'];
}

options.slaveCredentials = setupRoleRelatedCredentials('slave-', 'for slaves', options.slaveCredentials || AWS.config.credentials);

startupPromise
Expand Down
Loading