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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for service configuration via hillview.json (#717)
- Loading branch information
Mihai Budiu
authored
May 24, 2021
1 parent
b66343e
commit 19e0eb7
Showing
14 changed files
with
306 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"hideSuggestions": true, | ||
"greenplumScript": "/home/gpdamin/hillview/move-greenplum.sh", | ||
// This directory is used to store the exchanged between Greenplum before and Hillview. | ||
// The directory must be readable/writable by the segment hosts and Hillview workers. | ||
"greenplumDumpDirectory": "/tmp" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ esac | |
${SUDO} ${INSTALL} install wget maven ${NODEJS} ${LIBFORTRAN} unzip gzip python3 | ||
echo "Installing typescript compiler" | ||
${SUDO} npm install -g [email protected] | ||
pip install jproperties | ||
pip install json | ||
|
||
# Download apache if not there. | ||
pushd .. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" | ||
} |
Oops, something went wrong.