Example #1
0
 /** Puts the specified HRegionInfo into META. */
 public static void fixMetaHoleOnline(Configuration conf, HRegionInfo hri) throws IOException {
   HTable meta = new HTable(conf, TableName.META_TABLE_NAME);
   MetaEditor.addRegionToMeta(meta, hri);
   meta.close();
 }