-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from cuebook/zeppelin-cluster
Scalable zeppelin server for running scheduled notebooks
- Loading branch information
Showing
16 changed files
with
414 additions
and
113 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
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,23 @@ | ||
export ENVIRONMENT=test | ||
export REDIS_BROKER_URL=redis://localhost:6379/0 | ||
export ZEPPELIN_HOST=http://localhost | ||
export ZEPPELIN_PORT=8081 | ||
|
||
## DB SETTINGS | ||
export POSTGRES_DB_HOST="localhost" | ||
export POSTGRES_DB_USERNAME="postgres" | ||
export POSTGRES_DB_PASSWORD="postgres" | ||
export POSTGRES_DB_SCHEMA="cuelake_db" | ||
export POSTGRES_DB_PORT=5432 | ||
|
||
## S3 Settings | ||
export S3_BUCKET_NAME="YourBucketName" | ||
export S3_FILES_PREFIX="files/" | ||
export HADOOP_S3_PREFIX="cuelake/" | ||
|
||
## Metastore Settings | ||
export METASTORE_POSTGRES_HOST="localhost" | ||
export METASORE_POSTGRES_PORT=5432 | ||
export METASORE_POSTGRES_USERNAME="postgres" | ||
export METASORE_POSTGRES_PASSWORD="postgres" | ||
export METASORE_POSTGRES_DATABASE="cuelake_metastore" |
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,18 @@ | ||
# Generated by Django 3.2.1 on 2021-06-28 20:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('genie', '0015_alter_runstatus_workflowrun'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='runstatus', | ||
name='zeppelinServerId', | ||
field=models.CharField(default='', max_length=200), | ||
), | ||
] |
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
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
Oops, something went wrong.