HBASE-11982 Bootstraping hbase:meta table creates a WAL file in region dir (Enis)
This commit is contained in:
parent
ec69c8833e
commit
9c77c55c47
|
@ -496,7 +496,7 @@ public class MasterFileSystem {
|
||||||
HRegionInfo metaHRI = new HRegionInfo(HRegionInfo.FIRST_META_REGIONINFO);
|
HRegionInfo metaHRI = new HRegionInfo(HRegionInfo.FIRST_META_REGIONINFO);
|
||||||
setInfoFamilyCachingForMeta(false);
|
setInfoFamilyCachingForMeta(false);
|
||||||
HRegion meta = HRegion.createHRegion(metaHRI, rd, c,
|
HRegion meta = HRegion.createHRegion(metaHRI, rd, c,
|
||||||
HTableDescriptor.META_TABLEDESC);
|
HTableDescriptor.META_TABLEDESC, null, true, true);
|
||||||
setInfoFamilyCachingForMeta(true);
|
setInfoFamilyCachingForMeta(true);
|
||||||
HRegion.closeHRegion(meta);
|
HRegion.closeHRegion(meta);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
Loading…
Reference in New Issue