I created a table in pig and stored it in hdfs:
STORE mapping INTO 'hdfs://localhost:9000/hbase/data/default/mapping' USING PigStorage ('\t');
Running the ls command on hdfs, I'm getting the table:
bin/hdfs dfs -ls /hbase/data/default
Found 1 item
drwxr-xr-x - hfu supergroup 0 2015-11-09 13:33 /hbase/data/default/mapping
But while running the list command in HBase shell, the table doesn't appear.
I'm using:
hbase-0.98.0-hadoop2
hadoop-2.6.1
pig-0.15.0
all running on one virtual machine
How can I import the table in HBase?