Below was example from another thread involving HBaseStorage :
test = LOAD '$TEST'
USING org.apache.pig.backend.hadoop.hbase.HBaseStorage('cf_data:name
cf_data:age', '-loadKey true -maxTimestamp $test_date')
as (age);
Can you adjust your statement so that the table name is correctly specified
?
Thanks
On Tue, Feb 9, 2016 at 12:55 AM, Rajeshkumar J <[email protected]>
wrote:
> Hi,
>
> I am trying to store output from the pig relation into hbase using the
> following code
>
> store hbasedata into 'hbase://evallist' USING
>
> org.apache.pig.backend.hadoop.hbase.HBaseStorage('fa:ID,fa:date,fa:email,fa:customername');
>
> But it throws
>
> Caused by: java.lang.IllegalArgumentException: Must specify table name
>
> can any one help me in this?
>