File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2014 Ivan R. Judson
3
+ Copyright (c) Microsoft Corporation
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 2
2
=======
3
3
4
4
Tools for doing hybrid cloud hadoop jobs with Azure and Cloudera.
5
+
6
+ How to build the User Defined Function (UDF) Jar
7
+
8
+ # Compile
9
+ javac -classpath "` hbase classpath ` /usr/lib/pig/pig.jar:/usr/lib/hadoop/lib/commons-code-1.4.jar" ANONYMIZE.java DEANONYMIZE.java
10
+
11
+ # Jar
12
+ mkdir jaglion
13
+ mv ANONYMIZE.class DEANONYMIZE.class jaglion
14
+ jar -cf ../bin/jaglion.jar jaglion
15
+
16
+ # Execute local test
17
+ java -classpath "` hbase classpath ` /usr/lib/pig/pig.jar:/usr/lib/hadoop/lib/commons-code-1.4.jar" org.apache.pig.Main -x local test.pig
You can’t perform that action at this time.
0 commit comments