0.2.0 • Published 9 years ago

dynamodb-throughput v0.2.0

Weekly downloads
3
License
ISC
Repository
github
Last release
9 years ago

dynamodb-throughput

Build Status

Set and reset provisioned DynamoDB throughput

Usage

Adjusting capacities

You can set the table's read and write capacities to perform some operation that requires a lot of throughput. After you're done, you can reset the provisioned throughput to prior levels. If you change throughput multiple times, reseting will return to the original table values, before dynamodb-throughtput made any adjustments.

var throughput = require('dynamodb-throughput')('my-table', { region: 'us-east-1' });
var queue = require('queue-async');

queue(1)
  .defer(throughput.setCapacity, { read: 1000, write: 1000 })
  .defer(doSomethingStrenuous)
  .defer(throughput.resetCapacity)
  .awaitAll(function(err) {
    console.log(err || 'All done!');
  });

It also works on GlobalSecondaryIndexes.

var throughput = require('dynamodb-throughput')('my-table', { region: 'us-east-1' });
var queue = require('queue-async');

queue(1)
  .defer(throughput.setIndexCapacity, 'my-index', { read: 1000, write: 1000 })
  .defer(doSomethingStrenuous)
  .defer(throughput.resetIndexCapacity, 'my-index')
  .awaitAll(function(err) {
    console.log(err || 'All done!');
  });

If you prefer, you can make adjustments to the table's existing throughput. For example, if you wanted to add 500 to the table's existing read capacity:

var throughput = require('dynamodb-throughput')('my-table', { region: 'us-east-1' });
var queue = require('queue-async');

queue(1)
  .defer(throughput.adjustCapacity, { read: 500 })
  .defer(doSomethingStrenuous)
  .defer(throughput.resetCapacity)
  .awaitAll(function(err) {
    console.log(err || 'All done!');
  });

... and similarly for GlobalSecondaryIndexes:

var throughput = require('dynamodb-throughput')('my-table', { region: 'us-east-1' });
var queue = require('queue-async');

queue(1)
  .defer(throughput.setIndexCapacity, 'my-index', { read: 500 })
  .defer(doSomethingStrenuous)
  .defer(throughput.resetIndexCapacity, 'my-index')
  .awaitAll(function(err) {
    console.log(err || 'All done!');
  });

The second argument when creating the throughput object ({ region: 'us-east-1' } in these examples) is an options object passed to new AWS.DynamoDB(options) to communicate with DynamoDB. Usually you should only need to provide a region property.

Getting throughput / partitioning information

You can use this library to gather information about a table's current throughput and estimate its partitioning needs. See the AWS DynamoDB documentation for more information about the way a table's partitioning needs are calculated.

var throughput = require('dynamodb-throughput')('my-table', { region: 'us-east-1' });
throughput.tableInfo(function(err, info) {
  console.log(info);
  // {
  //   main: {
  //     read: 4000,
  //     write: 300,
  //     size: 67432123,
  //     partitions: 2
  //   },
  //   indexes: {
  //     indexName: {
  //       read: 300,
  //       write: 100,
  //       size: 873624,
  //       partitions: 1
  //     }
  //   }
  // }
});

Increasing throughput can require your table to be repartitioned, and this can have unexpected consequences on the throughput performance of your table. This library can estimate the partitioning that would be required by a proposed throughput adjustment. Running this function has no impact on your table, it simply provides you with information about your table's state if you were to perform such an adjustment.

var throughput = require('dynamodb-throughput')('my-table', { region: 'us-east-1' });
var adjustment = { main: { read: 13000 } } // increases table's read capacity to 13000
throughput.adjustedTableInfo(adjustment, function(err, info, warnings) {
  console.log(info);
  // {
  //   main: {
  //     read: 13000,
  //     write: 300,
  //     size: 67432123,
  //     partitions: 5
  //   },
  //   indexes: {
  //     indexName: {
  //       read: 300,
  //       write: 100,
  //       size: 873624,
  //       partitions: 1
  //     }
  //   }
  // }
  console.log(warnings);
  // {
  //   main: true,
  //   indexes: {}
  // }
});

Included shell scripts can be used to run either of these functions.

$ npm install -g dynamodb-throughput
$ dynamodb-throughput-info us-east-1/my-table
# {
#   main: {
#     read: 4000,
#     write: 300,
#     size: 67432123,
#     partitions: 2
#   },
#   indexes: {
#     indexName: {
#       read: 300,
#       write: 100,
#       size: 873624,
#       partitions: 1
#     }
#   }
# }
$ dynamodb-throughput-adjustment us-east-1/my-table --main-read 13000
# WARNING: This adjustment would force the table to be repartitioned
# {
#   main: {
#     read: 13000,
#     write: 300,
#     size: 67432123,
#     partitions: 5
#   },
#   indexes: {
#     indexName: {
#       read: 300,
#       write: 100,
#       size: 873624,
#       partitions: 1
#     }
#   }
# }
0.2.0

9 years ago

0.1.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago