Hi, I want to develop a custom SplitPolicy for my hbase table. But when I use my policy to create a new table, I get this exception "Unable to load configured region split policy...".
I put the MyPolicy.jar in the lib directory of HBase and use following code to assign it to the table. HTableDescriptor tblDes = new HTableDescriptor(tblName); tblDes.setValue(HTableDescriptor.SPLIT_POLICY, DSTSplitPolicy.class.getName()); Does anyone have any suggestion? Thanks, Xiaofeng
