-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.json
66 lines (66 loc) · 1.46 KB
/
spec.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"type": "index_parallel",
"spec": {
"ioConfig": {
"type": "index_parallel",
"inputSource": {
"type": "http",
"uris": [
"https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/01-03-2021.csv"
]
},
"inputFormat": {
"type": "csv",
"findColumnsFromHeader": true
},
"appendToExisting": true
},
"tuningConfig": {
"type": "index_parallel",
"partitionsSpec": {
"type": "dynamic"
}
},
"dataSchema": {
"dataSource": "covid19_daily",
"granularitySpec": {
"type": "uniform",
"queryGranularity": "DAY",
"rollup": true
},
"timestampSpec": {
"column": "Last_Update",
"format": "auto"
},
"dimensionsSpec": {
"dimensions": [
"Combined_Key",
"Country_Region",
"Province_State"
]
},
"metricsSpec": [
{
"name": "sum_Active",
"type": "longSum",
"fieldName": "Active"
},
{
"name": "sum_Confirmed",
"type": "longSum",
"fieldName": "Confirmed"
},
{
"name": "sum_Deaths",
"type": "longSum",
"fieldName": "Deaths"
},
{
"name": "sum_Recovered",
"type": "longSum",
"fieldName": "Recovered"
}
]
}
}
}