-
Notifications
You must be signed in to change notification settings - Fork 1
/
dynamodb.js
305 lines (268 loc) · 8.08 KB
/
dynamodb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
const aws = require("aws-sdk");
const async = require("async");
const _ = require("lodash");
const kv = require("kayvee");
const log = new kv.logger("who-is-who");
const objTable = {
TableName: "whoswho-objects",
AttributeDefinitions: [{ AttributeName: "_whoid", AttributeType: "S" }],
KeySchema: [{ AttributeName: "_whoid", KeyType: "HASH" }],
ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 },
};
const pathTable = {
TableName: "whoswho-paths",
AttributeDefinitions: [
{ AttributeName: "path", AttributeType: "S" },
{ AttributeName: "val_whoid", AttributeType: "S" },
],
KeySchema: [
{ AttributeName: "path", KeyType: "HASH" },
{ AttributeName: "val_whoid", KeyType: "RANGE" },
],
ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 },
};
const histTable = {
TableName: "whoswho-history",
AttributeDefinitions: [
{ AttributeName: "_whoid", AttributeType: "S" },
{ AttributeName: "path_time", AttributeType: "S" },
],
KeySchema: [
{ AttributeName: "_whoid", KeyType: "HASH" },
{ AttributeName: "path_time", KeyType: "RANGE" },
],
ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 },
};
function checkSchema(expected, actual) {
let minactual = {
TableName: actual.TableName,
AttributeDefinitions: _.sortBy(actual.AttributeDefinitions, "AttributeName"),
KeySchema: _.sortBy(actual.KeySchema, "AttributeName"),
ProvisionedThroughput: {
ReadCapacityUnits: actual.ProvisionedThroughput.ReadCapacityUnits,
WriteCapacityUnits: actual.ProvisionedThroughput.WriteCapacityUnits,
},
};
if (_.isEqual(expected, minactual)) {
return null;
} else {
return new Error(
"Mismatched table schema for " +
expected.TableName +
"\n" +
"expected:\n" +
JSON.stringify(expected, null, 4) +
"\n" +
"actual:\n" +
JSON.stringify(minactual, null, 4),
);
}
}
function createTableIfNeeded(dynamodb, table, cb) {
dynamodb.describeTable({ TableName: table.TableName }, (err, data) => {
if (!err) {
return cb(checkSchema(table, data.Table));
}
log.warn("creating table " + table.TableName);
dynamodb.createTable(table, cb);
});
}
function createTablesIfNeeded(endpoint, region, accessId, secretKey, cb) {
let dynamodb = new aws.DynamoDB({
endpoint: endpoint,
region: region,
accessKeyId: accessId,
secretAccessKey: secretKey,
});
async.parallel(
[
(cb) => createTableIfNeeded(dynamodb, objTable, cb),
(cb) => createTableIfNeeded(dynamodb, pathTable, cb),
(cb) => createTableIfNeeded(dynamodb, histTable, cb),
],
cb,
);
}
function createWorkingExport(endpoint, region, accessId, secretKey) {
let client = new aws.DynamoDB.DocumentClient({
endpoint: endpoint,
region: region,
accessKeyId: accessId,
secretAccessKey: secretKey,
});
let toObj = (obj, cb) => {
var params = { TableName: objTable.TableName, Key: { _whoid: obj._whoid } };
client.get(params, (err, data) => {
cb(err, data?.Item);
});
};
return {
all(cb) {
client.scan({ TableName: objTable.TableName }, (err, scan) => {
if (err) {
return cb(err);
}
cb(null, scan?.Items);
});
},
has(key, cb) {
var params = {
TableName: pathTable.TableName,
KeyConditionExpression: "#path = :key",
ExpressionAttributeNames: { "#path": "path" },
ExpressionAttributeValues: { ":key": key },
};
client.query(params, function (err, data) {
if (err) {
return cb(err);
}
async.map(data?.Items, toObj, cb);
});
},
by(key, val, cb) {
var params = {
TableName: pathTable.TableName,
KeyConditionExpression: "#path = :key and begins_with(val_whoid, :val)",
ExpressionAttributeNames: { "#path": "path" },
ExpressionAttributeValues: { ":key": key, ":val": val + "\u0000" },
};
client.query(params, function (err, data) {
if (err) {
return cb(err);
}
async.map(data?.Items, toObj, cb);
});
},
history(whoid, path, cb) {
var params = {
TableName: histTable.TableName,
KeyConditionExpression: "#whoid = :whoid",
ExpressionAttributeNames: { "#whoid": "_whoid" },
ExpressionAttributeValues: { ":whoid": whoid },
};
if (path) {
params.KeyConditionExpression += " and begins_with(path_time, :path)";
params.ExpressionAttributeValues[":path"] = path + ".";
}
client.query(params, function (err, data) {
if (err) {
return cb(err);
}
let results = data?.Items.map((d) => _.omit(d, ["path_time"]));
cb(null, results);
});
},
put(cur, diffs, cb) {
let callbacks = [];
let whoid = cur._whoid;
let now = new Date();
callbacks.push((cb) => {
client.put({ TableName: objTable.TableName, Item: cur }, cb);
});
Object.keys(diffs).forEach((path) => {
let diff = diffs[path];
callbacks.push(
(cb) => {
if (diff.created) {
return cb();
}
// value of {} means path has sub object
let prefix = _.isEqual(diff.prev, {}) ? "" : diff.prev + "\u0000";
let key = { path: path, val_whoid: prefix + whoid };
client.delete({ TableName: pathTable.TableName, Key: key }, cb);
},
(cb) => {
if (diff.deleted) {
return cb();
}
// value of {} means path has sub object
let prefix = _.isEqual(diff.cur, {}) ? "" : diff.cur + "\u0000";
let item = { _whoid: whoid, path: path, val_whoid: prefix + whoid };
client.put({ TableName: pathTable.TableName, Item: item }, cb);
},
(cb) => {
let item = {
_whoid: whoid,
path_time: path + ".\u0000" + now.getTime(),
path: path,
date: now.toString(),
};
item = _.assign(item, diff);
client.put({ TableName: histTable.TableName, Item: item }, cb);
},
);
});
// TODO look into making all these writes atomic
async.parallel(callbacks, (err) => {
if (err) {
return cb(err);
}
cb(null, cur);
});
},
};
}
module.exports = function (
endpoint,
region,
accessId,
secretKey,
tableNameSuffix,
readWriteCapacity,
) {
objTable.TableName += tableNameSuffix || "";
pathTable.TableName += tableNameSuffix || "";
histTable.TableName += tableNameSuffix || "";
if (!Number.isInteger(readWriteCapacity)) {
throw "Invalid dynamo read/write capacity: " + readWriteCapacity;
}
objTable.ProvisionedThroughput = {
ReadCapacityUnits: readWriteCapacity,
WriteCapacityUnits: readWriteCapacity,
};
pathTable.ProvisionedThroughput = {
ReadCapacityUnits: readWriteCapacity,
WriteCapacityUnits: readWriteCapacity,
};
histTable.ProvisionedThroughput = {
ReadCapacityUnits: readWriteCapacity,
WriteCapacityUnits: readWriteCapacity,
};
let pending = [];
let waitForCreate = (thunk) => {
pending.push(thunk);
};
createTablesIfNeeded(endpoint, region, accessId, secretKey, (err) => {
if (err) {
throw err;
}
let working = createWorkingExport(endpoint, region, accessId, secretKey);
Object.keys(working).forEach((key) => {
loading[key] = working[key];
});
log.info("dynamo db ready");
waitForCreate = null;
pending.forEach((thunk) => {
thunk();
});
pending = null;
});
let loading = {
all(cb) {
waitForCreate(() => loading.all(cb));
},
has(key, cb) {
waitForCreate(() => loading.has(key, cb));
},
by(key, val, cb) {
waitForCreate(() => loading.by(key, val, cb));
},
history(whoid, path, cb) {
waitForCreate(() => loading.history(whoid, path, cb));
},
put(cur, diffs, cb) {
waitForCreate(() => loading.put(cur, diffs, cb));
},
};
return loading;
};