Advertisement
Guest User

Untitled

a guest
Jul 5th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. #Source data start date, inclusive. For example, for May 3, 2016 you can put 20160503
  4. SOURCE_DATA_START_DATE=20160601
  5.  
  6. #Source data end date, inclusive. For example, for May 3, 2016 you can put 20160503
  7. SOURCE_DATA_END_DATE=20160607
  8.  
  9. #Name of the intermediate table. This will get dropped (if it exists) and then re-created and overwritten, so if
  10. #you have data currently there, be sure to save it first! Must be in "dataBase.table" format, eg, default.video_orc
  11. INTERMEDIATE_TABLE=anavratil.mobile_web_viewability_intermediate_table
  12.  
  13. #Name of the destination table, also in "dataBase.table format". Also will be dropped (if it exists) and then
  14. #re-created and overwritten. Example: default.myDestinationTable
  15. DESTINATION_TABLE=anavratil.mobile_web_viewability_destination_table
  16.  
  17. #Full path to the jar containing the Hive UDFs. Example: /tmp/myHiveUdfJar.jar
  18. UDF_JAR_PATH=/hdfs/mars/bin/hive-udf/hive-udf-1.3-1461842580-348155c-uber.jar
  19.  
  20. #Full path to the jar used to load scores into the Firewall Vendo instance
  21. LOADSITES_JAR_PATH=##no idea where to find this
  22.  
  23. #The username to use to login to Vendo to create the Firewall instance
  24. VENDO_USERNAME=##presumably I should not commit any credentials. Maybe environment variables instead?
  25.  
  26. #The password to use to login to Vendo to create the Firewall instance
  27. VENDO_PASSWORD=##No credentials in the repo?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement