@certik/skynet 0.16.4 → 0.16.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -3
- package/deploy.js +2 -2
- package/dynamodb.js +24 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.6
|
|
4
|
+
|
|
5
|
+
- Updated: use larger cpu/mem for service monitor process
|
|
6
|
+
|
|
7
|
+
## 0.16.5
|
|
8
|
+
|
|
9
|
+
- Updated: dynamodb translate config
|
|
10
|
+
|
|
3
11
|
## 0.16.4
|
|
4
12
|
|
|
5
13
|
- Updated: nomad job spec
|
|
6
14
|
|
|
7
15
|
## 0.16.3
|
|
8
16
|
|
|
9
|
-
- Removed log-shipper job
|
|
17
|
+
- Removed: log-shipper job
|
|
10
18
|
|
|
11
19
|
## 0.16.2
|
|
12
20
|
|
|
13
|
-
- Doubled log-shipper cpu and memory
|
|
21
|
+
- Updated: Doubled log-shipper cpu and memory
|
|
14
22
|
|
|
15
23
|
## 0.16.1
|
|
16
24
|
|
|
17
|
-
- Removed verbose log from exponentialRetry (@certik/skynet/availablity)
|
|
25
|
+
- Removed: verbose log from exponentialRetry (@certik/skynet/availablity)
|
|
18
26
|
|
|
19
27
|
## 0.16.0
|
|
20
28
|
|
package/deploy.js
CHANGED
|
@@ -417,8 +417,8 @@ function createModeDeploy({
|
|
|
417
417
|
region,
|
|
418
418
|
cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
|
|
419
419
|
killTimeout: check.killTimeout || "10s",
|
|
420
|
-
cpu: check.cpu ||
|
|
421
|
-
mem: check.mem ||
|
|
420
|
+
cpu: check.cpu || 500,
|
|
421
|
+
mem: check.mem || 500,
|
|
422
422
|
isProduction: production,
|
|
423
423
|
});
|
|
424
424
|
|
package/dynamodb.js
CHANGED
|
@@ -24,8 +24,25 @@ function getDynamoDB(forceNew = false) {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
function getDocClient(forceNew = false) {
|
|
27
|
+
const marshallOptions = {
|
|
28
|
+
// Whether to automatically convert empty strings, blobs, and sets to `null`.
|
|
29
|
+
convertEmptyValues: true,
|
|
30
|
+
// Whether to remove undefined values while marshalling.
|
|
31
|
+
removeUndefinedValues: true,
|
|
32
|
+
// Whether to convert typeof object to map attribute.
|
|
33
|
+
convertClassInstanceToMap: true,
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const unmarshallOptions = {
|
|
37
|
+
// Whether to return numbers as a string instead of converting them to native JavaScript numbers.
|
|
38
|
+
wrapNumbers: false, // false, by default.
|
|
39
|
+
};
|
|
40
|
+
|
|
27
41
|
if (!_docClient || forceNew) {
|
|
28
|
-
_docClient = DynamoDBDocumentClient.from(getDynamoDB()
|
|
42
|
+
_docClient = DynamoDBDocumentClient.from(getDynamoDB(), {
|
|
43
|
+
marshallOptions,
|
|
44
|
+
unmarshallOptions,
|
|
45
|
+
});
|
|
29
46
|
}
|
|
30
47
|
return _docClient;
|
|
31
48
|
}
|
|
@@ -161,10 +178,12 @@ async function readRecord(tableName, key, verbose = false) {
|
|
|
161
178
|
|
|
162
179
|
const docClient = getDocClient();
|
|
163
180
|
|
|
164
|
-
const record = await docClient.send(
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
181
|
+
const record = await docClient.send(
|
|
182
|
+
new GetCommand({
|
|
183
|
+
TableName: tableName,
|
|
184
|
+
Key: key,
|
|
185
|
+
}),
|
|
186
|
+
);
|
|
168
187
|
|
|
169
188
|
return record.Item;
|
|
170
189
|
}
|