|
@@ -81,12 +81,11 @@ public class ContainerMapping implements Mapping {
|
|
|
this.cacheSize = cacheSizeMB;
|
|
|
|
|
|
File metaDir = OzoneUtils.getScmMetadirPath(conf);
|
|
|
- String scmMetaDataDir = metaDir.getParent();
|
|
|
Options options = new Options();
|
|
|
options.cacheSize(this.cacheSize * OzoneConsts.MB);
|
|
|
|
|
|
// Write the container name to pipeline mapping.
|
|
|
- File containerDBPath = new File(scmMetaDataDir, CONTAINER_DB);
|
|
|
+ File containerDBPath = new File(metaDir, CONTAINER_DB);
|
|
|
containerStore = new LevelDBStore(containerDBPath, options);
|
|
|
|
|
|
this.lock = new ReentrantLock();
|