Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pamio/5538463 to your computer and use it in GitHub Desktop.
Save pamio/5538463 to your computer and use it in GitHub Desktop.
REGISTER contrib/piggybank/java/piggybank.jar
DEFINE SUBSTRING org.apache.pig.piggybank.evaluation.string.SUBSTRING();
A = load 'gutenberg/sample.txt';
C = foreach A generate SUBSTRING((chararray)$0, 0, 5);
dump C;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment