This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
hillview.json
52 lines (50 loc) · 1.76 KB
/
hillview.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
{
// "Parameters influencing the display of the UI"
// If true the 'saveAs' menu is enabled
"enableSaveAs": true,
// If true the menu to read from a local database is enabled
"localDbMenu": true,
// If true the 'Test' menu for UI testing is displayed
"showTestMenu": true,
// If true the 'Manage' menu for managing the installation is displayed
"enableManagement": true,
// If true the 'Suggestions' in the UI are not displayed
"hideSuggestions": true,
// Files to show in the Demo datasets menu
"defaultFiles": [{
fileNamePattern: "data/ontime/????_*.csv*",
schemaFile: "short.schema",
schema: null,
headerRow: true,
name: "Flights (15 columns, CSV)",
fileKind: "csv"
}, {
fileNamePattern: "data/ontime_small_orc/*.orc",
schemaFile: "schema",
schema: null,
name: "Flights (15 columns, ORC)",
fileKind: "orc"
}, {
fileNamePattern: "data/ontime_private/????_*.csv*",
schemaFile: "short.schema",
schema: null,
headerRow: true,
name: "Flights (15 columns, CSV, private)",
fileKind: "csv"
}
// {
// fileNamePattern: "data/ontime_small_private/*.orc",
// schemaFile: "schema",
// schema: null,
// name: "Flights (15 columns, ORC, private)",
// fileKind: "orc",
// }
],
///////////////////////////////////////////////////////////////////////////////////
////////////////// Configuration options used with Greenplum //////////////////////
// This script is invoked when data is dumped from an external web table
"greenplumDumpScript": "/home/gpdamin/hillview/dump-greenplum.sh",
// This directory is used to store the data dumped from Greenplum before it's parsed by Hillview.
// The directory must be writable by the segment hosts.
"greenplumDumpDirectory": "/tmp"
}