Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Java
- MySQL
- hadoop
- management
- Artificial Intelligence
- erlang
- France
- Spain
- web
- Book review
- leadership
- agile
- ubuntu
- essay
- Python
- Linux
- Italy
- program
- Programming
- django
- hbase
- history
- Kuala Lumpur
- Malaysia
- RFID
- comic agile
- programming_book
- Software Engineering
- QT
- Book
Archives
- Today
- Total
pig java udf 본문
https://github.com/alanfgates/programmingpig/blob/master/udfs/java/com/acme/math/Pow.java
$ hadoop version
$ pig -version
$ javac -cp /usr/lib/pig/\* -d Pow Pow.java ; jar cvf pow.jar -C Pow .
$ cat pow.pig
$ hadoop fs -cat /tmp/pow_input.txt
2 3
3 2
$ pig -f pow.pig
$ hadoop fs -cat /tmp/pow_output/part-m-00000
2 3 8
3 2 9
Comments