2015-11-19 14:39:21 -08:00
|
|
|
/**
|
|
|
|
|
* Copyright 2015 LinkedIn Corp. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
*/
|
|
|
|
|
package wherehows.common;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Created by zsun on 9/29/15.
|
|
|
|
|
*/
|
|
|
|
|
public class Constant {
|
|
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
// For property_name in wh_property table
|
|
|
|
|
/** The property_name field in wh_property table for WhereHows database connection information */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String WH_DB_URL_KEY = "wherehows.db.jdbc.url";
|
|
|
|
|
public static final String WH_DB_USERNAME_KEY = "wherehows.db.username";
|
|
|
|
|
public static final String WH_DB_PASSWORD_KEY = "wherehows.db.password";
|
|
|
|
|
public static final String WH_DB_DRIVER_KEY = "wherehows.db.driver";
|
2016-02-12 16:57:12 -08:00
|
|
|
|
|
|
|
|
/** The property_name field in wh_property table. Location of the folder that store interim csv file. */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String WH_APP_FOLDER_KEY = "wherehows.app_folder";
|
|
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
// For property_name in wh_etl_job_property table
|
|
|
|
|
// Lineage
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. Azkaban database connection info */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String AZ_DB_URL_KEY = "az.db.jdbc.url";
|
|
|
|
|
public static final String AZ_DB_USERNAME_KEY = "az.db.username";
|
|
|
|
|
public static final String AZ_DB_PASSWORD_KEY = "az.db.password";
|
|
|
|
|
public static final String AZ_DB_DRIVER_KEY = "az.db.driver";
|
|
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The time period backtrace for execution data ETL */
|
|
|
|
|
public static final String AZ_EXEC_ETL_LOOKBACK_MINS_KEY = "az.exec_etl.lookback_period.in.minutes";
|
2015-11-19 14:39:21 -08:00
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Hadoop job history url for retrieving map-reduce job logs */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String AZ_HADOOP_JOBHISTORY_KEY = "az.hadoop.jobhistory.server.url";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Default hadoop database id for this azkaban instance */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String AZ_DEFAULT_HADOOP_DATABASE_ID_KEY = "az.default.hadoop.database.id";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. For this period of jobs that finished, we will extract their lineage */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String AZ_LINEAGE_ETL_LOOKBACK_MINS_KEY = "az.lineage_etl.lookback_period.in.minutes";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. In lineage ETl, Akka actor time out time */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String LINEAGE_ACTOR_TIMEOUT_KEY = "az.lineage.actor.timeout";
|
2016-02-22 16:42:35 -08:00
|
|
|
|
|
|
|
|
public static final String LINEAGE_ACTOR_NUM = "az.lineage.actor.num";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Optional property used for debug. Default end timestamp is now */
|
2015-12-11 19:46:35 -08:00
|
|
|
public static final String AZ_LINEAGE_ETL_END_TIMESTAMP_KEY = "az.lineage_etl.end_timestamp";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Azkaban Server URL (optional way to get azkaban execution log) */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String AZ_SERVICE_URL_KEY = "az.server.url";
|
|
|
|
|
public static final String AZ_SERVICE_USERNAME_KEY = "az.server.username";
|
|
|
|
|
public static final String AZ_SERVICE_PASSWORD_KEY = "az.server.password";
|
|
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
// Oozie
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. Oozie database connection info */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String OZ_DB_URL_KEY = "oz.db.jdbc.url";
|
|
|
|
|
public static final String OZ_DB_USERNAME_KEY = "oz.db.username";
|
|
|
|
|
public static final String OZ_DB_PASSWORD_KEY = "oz.db.password";
|
|
|
|
|
public static final String OZ_DB_DRIVER_KEY = "oz.db.driver";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Oozie execution info ETL lookback time */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String OZ_EXEC_ETL_LOOKBACK_MINS_KEY = "oz.exec_etl.lookback_period.in.minutes";
|
|
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
// Teradata
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata connection info */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_DB_URL_KEY = "teradata.db.jdbc.url";
|
|
|
|
|
public static final String TD_DB_USERNAME_KEY = "teradata.db.username";
|
|
|
|
|
public static final String TD_DB_PASSWORD_KEY = "teradata.db.password";
|
|
|
|
|
public static final String TD_DB_DRIVER_KEY = "teradata.db.driver";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata metadata raw interim file store location */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_METADATA_KEY = "teradata.metadata";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata field metadata interim file store location */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_FIELD_METADATA_KEY = "teradata.field_metadata";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata schema interim file store location */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_SCHEMA_OUTPUT_KEY = "teradata.schema_output";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata sample data interim file store location */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_SAMPLE_OUTPUT_KEY = "teradata.sample_output";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata log file store location */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_LOG_KEY = "teradata.log";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Teradata databases to collect metadata */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_TARGET_DATABASES_KEY = "teradata.databases";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Used for connecting */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String TD_DEFAULT_DATABASE_KEY = "teradata.default_database";
|
|
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
// Hdfs
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. The hfds remote user that run the hadoop job on gateway */
|
|
|
|
|
public static final String HDFS_REMOTE_USER_KEY = "hdfs.remote.user";
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. The gateway machine name*/
|
|
|
|
|
public static final String HDFS_REMOTE_MACHINE_KEY = "hdfs.remote.machine";
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. The private key location of remote user */
|
|
|
|
|
public static final String HDFS_PRIVATE_KEY_LOCATION_KEY = "hdfs.private_key_location";
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. The jar file location that need to run */
|
|
|
|
|
public static final String HDFS_REMOTE_JAR_KEY = "hdfs.remote.jar";
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. The raw hfds metadata file (in json format) location store on local machine */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_SCHEMA_LOCAL_PATH_KEY = "hdfs.local.raw_metadata";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The hfds metadata file location store on remote hadoop gateway */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_SCHEMA_REMOTE_PATH_KEY = "hdfs.remote.raw_metadata";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The hfds sample data file location store on local machine */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_SAMPLE_LOCAL_PATH_KEY = "hdfs.local.sample";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The hfds sample data file location store on remote hadoop gateway */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_SAMPLE_REMOTE_PATH_KEY = "hdfs.remote.sample";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Hadoop cluster name */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_CLUSTER_KEY = "hdfs.cluster";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The list of directories as a start point to fetch metadata.
|
|
|
|
|
* (include all of their sub directories) */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_WHITE_LIST_KEY = "hdfs.white_list";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. Number of thread to do the metadata collecting */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_NUM_OF_THREAD_KEY = "hdfs.num_of_thread";
|
2016-02-17 16:06:16 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The hfds metadata file (in csv format) location store on local machine */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_SCHEMA_RESULT_KEY = "hdfs.local.metadata";
|
2016-02-17 16:06:16 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The field metadata file (in csv format) location store on local machine */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String HDFS_FIELD_RESULT_KEY = "hdfs.local.field_metadata";
|
2016-02-17 16:06:16 -08:00
|
|
|
/** The property_name field in wh_etl_job_property table. The map of file path regex and dataset source
|
|
|
|
|
* e.g. [{"/data/tracking.*":"Kafka"},{"/data/retail.*":"Teradata"}] */
|
|
|
|
|
public static final String HDFS_FILE_SOURCE_MAP_KEY = "hdfs.file_path_regex_source_map";
|
2016-02-12 16:57:12 -08:00
|
|
|
|
|
|
|
|
/** The property_name field in wh_etl_job_property table. For dataset owner ETL. The hfds location to copy files */
|
2015-12-03 17:09:03 -08:00
|
|
|
public static final String HDFS_REMOTE_WORKING_DIR = "hdfs.remote.working.dir";
|
2015-11-19 14:39:21 -08:00
|
|
|
|
|
|
|
|
// ui
|
2016-02-12 16:57:12 -08:00
|
|
|
/** File name of dataset tree that used by front end to show tree */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String DATASET_TREE_FILE_NAME_KEY = "wherehows.ui.tree.dataset.file";
|
2016-02-12 16:57:12 -08:00
|
|
|
/** File name of flow tree that used by front end to show tree */
|
2015-11-19 14:39:21 -08:00
|
|
|
public static final String FLOW_TREE_FILE_NAME_KEY = "wherehows.ui.tree.flow.file";
|
2015-12-03 17:09:03 -08:00
|
|
|
|
|
|
|
|
// hdfs owner
|
|
|
|
|
public static final String HDFS_OWNER_HIVE_QUERY_KEY = "hdfs.owner.hive.query";
|
|
|
|
|
|
2015-12-07 15:27:20 -08:00
|
|
|
// ldap
|
|
|
|
|
public static final String LDAP_CEO_USER_ID_KEY = "ldap.ceo.user.id";
|
|
|
|
|
public static final String LDAP_CONTEXT_FACTORY_KEY = "ldap.context.factory";
|
|
|
|
|
public static final String LDAP_CONTEXT_PROVIDER_URL_KEY = "ldap.context.provider.url";
|
|
|
|
|
public static final String LDAP_CONTEXT_SECURITY_PRINCIPAL_KEY = "ldap.context.security.principal";
|
|
|
|
|
public static final String LDAP_CONTEXT_SECURITY_CREDENTIALS_KEY = "ldap.context.security.credentials";
|
|
|
|
|
public static final String LDAP_SEARCH_DOMAINS_KEY = "ldap.search.domains";
|
|
|
|
|
public static final String LDAP_INACTIVE_DOMAIN_KEY = "ldap.inactive.domain";
|
|
|
|
|
public static final String LDAP_SEARCH_RETURN_ATTRS_KEY = "ldap.search.return.attributes";
|
|
|
|
|
public static final String LDAP_GROUP_CONTEXT_FACTORY_KEY = "ldap.group.context.factory";
|
|
|
|
|
public static final String LDAP_GROUP_CONTEXT_PROVIDER_URL_KEY = "ldap.group.context.provider.url";
|
|
|
|
|
public static final String LDAP_GROUP_CONTEXT_SECURITY_PRINCIPAL_KEY = "ldap.group.context.security.principal";
|
|
|
|
|
public static final String LDAP_GROUP_CONTEXT_SECURITY_CREDENTIALS_KEY = "ldap.group.context.security.credentials";
|
|
|
|
|
public static final String LDAP_GROUP_APP_ID_KEY = "ldap.group.app.id";
|
|
|
|
|
public static final String LDAP_GROUP_SEARCH_DOMAINS_KEY = "ldap.group.search.domains";
|
|
|
|
|
public static final String LDAP_GROUP_SEARCH_RETURN_ATTRS_KEY = "ldap.group.search.return.attributes";
|
|
|
|
|
|
2015-12-11 11:02:29 -08:00
|
|
|
// git
|
|
|
|
|
public static final String GIT_HOST_KEY = "git.host";
|
|
|
|
|
public static final String GIT_PROJECT_WHITELIST_KEY = "git.project.whitelist";
|
|
|
|
|
|
2015-12-11 19:46:35 -08:00
|
|
|
// hive
|
|
|
|
|
public static final String HIVE_METASTORE_JDBC_DRIVER = "hive.metastore.jdbc.driver";
|
|
|
|
|
public static final String HIVE_METASTORE_JDBC_URL = "hive.metastore.jdbc.url";
|
|
|
|
|
public static final String HIVE_METASTORE_USERNAME = "hive.metstore.username";
|
|
|
|
|
public static final String HIVE_METASTORE_PASSWORD = "hive.metastore.password";
|
|
|
|
|
|
|
|
|
|
public static final String HIVE_SCHEMA_JSON_FILE_KEY = "hive.schema_json_file";
|
|
|
|
|
// public static final String HIVE_SAMPLE_CSV_FILE_KEY = "hive.sample_csv";
|
|
|
|
|
public static final String HIVE_SCHEMA_CSV_FILE_KEY = "hive.schema_csv_file";
|
|
|
|
|
public static final String HIVE_FIELD_METADATA_KEY = "hive.field_metadata";
|
2015-12-16 15:54:50 -08:00
|
|
|
|
2016-02-12 16:57:12 -08:00
|
|
|
/** Property name of app id. For ETL process. ETL process will use this to identify the application */
|
|
|
|
|
public static final String APP_ID_KEY = "app.id";
|
|
|
|
|
/** Property name of database id. ETL process will use this to identify the database */
|
|
|
|
|
public static final String DB_ID_KEY = "db.id";
|
|
|
|
|
/** Property name of wherehows execution id for ETL process. */
|
|
|
|
|
public static final String WH_EXEC_ID_KEY = "wh.exec.id";
|
2015-11-19 14:39:21 -08:00
|
|
|
}
|