-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-archive.js
executable file
·267 lines (245 loc) · 8.6 KB
/
run-archive.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
#!/usr/bin/env node
'use strict'
const execa = require('execa')
const { prompt } = require('inquirer')
const chalk = require('chalk')
const sqlite3 = require('sqlite3')
const datePrompt = require('date-prompt')
const DynamoDB = require('aws-sdk/clients/dynamodb')
const EventBridge = require('aws-sdk/clients/eventbridge')
const WebSocket = require('ws')
const localDynamodb = new DynamoDB.DocumentClient({
convertEmptyValues: true,
endpoint: 'http://127.0.0.1:8000',
region: 'us-east-1',
accessKeyId: 'x',
secretAccessKey: 'x'
})
const localEventBridge = new EventBridge({
apiVersion: '2015-10-07',
endpoint: 'http://127.0.0.1:4010',
accessKeyId: 'x',
secretAccessKey: 'x',
region: 'us-east-1'
})
const shell = (command, opt) =>
execa.command(command, { shell: '/bin/bash', ...opt })
async function run () {
const { location } = await prompt({
type: 'list',
name: 'location',
message: 'from which archive?',
choices: ['sqlite3', 'aws']
})
const { action } = await prompt({
type: 'list',
name: 'action',
message: 'replay action?',
choices: [
'post to local EventBridge',
'write to local DynamoDB',
'replay to AWS EventBridge'
]
})
async function send (events) {
if (action === 'post to local EventBridge') {
const params = {
Entries: events.map(event => ({
EventBusName: 'dynamodb-log',
Source: event.source,
DetailType: event['detail-type'],
Detail: JSON.stringify({ ...event.detail, 'replay-name': 'local' })
}))
}
console.log(chalk.green(`sending ${events.length} events to EventBridge`))
await localEventBridge.putEvents(params).promise()
return events.length
} else {
const items = {}
for (const event of events) {
const key = event.detail.key.pk + ',' + event.detail.key.sk
if (!items[key]) {
items[key] = event
}
}
const putRequestItems = Object.values(items)
try {
const { UnprocessedItems: unprocessedItems } = await localDynamodb
.batchWrite({
RequestItems: {
'local-dynamodb-logs': putRequestItems.map(event => ({
PutRequest: {
Item: {
...event.detail.key,
log: event.detail.log,
type: event.detail.type,
payload: event.detail.payload
}
}
}))
}
})
.promise()
if (Object.keys(unprocessedItems).length) {
throw new Error(`unprocessed ${JSON.stringify(unprocessedItems)}`)
}
} catch (err) {
console.error(`failed ${JSON.stringify(putRequestItems, null, 2)}`)
}
return putRequestItems.length
}
}
if (location === 'sqlite3') {
const db = new sqlite3.Database('db', sqlite3.OPEN_READONLY)
let offset = 0
let written = 0
const from = await datePrompt('Start date?')
const to = await datePrompt('End date?')
const logs = await new Promise((resolve, reject) => {
db.all(
'select distinct log from events where createdAt >= ? and createdAt <= ?',
from,
to,
(err, rows) => (err ? reject(err) : resolve(rows.map(row => row.log)))
)
})
const { filterLogs } = await prompt({
type: 'checkbox',
name: 'filterLogs',
message: 'log?',
choices: logs
})
const types = await new Promise((resolve, reject) => {
db.all(
'select distinct type from events where createdAt >= ? and createdAt <= ? and log in (?)',
from,
to,
filterLogs,
(err, rows) => (err ? reject(err) : resolve(rows.map(row => row.type)))
)
})
const { filterTypes } = await prompt({
type: 'checkbox',
name: 'filterTypes',
message: 'type?',
choices: types
})
while (true) {
const limit = 10
const rows = await new Promise((resolve, reject) => {
db.all(
`select * from events where createdAt >= ? and createdAt <= ? and log in (${Array(
filterLogs.length
).fill('?')}) and type in (${Array(filterTypes.length).fill(
'?'
)}) order by createdAt limit ${limit} offset ${offset} `,
from,
to,
...filterLogs,
...filterTypes,
(err, rows) => (err ? reject(err) : resolve(rows))
)
})
if (!rows.length) break
const events = rows.map(row => JSON.parse(row.event))
written += await send(events)
offset += limit
}
if (written > 0) {
console.log(
chalk.bold(`processed ${written} events between ${from} and ${to}`)
)
} else {
console.log(`no events found in archive between ${from} and ${to}`)
}
} else if (location === 'aws') {
const replayName = `run-archive-${new Date().getTime()}`
if (action !== 'replay to AWS EventBridge') {
const { stage } = await prompt({
type: 'list',
name: 'stage',
message: 'stage?',
choices: ['dev', 'prod']
})
try {
await shell(
`
log_info() { echo -e "\\033[0m\\033[0;36m\${*}\\033[0m"; }
log_info 'verfying local archive replay stack (needed to local replay)'
stage=${stage}
external_ip4_address="$(curl ifconfig.me/ip --silent)"
export external_ip4_address="\${external_ip4_address:?}"
stack_id=$(aws cloudformation describe-stacks | jq -r ".Stacks | .[] | select(.StackName | contains(\\"dynamodb-logs-local-archive-replay-\${stage:?}\\")) | .StackId")
deploy_needed=1
if [[ -n "\${stack_id:-}" ]]; then
allowed_ip4_addresses=$(aws lambda get-function-configuration --function-name dynamodb-logs-local-archive-replay-\${stage:?}-websocket | jq -r '.Environment.Variables.allowed_ip')
if [[ \${allowed_ip4_addresses:-none?} =~ \${external_ip4_address:?} ]]; then
deploy_needed=0
else
export external_ip4_address="\${allowed_ip4_addresses:-},\${external_ip4_address:?}"
log_info 'adding local ip4 ip address to websocket function'
npm exec sls deploy -- -c serverless-local-archive-run.yml --stage dev --function websocket
deploy_needed=0
fi
fi
if [[ \${deploy_needed:?} -eq 1 ]]; then
log_info 'deploy local archive replay stack'
npm exec sls deploy -- -c serverless-local-archive-run.yml --stage dev
fi
`,
{ stdio: 'inherit' }
)
} catch (err) {
console.error(chalk.red(`failed to run replay ${err}`))
}
const { stdout: wssUrl } = await shell(
`
stack_id=$(aws cloudformation describe-stacks | jq -r ".Stacks | .[] | select(.StackName | contains(\\"dynamodb-logs-local-archive-replay-${stage}\\")) | .StackId")
websocket_url=$(aws apigatewayv2 get-apis | jq -r ".Items | .[] | select(.Name | contains(\\"${stage}-dynamodb-logs-local-archive-replay-websockets\\")) | .ApiEndpoint")
echo \${websocket_url}/${stage}
`,
{ stderr: 'inherit' }
)
const ws = new WebSocket(wssUrl, {
headers: { 'replay-name': replayName }
})
await new Promise((resolve, reject) =>
ws.on('open', err => (err ? reject(err) : resolve()))
)
const messages = []
ws.on('message', data => {
messages.push(JSON.parse(data))
})
console.log(chalk.cyan(`will receive events via ${wssUrl}`))
console.log(chalk.bold('select the local replay as the event target'))
await shell(
`npm exec @mhlabs/evb-cli replay -- --eventbus dynamodb-log --rule-prefix dynamodb-logs-local-archive-replay -n ${replayName}`,
{
stdio: 'inherit'
}
)
console.log(chalk.green('running replay, waiting for events'))
let written = 0
while (true) {
if (messages.length > 0) {
const pending = messages.splice(0, messages.length)
while (pending.length) {
const batch = pending.splice(0, 10)
written += await send(batch)
}
console.log(chalk.bold(`processed ${written} events`))
}
await new Promise(resolve => setTimeout(resolve, 3000))
}
} else {
console.log(chalk.bold('select event targets omitting local replay'))
await shell(
`npm exec @mhlabs/evb-cli replay -- --eventbus dynamodb-log -n ${replayName}`,
{
stdio: 'inherit'
}
)
}
}
}
run().catch(err => console.error(chalk.red(err.toString())))