You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@pig.apache.org by Sarath Rachakonda <sa...@infotrellis.com> on 2014/08/26 12:15:07 UTC

Simple Pig script with HBaseStorage as Load function doesn't show job progress in UI

Hi,



I am using simple pig script which loads data from hbase , converts the
case and just dump the data. 4 jobs got started. Each job shows the
progress as 0% till the end in the UI. Please check the attachments for the
progress in UI

A = LOAD 'hbase://HANDLE_ID_MAP'

       USING org.apache.pig.backend.hadoop.hbase.HBaseStorage(

       'default:default', '-loadKey true ')

       AS (id:chararray, aId:chararray);



B = FOREACH A GENERATE UPPER($0), $1;



DUMP B;

Pig version : 0.11.0
HBase version : 0.94.6
Hadoop version : 2.0.0-mr1



Thanks,

Sarath