You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-user@hadoop.apache.org by "Peter W." <pe...@marketingbrokers.com> on 2007/06/05 21:48:52 UTC

Pig javadocs

Howdy,

If you are going to use Pig with Hadoop an excellent
addition to the PDF documentation are the javadocs.

Let's say you downloaded the source in /opt/pig-src and
the javadoc command is in your CLASSPATH:

mkdir /opt/pig-src/src/html
cd /opt/pig-src/src

javadoc -d html -windowtitle 'Pig API' \
com.yahoo.pig \
com.yahoo.pig.builtin \
com.yahoo.pig.data \
com.yahoo.pig.impl \
com.yahoo.pig.impl.eval \
com.yahoo.pig.impl.eval.filter \
com.yahoo.pig.impl.eval.func \
com.yahoo.pig.impl.eval.groupby \
com.yahoo.pig.impl.eval.sad \
com.yahoo.pig.impl.eval.window \
com.yahoo.pig.impl.io \
com.yahoo.pig.impl.logicalLayer \
com.yahoo.pig.impl.logicalLayer.schema \
com.yahoo.pig.impl.mapreduceExec \
com.yahoo.pig.impl.physicalLayer \
com.yahoo.pig.impl.pigbodyExec \
com.yahoo.pig.impl.util \
com.yahoo.pig.tools.grunt \
com.yahoo.pig.tools.streams

Api docs will be in /opt/pig-src/src/html
open the index.html in your browser.

Kind Regards,

Peter W.