Hi, I'm wondering, what is HBase split policy.
I mean, let's imagine this situation. I have a region full of rows starting from AA to AZ. Thousands of hundreds. I also have few rows from B to DZ. Let's say only one hundred. Region is just above the maxfilesize, so it's fine. No, I add "A" and store a very big row into it. Almost half the size of my maxfilesize value. That mean it's now time to split this row. How will HBase decide where to split it? Is it going to use the lexical order? Which mean it will split somewhere between B and C? If it's done that way, I will have one VERY small region, and one VERY big which will still be over the maxfilesize and will need to be split again, and most probably many times, right? Or will HBase take the middle of the region, look at the closest key, and cut there? Yesterday, for one table, I merged all my regions into a single one. This gave me something like a 10GB region. Since I want to have at least 100 regions for this table, I have setup the maxfilesize to 100MB. I have restarted HBase, and let it worked over night. This morning, I have some very big regions, still over the 100MB, and some very small. And the big regions are at least hundred times bigger than the small one. I just stopped the cluster again to re-merge the regions into a single one and see if I have not done something wrong in the process, but in the meantime, I'm looking for more information about the way HBase is deciding where to cut, and if there is a way to customize that. Thanks, JM PS: Numbers are out of my head. I don't really recall how big the last region was yesterday. I will take more notes when the current MassMerge will be done.
