Hi all, I have a non-mapreduce process that produce a lot of data that I want to import into HBase through programmatically bulk loading because using TableOutputFormat from client makes my HBase stop working (too many writes in parallel I think).
How can I create the necessary HFiles starting from my data (their name, size, etc) and then bulk load them into HBase programmatically? Do I need to use the ProtobufUtil.bulkLoadHFile or SecureBulkLoadClient, right? Best, Flavio
