Sha256: 1248581ab9329d266238243a57520cd335ad356e7d716c16a74f97f2b1a877d0

Contents?: true

Size: 846 Bytes

Versions: 3

Compression:

Stored size: 846 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
if [ -d "<%= @project_home %>/pigscripts" ]; then
    cd <%= @project_home %>/pigscripts
fi

# Setup python environment
source <%= @local_install_dir %>/pythonenv/bin/activate

# Run Pig
<%= @local_install_dir %>/<%= @pig_dir %>/bin/pig -exectype local \
    -log4jconf <%= @log4j_conf %> \
    -propertyFile <%= @local_install_dir %>/lib-common/conf/pig-hawk-global.properties \
    -propertyFile <%= @local_install_dir %>/lib-common/conf/pig-cli-local-dev.properties \
    -param_file <%= @pig_params_file %> \
    <%= @pig_sub_command %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mortar-0.15.0 lib/mortar/templates/script/runpig.sh
mortar-0.14.1 lib/mortar/templates/script/runpig.sh
mortar-0.14.0 lib/mortar/templates/script/runpig.sh