I am using hadoop Map job to import data into hbase from DB For there is more than 10M records.It takes more than 10 minutes to finish one map job. So I got "failed to report status for 604 seconds" Error!
I have set in my Map as followed:
cnkiTable.put(put);
if ((++count % 1000)==0) {
context.setStatus((count / len) +" done!");
context.progress();
}
but it seems no use
do I have to implements my on reporter?
anyone can help me ?
