Sha256: 48ea7db08286dec6e803f36b3477e0601b8fb1df0f916352c6c6878ac7719848
Contents?: true
Size: 810 Bytes
Versions: 31
Compression:
Stored size: 810 Bytes
Contents
#!/bin/bash set -e export PIG_HOME=<%= @pig_home %> export PIG_CLASSPATH=<%= @pig_classpath %> export CLASSPATH=<%= @classpath %> export PIG_MAIN_CLASS=com.mortardata.hawk.HawkMain export PIG_OPTS="<% @pig_opts.each do |k,v| %>-D<%= k %>=<%= v %> <% end %>" # UDF paths are relative to this direectory cd <%= @project_home %>/pigscripts # Setup python environment source <%= @local_install_dir %>/pythonenv/bin/activate # Run Pig <%= @local_install_dir %>/pig/bin/pig -exectype local \ -log4jconf <%= @local_install_dir %>/pig/conf/log4j-cli-local-dev.properties \ -propertyFile <%= @local_install_dir %>/pig/conf/pig-hawk-global.properties \ -propertyFile <%= @local_install_dir %>/pig/conf/pig-cli-local-dev.properties \ -param_file <%= @pig_params_file %> \ <%= @pig_sub_command %>
Version data entries
31 entries across 31 versions & 1 rubygems