-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_config.json
65 lines (65 loc) · 1.75 KB
/
sample_config.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
{
"source_db": {
"drivername": "mysql+pymysql",
"host": "localhost",
"port": 3306,
"database": "database",
"username": "username",
"password": "password",
"query": {"charset": "utf8"}
},
"cube_db": {
"drivername": "sqlite",
"database": "TJ_DB"
},
"test_db": {
"drivername": "mysql+pymysql",
"host": "localhost",
"port": 3306,
"database": "test_pyro",
"username": "username",
"password": "password",
"query": {"charset": "utf8"}
},
"multi valued dependencies": [],
"dimensions": [
{
"name": "dimension_1",
"attributes": ["R1.A1", "R2.A2", "R3.A3"]
},
{
"name": "dimension_1",
"attributes": ["R1.A1", "R2.A2", "R3.A3"],
"constraint": [
[
{
"attribute": "A1",
"operation": ">",
"value": 4
},
{
"attribute": "A2",
"operation": "=",
"value": 6
}
],
[
{
"attribute": "A4",
"operation": "<>",
"value": "str value"
},
{
"attribute": "A6",
"operation": "NOT BETWEEN",
"value": [1, 16]
}
]
]
}
],
"measure": "",
"app_context": false,
"output_file": "dispensary_table.html",
"cache_file": "cache.json"
}