-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.yml.mustache
68 lines (57 loc) · 1.73 KB
/
manifest.yml.mustache
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
manifest: 1.2.0
defaultLogLevel: INFO
cluster:
id: {{ cluster }}
size: small
namespace: {{ namespace }}
filterGroups:
- id: default
updateStrategy: preserve
description: This default filter group is used for all indexers to capture
contract addresses you care about.
addresses:
- fromFile: ./contracts.csv
indexers:
{{#indexers}}
- chainId: {{chainId}}
enabled: {{enabled}}
ingestionFilterGroup: {{ingestionFilterGroup}}
processingFilterGroup: {{processingFilterGroup}}
logsListenerEnabled: {{logsListenerEnabled}}
blocksListenerEnabled: {{blocksListenerEnabled}}
emitEvents: {{emitEvents}}
emitBlocks: {{emitBlocks}}
emitTransactions: {{emitTransactions}}
emitTraces: {{emitTraces}}
resolveRevertReason: {{resolveRevertReason}}
sources:
{{#sources}}
- endpoint: {{{.}}}
{{/sources}}
{{/indexers}}
processors:
- id: aave-positions
type: block
handler: src/processors/aave-positions/handler.ts
enrichers:
- id: database-historical-sync-mysql-position
engine: flink
inputSql: ./src/database/mysql/batch.position.sql
- id: database-realtime-mysql-sync
engine: flink
parallelism: 4
inputSql: ./src/database/mysql/streaming.sql
- id: database-historical-sync-postgres-position
engine: flink
inputSql: ./src/database/postgres/batch.position.sql
- id: database-realtime-postgres-sync
engine: flink
parallelism: 4
inputSql: ./src/database/postgres/streaming.sql
- id: database-historical-sync-mongodb-position
engine: flink
inputSql: ./src/database/mongodb/batch.position.sql
- id: database-realtime-mongodb-sync
engine: flink
parallelism: 4
inputSql: ./src/database/mongodb/streaming.sql