-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathenv-settings.json
52 lines (52 loc) · 1.62 KB
/
env-settings.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
{
"default": {
"drpcHost": "https://foo.bar.com:4443",
"drpcNamespace": "bullet/api",
"drpcPath": "drpc",
"schemaHost": "https://foo.bar.com:4443",
"schemaNamespace": "bullet/api",
"helpLinks": [
{
"name": "Tutorials",
"link": "https://yahoo.github.io/bullet-docs/ui/usage"
}
],
"bugLink": "https://github.com/yahoo/bullet-ui/issues",
"modelVersion": 2,
"migrations": {
"deletions": "result"
},
"defaultValues": {
"aggregationMaxSize": 512,
"rawMaxSize": 100,
"durationMaxSecs": 120,
"distributionNumberOfPoints": 11,
"distributionQuantilePoints": "0, 0.25, 0.5, 0.75, 0.9, 1",
"distributionQuantileStart": 0,
"distributionQuantileEnd": 1,
"distributionQuantileIncrement": 0.1,
"queryTimeoutSecs": 3,
"sketches": {
"countDistinctMaxEntries": 16384,
"groupByMaxEntries": 512,
"distributionMaxEntries": 1024,
"distributionMaxNumberOfPoints": 100,
"topKMaxEntries": 1024,
"topKErrorType": "No False Negatives"
},
"metadataKeyMapping": {
"theta": "theta",
"uniquesEstimate": "uniques_estimate",
"queryCreationTime": "query_receive_time",
"queryTerminationTime": "query_finish_time",
"estimatedResult": "was_estimated",
"standardDeviations": "standard_deviations",
"normalizedRankError": "normalized_rank_error",
"maximumCountError": "maximum_count_error",
"itemsSeen": "items_seen",
"minimumValue": "minimum_value",
"maximumValue": "maximum_value"
}
}
}
}