-
Notifications
You must be signed in to change notification settings - Fork 3
/
config-kafka.json
50 lines (50 loc) · 1.28 KB
/
config-kafka.json
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
{
"prometheus": "127.0.0.1:8873",
"kafka": {
"bootstrap.servers": "localhost:29092",
"statistics.interval.ms": "1000"
},
"dedup": {
"kafka": {
"group.id": "dedup",
"group.instance.id": "dedup"
},
"kafka_input": "grpc1",
"kafka_output": "grpc2",
"kafka_queue_size": "10_000",
"backend": {
"type": "memory"
}
},
"grpc2kafka": {
"endpoint": "http://127.0.0.1:10000",
"x_token": null,
"request": {
"slots": {
"client": {
"filter_by_commitment": null
}
},
"blocks": {
"client": {
"account_include": [],
"include_transactions": false,
"include_accounts": false,
"include_entries": false
}
}
},
"kafka": {},
"kafka_topic": "grpc1",
"kafka_queue_size": "10_000"
},
"kafka2grpc": {
"kafka": {
"group.id": "kafka2grpc",
"group.instance.id": "kafka2grpc"
},
"kafka_topic": "grpc2",
"listen": "127.0.0.1:10001",
"channel_capacity": 250000
}
}