Skip to content

Commit

Permalink
feat: Add sync for remote DDB to local instance (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieDigital authored and jthomerson committed Jul 6, 2024
1 parent 80edaf9 commit 2bb4227
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 6 deletions.
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
18 changes: 12 additions & 6 deletions src/Synchronizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ 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) });
return _.extend({}, def, { id: (def.region + ':' + def.name), docs: this._makeDocClient(def, opts.slaveCredentials, opts.slaveEndpoint) });

Check failure on line 44 in src/Synchronizer.js

View workflow job for this annotation

GitHub Actions / build

This line has a length of 148. Maximum allowed is 140
}.bind(this));

this._abortScanning = false;
Expand Down Expand Up @@ -507,7 +507,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 +561,24 @@ 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 = new AWS.DynamoDB({

Check failure on line 565 in src/Synchronizer.js

View workflow job for this annotation

GitHub Actions / build

Variable declaration for dyn should not span multiple lines
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

0 comments on commit 2bb4227

Please sign in to comment.