there are HBase on five servers with one Table that contains one column Family and I should do some map
tasks on it per each key and save the result.
the main question is:
to keep data locality which one is better: create new Column Family on the existence Table or create new Table?
and the Next question:
HBase Documentation suggests keeping lower than three Column Family, and as I told I have more than ten map
tasks and would to keep each result in new Column Family.what shall I do? because each map
tasks are different from the other one. the locality preserving and search cost are important.