forked from storacha/w3infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexer-stack.js
91 lines (82 loc) · 2.73 KB
/
indexer-stack.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
import { Queue, Table } from 'sst/constructs'
import { Duration } from 'aws-cdk-lib'
import * as sqs from 'aws-cdk-lib/aws-sqs'
import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'
import { getEnv, setupSentry } from './config.js'
/** @param {import('sst/constructs').StackContext} properties */
export function IndexerStack({ stack, app }) {
const {
EIPFS_MULTIHASHES_SQS_ARN,
EIPFS_BLOCKS_CAR_POSITION_TABLE_ARN
} = getEnv()
// Setup app monitoring with Sentry
setupSentry(app, stack)
// https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html#arns-syntax
const indexerRegion = EIPFS_MULTIHASHES_SQS_ARN.split(':')[3]
// Elastic IPFS event for multihashes
const multihashesQueue = new Queue(stack, 'eipfs-multihashes-topic-queue', {
cdk: {
queue: sqs.Queue.fromQueueArn(
stack,
'multihashes-topic',
EIPFS_MULTIHASHES_SQS_ARN
),
},
})
const blocksCarsPositionTable = new Table(stack, 'eipfs-blocks-cars-position-table', {
cdk: {
table: dynamodb.Table.fromTableArn(
stack,
'blocks-cars-position',
EIPFS_BLOCKS_CAR_POSITION_TABLE_ARN
),
},
})
const blockAdvertPublisherQueue = new Queue(stack, 'block-advert-publisher-queue', {
cdk: { queue: { visibilityTimeout: Duration.minutes(15) } }
})
const blockAdvertPublisherDLQ = new Queue(stack, 'block-advert-publisher-dlq', {
cdk: { queue: { retentionPeriod: Duration.days(14) } }
})
blockAdvertPublisherQueue.addConsumer(stack, {
function: {
handler: 'indexer/functions/handle-block-advert-publish-message.main',
environment : {
MULTIHASHES_QUEUE_URL: multihashesQueue.queueUrl,
INDEXER_REGION: indexerRegion
},
permissions: [multihashesQueue],
timeout: 15 * 60,
},
deadLetterQueue: blockAdvertPublisherDLQ.cdk.queue,
cdk: {
eventSource: {
batchSize: 1
},
},
})
const blockIndexWriterQueue = new Queue(stack, 'block-index-writer-queue', {
cdk: { queue: { visibilityTimeout: Duration.minutes(15) } }
})
const blockIndexWriterDLQ = new Queue(stack, 'block-index-writer-dlq', {
cdk: { queue: { retentionPeriod: Duration.days(14) } }
})
blockIndexWriterQueue.addConsumer(stack, {
function: {
handler: 'indexer/functions/handle-block-index-writer-message.main',
environment : {
BLOCKS_CAR_POSITION_TABLE_NAME: blocksCarsPositionTable.tableName,
INDEXER_REGION: indexerRegion
},
permissions: [blocksCarsPositionTable],
timeout: 15 * 60,
},
deadLetterQueue: blockIndexWriterDLQ.cdk.queue,
cdk: {
eventSource: {
batchSize: 1
},
},
})
return { blockAdvertPublisherQueue, blockIndexWriterQueue }
}