├── __init__.py ├── cluster_task ├── __init__.py ├── clean_db.py ├── clean_db_sync.py ├── clean_table.py ├── dw_sql.py ├── hive_metadata.py ├── hive_tb_store.py ├── indicator_system.py ├── indicator_system_run.py ├── minireport_job.py └── scheduler_job.py ├── core ├── .DS_Store ├── __init__.py ├── conf │ ├── __init__.py │ ├── conf.py │ ├── extract.conf │ ├── system.conf │ ├── task.conf │ ├── template.conf │ └── uba_log.conf ├── core.py ├── model │ ├── __init__.py │ ├── bi_db_model.py │ ├── conf_model.py │ ├── date_model.py │ ├── hadoop_model.py │ ├── hive_db_model.py │ ├── hive_model.py │ ├── mail_model.py │ ├── produce_db_model.py │ ├── spark_model.py │ └── sqoop_model.py ├── shell │ ├── mysql_dump_file_bak.sh │ └── sqoop_import_mysql.sh └── util │ ├── .DS_Store │ ├── __init__.py │ ├── base │ ├── .DS_Store │ ├── __init__.py │ ├── args_format.py │ ├── camel.py │ ├── date.py │ ├── file.py │ ├── process.py │ └── read_conf.py │ ├── hive │ ├── __init__.py │ ├── hive_interface.py │ └── hive_server2.py │ ├── log │ ├── __init__.py │ └── logger.py │ ├── mail │ ├── __init__.py │ └── mail.py │ └── mysql │ ├── __init__.py │ ├── mysql.py │ ├── mysql_interface.py │ └── mysql_interface_20160907.py ├── dw_service ├── .project ├── .pydevproject ├── core │ ├── __init__.pyc │ ├── conf │ │ ├── __init__.pyc │ │ └── conf.pyc │ ├── core.pyc │ ├── model │ │ ├── __init__.pyc │ │ ├── date_model.pyc │ │ └── hive_model.pyc │ └── util │ │ ├── __init__.pyc │ │ ├── base │ │ ├── __init__.pyc │ │ ├── args_format.pyc │ │ ├── camel.pyc │ │ └── date.pyc │ │ └── hive │ │ ├── __init__.pyc │ │ └── hive_server2.pyc └── dw_service │ ├── __init__.pyc │ ├── base_service.pyc │ ├── load_service.pyc │ └── uba_log │ ├── __init__.pyc │ ├── run.pyc │ ├── uba_base.pyc │ └── uba_web_visit_log.pyc ├── dw_service_core.py ├── extract ├── __init__.py ├── extract_mysql.py ├── extract_queue_run.py ├── extract_run.py ├── extract_run.sh ├── gather_run.py ├── gather_table.py └── snapshot_run.py ├── index.py ├── template ├── __init__.py └── template_run.py └── uba_log ├── __init__.py ├── uba_ods_table_run.py ├── uba_run.py └── uba_sql ├── app ├── dw_app_access_log.sql ├── dw_app_access_log_ddl.sql ├── dw_app_action_detail_log.sql └── dw_app_action_detail_log_ddl.sql ├── ods ├── access_log.sql ├── dw_access_log.sql ├── uba_app_action_log.sql ├── uba_web_action_log.sql └── uba_web_visit_log.sql └── web ├── dw_web_action_detail_log.sql ├── dw_web_action_detail_log_ddl.sql ├── dw_web_visit_traffic_log.sql └── dw_web_visit_traffic_log_ddl.sql /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cluster_task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cluster_task/clean_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/clean_db.py -------------------------------------------------------------------------------- /cluster_task/clean_db_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/clean_db_sync.py -------------------------------------------------------------------------------- /cluster_task/clean_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/clean_table.py -------------------------------------------------------------------------------- /cluster_task/dw_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/dw_sql.py -------------------------------------------------------------------------------- /cluster_task/hive_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/hive_metadata.py -------------------------------------------------------------------------------- /cluster_task/hive_tb_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/hive_tb_store.py -------------------------------------------------------------------------------- /cluster_task/indicator_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/indicator_system.py -------------------------------------------------------------------------------- /cluster_task/indicator_system_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/indicator_system_run.py -------------------------------------------------------------------------------- /cluster_task/minireport_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/minireport_job.py -------------------------------------------------------------------------------- /cluster_task/scheduler_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/cluster_task/scheduler_job.py -------------------------------------------------------------------------------- /core/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/.DS_Store -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/conf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/conf/conf.py -------------------------------------------------------------------------------- /core/conf/extract.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/conf/extract.conf -------------------------------------------------------------------------------- /core/conf/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/conf/system.conf -------------------------------------------------------------------------------- /core/conf/task.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/conf/task.conf -------------------------------------------------------------------------------- /core/conf/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/conf/template.conf -------------------------------------------------------------------------------- /core/conf/uba_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/conf/uba_log.conf -------------------------------------------------------------------------------- /core/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/core.py -------------------------------------------------------------------------------- /core/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/model/bi_db_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/bi_db_model.py -------------------------------------------------------------------------------- /core/model/conf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/conf_model.py -------------------------------------------------------------------------------- /core/model/date_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/date_model.py -------------------------------------------------------------------------------- /core/model/hadoop_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/hadoop_model.py -------------------------------------------------------------------------------- /core/model/hive_db_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/hive_db_model.py -------------------------------------------------------------------------------- /core/model/hive_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/hive_model.py -------------------------------------------------------------------------------- /core/model/mail_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/mail_model.py -------------------------------------------------------------------------------- /core/model/produce_db_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/produce_db_model.py -------------------------------------------------------------------------------- /core/model/spark_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/spark_model.py -------------------------------------------------------------------------------- /core/model/sqoop_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/model/sqoop_model.py -------------------------------------------------------------------------------- /core/shell/mysql_dump_file_bak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/shell/mysql_dump_file_bak.sh -------------------------------------------------------------------------------- /core/shell/sqoop_import_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/shell/sqoop_import_mysql.sh -------------------------------------------------------------------------------- /core/util/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/.DS_Store -------------------------------------------------------------------------------- /core/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/util/base/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/.DS_Store -------------------------------------------------------------------------------- /core/util/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/util/base/args_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/args_format.py -------------------------------------------------------------------------------- /core/util/base/camel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/camel.py -------------------------------------------------------------------------------- /core/util/base/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/date.py -------------------------------------------------------------------------------- /core/util/base/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/file.py -------------------------------------------------------------------------------- /core/util/base/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/process.py -------------------------------------------------------------------------------- /core/util/base/read_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/base/read_conf.py -------------------------------------------------------------------------------- /core/util/hive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/util/hive/hive_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/hive/hive_interface.py -------------------------------------------------------------------------------- /core/util/hive/hive_server2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/hive/hive_server2.py -------------------------------------------------------------------------------- /core/util/log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/util/log/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/log/logger.py -------------------------------------------------------------------------------- /core/util/mail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/util/mail/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/mail/mail.py -------------------------------------------------------------------------------- /core/util/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/util/mysql/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/mysql/mysql.py -------------------------------------------------------------------------------- /core/util/mysql/mysql_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/mysql/mysql_interface.py -------------------------------------------------------------------------------- /core/util/mysql/mysql_interface_20160907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/core/util/mysql/mysql_interface_20160907.py -------------------------------------------------------------------------------- /dw_service/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/.project -------------------------------------------------------------------------------- /dw_service/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/.pydevproject -------------------------------------------------------------------------------- /dw_service/core/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/__init__.pyc -------------------------------------------------------------------------------- /dw_service/core/conf/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/conf/__init__.pyc -------------------------------------------------------------------------------- /dw_service/core/conf/conf.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/conf/conf.pyc -------------------------------------------------------------------------------- /dw_service/core/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/core.pyc -------------------------------------------------------------------------------- /dw_service/core/model/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/model/__init__.pyc -------------------------------------------------------------------------------- /dw_service/core/model/date_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/model/date_model.pyc -------------------------------------------------------------------------------- /dw_service/core/model/hive_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/model/hive_model.pyc -------------------------------------------------------------------------------- /dw_service/core/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/__init__.pyc -------------------------------------------------------------------------------- /dw_service/core/util/base/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/base/__init__.pyc -------------------------------------------------------------------------------- /dw_service/core/util/base/args_format.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/base/args_format.pyc -------------------------------------------------------------------------------- /dw_service/core/util/base/camel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/base/camel.pyc -------------------------------------------------------------------------------- /dw_service/core/util/base/date.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/base/date.pyc -------------------------------------------------------------------------------- /dw_service/core/util/hive/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/hive/__init__.pyc -------------------------------------------------------------------------------- /dw_service/core/util/hive/hive_server2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/core/util/hive/hive_server2.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/__init__.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/base_service.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/base_service.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/load_service.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/load_service.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/uba_log/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/uba_log/__init__.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/uba_log/run.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/uba_log/run.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/uba_log/uba_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/uba_log/uba_base.pyc -------------------------------------------------------------------------------- /dw_service/dw_service/uba_log/uba_web_visit_log.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service/dw_service/uba_log/uba_web_visit_log.pyc -------------------------------------------------------------------------------- /dw_service_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/dw_service_core.py -------------------------------------------------------------------------------- /extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extract/extract_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/extract_mysql.py -------------------------------------------------------------------------------- /extract/extract_queue_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/extract_queue_run.py -------------------------------------------------------------------------------- /extract/extract_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/extract_run.py -------------------------------------------------------------------------------- /extract/extract_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/extract_run.sh -------------------------------------------------------------------------------- /extract/gather_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/gather_run.py -------------------------------------------------------------------------------- /extract/gather_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/gather_table.py -------------------------------------------------------------------------------- /extract/snapshot_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/extract/snapshot_run.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/index.py -------------------------------------------------------------------------------- /template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/template_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/template/template_run.py -------------------------------------------------------------------------------- /uba_log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uba_log/uba_ods_table_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_ods_table_run.py -------------------------------------------------------------------------------- /uba_log/uba_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_run.py -------------------------------------------------------------------------------- /uba_log/uba_sql/app/dw_app_access_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/app/dw_app_access_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/app/dw_app_access_log_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/app/dw_app_access_log_ddl.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/app/dw_app_action_detail_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/app/dw_app_action_detail_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/app/dw_app_action_detail_log_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/app/dw_app_action_detail_log_ddl.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/ods/access_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/ods/access_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/ods/dw_access_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/ods/dw_access_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/ods/uba_app_action_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/ods/uba_app_action_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/ods/uba_web_action_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/ods/uba_web_action_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/ods/uba_web_visit_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/ods/uba_web_visit_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/web/dw_web_action_detail_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/web/dw_web_action_detail_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/web/dw_web_action_detail_log_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/web/dw_web_action_detail_log_ddl.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/web/dw_web_visit_traffic_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/web/dw_web_visit_traffic_log.sql -------------------------------------------------------------------------------- /uba_log/uba_sql/web/dw_web_visit_traffic_log_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonWiki/dw_etl/HEAD/uba_log/uba_sql/web/dw_web_visit_traffic_log_ddl.sql --------------------------------------------------------------------------------