-
Notifications
You must be signed in to change notification settings - Fork 35
High level API
This API provides objects representing databases, tables, items, batches, queries, and scans.
This populates the db.tables
object with all of the tables in the database.
db.fetch(function(err) {
if (err) return console.error(err)
var tableCount = Object.keys(db.tables).length
console.log("This database has %s tables.", tableCount)
})
An alias for db.get(tableName).put(item)
.
Returns a table on which .save()
can be called
db.add({
name: "myTable",
schema: [ ['id', String], ['date', Number] ],
throughput: {read: 10, write: 10}
})
.save(function(err, table){ ... })
The name
is required, but schema
will default to [ ['id', String] ]
and throughput
will default to the DynamoDB minimums of 3
for reads and 5
for writes. (Note: Versions 0.2.13 and earlier specified the schema with an object, such as { id: String, date: Number }
. This method is still supported for backward-compatibility, but its use is discouraged, as it relied on v8 traversing object properties in the same order in which they were inserted.)
Note that the order in which the schema keys are defined is important; the first is required and is used as the hash key, while the second is optional and is used as the range key.
An alias for db.get(tableName).destroy(callback)
Returns a table.
An alias for db.get(_tableName_).get(_itemKey_)
.
Creates a batch for fetching multiple items from multiple tables.
Fetches metadata about a table, including its schema, throughput, size, and other information.
table.fetch(function(err, table) {
if (err) return console.error(err)
console.log(
"This table has %s items and was created at %s",
table.ItemCount,
table.CreationDateTime
)
})
This deletes a table. Note that it may take up to a minute for DynamoDB to actually delete the table.
table.destroy(function(err) {
if (err) return console.error(err)
console.log("Table is now being deleted.")
})
This uses .fetch()
to poll the status of a table until it is stable (not ending in ING
), and then calls back.
table.watch(function(err, table) {
if (err) return console.error(err)
console.log("Table is now %s.", table.TableStatus)
})
This updates the throughput of a table. Note that both a read
and write
property need to be specified, and some DynamoDB limitations exist regarding how often table throughput can be updated.
table.throughput
.set({read: 10, write: 10})
.save(function(err, data) {
if (err) return console.error(err)
console.log("Table throughput is now updating...")
})
Returns a reference to the item specified by itemKey.
This is a table-specific alias for fetching a batch of multiple items from the same table.
table.get(function() {
this.add("tags", ["foo"])
this.put("status", "happy")
this.remove("middleName")
})
.fetch(function(err, data){ ... })
This puts the specified item in the table, overwriting any existing item with the same key. Note that the specified item must contain the hash and range keys.
table.put({
id: "123",
name: "ralph"
})
.save(function(err, data){ ... })
Returns a scan for the given predicates.
Returns a query for the given predicates.
A predicates object represents one or more predicates to be satisfied, for query or scan keys, or item update expectations.
This constructor is called automatically for the Table#scan(), Table#query(), and Update#when() methods, to convert shorthand predicates into the more verbose DynamoDB format.
Predicates take this format:
{
attribute1: {comparisonOperator1: comparisonValue1},
attribute2: {comparisonOperator2: comparisonValue2}
...
}
DynamoDB predicates are mapped to more JavaScript-friendly versions, as follows.
// NOT_NULL []
{ "!=" : null }
// NE [VAL]
{ "!=" : VAL }
// NULL []
{ "==" : null }
// EQ [VAL]
{ "==" : VAL }
// GT [VAL]
{ ">" : VAL }
// LT [VAL]
{ "<" : VAL }
// LE [VAL]
{ "<=" : VAL }
// GE [VAL]
{ ">=" : VAL }
// BETWEEN [VAL1, VAL2]
{ "<=" : [VAL1, VAL2] }
{ ">=" : [VAL1, VAL2] }
// CONTAINS [VAL]
{ "contains" : VAL }
// NOT_CONTAINS [VAL]
{ "!contains" : [VAL] }
// BEGINS_WITH [VAL]
{ "startsWith" : [VAL] }
// IN [VAL1, VAL2, VAL3]
{ "in" : [VAL1, VAL2, VAL3] }
Note also that ("attributeName")
resolves to {attributeName: {"!=": null}}
and ("attributeName", "value")
resolves to {attributeName: {"==": "value"}}
.
Scans are created from tables, using a predicates object. Note that DynamoDB supports multiple predicates for a scan.
table.scan({
name: "dynamo",
iq: {">=": 100}
})
.get(["name", "iq", "status"])
.fetch(function(err, count){ ... })
This fetches only the attribute names in the provided array. If this is not called, all attributes are returned.
This returns the number of items scanned, and cannot be used if Scan#get()
is called.
This performs the scan, calling back with an array of all items that matched the scan.
Queries are created from tables, using a predicates object. Note that only two predicates can be specified: the first using ==
for the hash key, and the second using a one of the predicates supported for queries for the range key.
This fetches only the attribute names in the provided array. If this is not called, all attributes are returned.
This returns the number of items scanned, and cannot be used if Query#get()
is called.
This performs the query in reverse order.
This performs the query, calling back with an array of all items that matched the query.
An can be obtained from a database or table, by specifying the item key. To uniquely identify an item, the item key must have values for both the hash and range keys.
This fetches only the attribute names in the provided array. If this is not called, all attributes are returned.
This fetches the item. {consistent: true}
can be specified as the options object to return a consistent read.
This specifies multiple attribute updates to be performed in a single transaction. The provided function is called with an update object as its this
context, allowing PUT
, ADD
, and REMOVE
operations to be performed for each attribute.
item.update(function() {
this.add("tags", ["foo"])
this.put("status", "happy")
this.remove("middleName")
})
This deletes an item.
item.destroy(function(err) {
if (err) return console.error(err)
console.log("Item has been deleted.")
})
This specifies that update is only performed when the given predicate is satisfied. Only {"==": value}
, {"==": null}
, and {"!=": null}
are allowed.
This specifies whether the information returned should be before or after the update. The type can be ALL_OLD
for puts, or ALL_OLD
, UPDATED_OLD
, ALL_NEW
, or UPDATED_NEW
for updates.
This performs a put or update, and calls back with the results.
DynamoDB allows up to 100 items across multiple tables to be returned with a single call.
A batch can be created from a database, or a table (in which case all Batch#get() calls are scoped to the table). The provided function is executed with the batch as its this
context.
db.get(function() {
this.get("table1", [{id: "123"},{id: "456"}], ["id", "name", "status"])
this.get("table2", [{id: "123", date: 1329925897205}])
})
This adds item to the batch. If attributeNames is specified, only those attributes are returned.
This fetches the batch and calls back with the results.