-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
59 lines (59 loc) · 1.27 KB
/
config.json
File metadata and controls
59 lines (59 loc) · 1.27 KB
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
{
"port": 2021,
"log_level": "info",
"elastic": {
"hosts": [
"localhost:9200"
],
"indices": {
"user": {
"object_type": "user",
"mapping": {
"id": {"type": "string", "index": "not_analyzed"},
"first_name": {"type": "string", "field_name": "name.given"},
"last_name": {"type": "string", "field_name": "name.family"},
"email": {"type": "string", "index": "not_analyzed"}
}
},
"file": {
"object_type": "file",
"mapping": {
"id": {
"type": "string",
"index": "not_analyzed"
},
"standalone": {
"type": "boolean"
},
"created_at": {
"type": "date"
}
}
},
"schedule": {
"object_type": "schedule",
"mapping": {
"id": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
},
"client-data": "http://localhost:8000",
"queue": "rethinkdb",
"consumer-group": "sync",
"rethinkdb": {
"db": "eigengraph",
"table": "events",
"offsettable": "event_offset"
},
"kafka": {
"hosts": [
"localhost:9092"
],
"client-id": "sync",
"topic": "events"
}
}