mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-18 12:27:15 +00:00

* Major refactoring - Move job-spcific properties from wh_etl_job_property table to .job files - Use the job file name instead of numeric IDs to identify ETL jobs - Use reflection to create ETL job class at run time instead of relying hard-coded enums - Drop ETL job-related APIs as they're no longer needed - Drop wh_etl_job, wh_etl_job_property, wh_etl_job_execution tables - Add wh_etl_schedule & wh_etl_history tables
22 lines
513 B
Bash
22 lines
513 B
Bash
# Directory containing kerberos config files
|
|
WHZ_KRB5_DIR="/dir/to/krb5conf"
|
|
|
|
# Secret Key
|
|
WHZ_SECRET="change_me"
|
|
|
|
# Master Key to encrypt data in DB
|
|
WHZ_MASTER_KEY="change_me_master"
|
|
|
|
# Database Connection
|
|
WHZ_DB_DRIVER="com.mysql.jdbc.Driver"
|
|
WHZ_DB_USERNAME="wherehows"
|
|
WHZ_DB_PASSWORD="wherehows"
|
|
# Fully qualified jdbc url
|
|
WHZ_DB_URL="jdbc:mysql://localhost/wherehows"
|
|
|
|
# Directory containing ETL job files
|
|
WHZ_ETL_JOBS_DIR="/var/tmp/jobs"
|
|
|
|
# Temp directory for ETL job
|
|
WHZ_ETL_TEMP_DIR="/var/tmp/wherehows"
|