Hi,
We are going to use HBase to store our large volume of pretty structured data. Every day, we will have about 24 new roles added to one table. After three months, there will be about 4,000,000,000 new rows in the table. By the way, in the table, each row will have about 8 column families and each column family will have 2-3 columns. But each cell just contains 20 bytes data. So I have following questions: 1. How many rows can HBase supports in one table? 2. After one year, there will be about 16,000,000,000 rows in the table. If the row numbers are too large, is it helpful to solve the problem by splitting the original table into several tables? How to split one table into several tables? 3. Any other suggestions?
