0
votes
2answers
160 views

HBase bulk load when using native FS

I have a big list of HBase sql statements that I need to run against an existing instance of HBase database. The SQL statements are in plain text, and the database is running on native file system ...
0
votes
1answer
138 views

Bulk Insert/Load in MySQL and HBase

I have a system with two processes, one of which does a single insert, and the other a bulk insert. Obviously the second process is faster, and I'm working on migrating the first process to a bulk ...
1
vote
1answer
494 views

Load MapReduce output data into HBase

The last few days I've been experimenting with Hadoop. I'm running Hadoop in pseudo-distributed mode on Ubuntu 12.10 and successfully executed some standard MapReduce jobs. Next I wanted to start ...
1
vote
0answers
166 views

Hbase Importtsv java.lang.IllegalArgumentException: Can't read partitions file error

I have a distributed cluster and when a run a bulk upload command using importtsv it give me the java.lang.IllegalArgumentException: Can't read partitions file error and moreover it has a local job ...
0
votes
1answer
299 views

bulk-load: don't import duplicate values

I need to import everyday a file containing the yesterday's snapshot of a database. To import I use the following command in the shell: ./bin/hbase org.apache.hadoop.hbase.mapreduce.ImportTsv \ ...
1
vote
2answers
683 views

Error while bulk load in hbase

I am trying Hbase - bulkLoad through Java MapReduce program. I am running my program in Eclipse. But I am getting the following error: 12/06/14 20:04:28 INFO jvm.JvmMetrics: Initializing JVM ...
5
votes
1answer
865 views

When creating and loading HFile programmatically to HBase new entries are unavailable

I'm trying to create HFiles programmatically and loading them in a running HBase instance. I found a lot of info in HFileOutputFormat and in LoadIncrementalHFiles I managed to create the new HFile, ...
0
votes
1answer
261 views

Running MR code for loading data into HBASE [closed]

i am new to HBASE i am trying to load a data into HBASE from HDFS but i am not able to whenever i run MR i get same error " Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
1answer
549 views

HBase bulk load spawn high number of reducer tasks - any workaround

HBase bulk load (using configureIncrementalLoad helper method) configures the job to create as many reducer task as the regions in the hbase table. So if there are few hundred regions then the job ...