HBASE-25363 Improve performance of HFileLinkCleaner by using ReadWriteLock instead of synchronize

This commit is contained in:
haxiaolin 2020-12-08 17:21:16 +08:00 committed by niuyulin
parent 5016219d3c
commit 56dd3eba81
1 changed files with 56 additions and 41 deletions

View File

@ -18,6 +18,7 @@
package org.apache.hadoop.hbase.master.cleaner; package org.apache.hadoop.hbase.master.cleaner;
import java.io.IOException; import java.io.IOException;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.FileSystem;
@ -44,63 +45,75 @@ public class HFileLinkCleaner extends BaseHFileCleanerDelegate {
private static final Logger LOG = LoggerFactory.getLogger(HFileLinkCleaner.class); private static final Logger LOG = LoggerFactory.getLogger(HFileLinkCleaner.class);
private FileSystem fs = null; private FileSystem fs = null;
private ReentrantReadWriteLock lock = new ReentrantReadWriteLock();
@Override @Override
public synchronized boolean isFileDeletable(FileStatus fStat) { public boolean isFileDeletable(FileStatus fStat) {
if (this.fs == null) return false; lock.readLock().lock();
Path filePath = fStat.getPath(); try {
// HFile Link is always deletable if (this.fs == null) {
if (HFileLink.isHFileLink(filePath)) return true; return false;
}
Path filePath = fStat.getPath();
// HFile Link is always deletable
if (HFileLink.isHFileLink(filePath)) {
return true;
}
// If the file is inside a link references directory, means that it is a back ref link. // If the file is inside a link references directory, means that it is a back ref link.
// The back ref can be deleted only if the referenced file doesn't exists. // The back ref can be deleted only if the referenced file doesn't exists.
Path parentDir = filePath.getParent(); Path parentDir = filePath.getParent();
if (HFileLink.isBackReferencesDir(parentDir)) { if (HFileLink.isBackReferencesDir(parentDir)) {
Path hfilePath = null; Path hfilePath = null;
try {
// Also check if the HFile is in the HBASE_TEMP_DIRECTORY; this is where the referenced
// file gets created when cloning a snapshot.
hfilePath = HFileLink.getHFileFromBackReference(new Path(
CommonFSUtils.getRootDir(getConf()), HConstants.HBASE_TEMP_DIRECTORY), filePath);
if (fs.exists(hfilePath)) {
return false;
}
// check whether the HFileLink still exists in mob dir.
hfilePath = HFileLink.getHFileFromBackReference(MobUtils.getMobHome(getConf()), filePath);
if (fs.exists(hfilePath)) {
return false;
}
hfilePath = HFileLink.getHFileFromBackReference(CommonFSUtils.getRootDir(getConf()),
filePath);
return !fs.exists(hfilePath);
} catch (IOException e) {
if (LOG.isDebugEnabled()) {
LOG.debug("Couldn't verify if the referenced file still exists, keep it just in case: "
+ hfilePath);
}
return false;
}
}
// HFile is deletable only if has no links
Path backRefDir = null;
try { try {
// Also check if the HFile is in the HBASE_TEMP_DIRECTORY; this is where the referenced backRefDir = HFileLink.getBackReferencesDir(parentDir, filePath.getName());
// file gets created when cloning a snapshot. return CommonFSUtils.listStatus(fs, backRefDir) == null;
hfilePath = HFileLink.getHFileFromBackReference(
new Path(CommonFSUtils.getRootDir(getConf()), HConstants.HBASE_TEMP_DIRECTORY), filePath);
if (fs.exists(hfilePath)) {
return false;
}
// check whether the HFileLink still exists in mob dir.
hfilePath = HFileLink.getHFileFromBackReference(MobUtils.getMobHome(getConf()), filePath);
if (fs.exists(hfilePath)) {
return false;
}
hfilePath =
HFileLink.getHFileFromBackReference(CommonFSUtils.getRootDir(getConf()), filePath);
return !fs.exists(hfilePath);
} catch (IOException e) { } catch (IOException e) {
if (LOG.isDebugEnabled()) { if (LOG.isDebugEnabled()) {
LOG.debug("Couldn't verify if the referenced file still exists, keep it just in case: " + LOG.debug(
hfilePath); "Couldn't get the references, not deleting file, just in case. filePath=" +
filePath + ", backRefDir=" + backRefDir);
} }
return false; return false;
} }
} } finally {
lock.readLock().unlock();
// HFile is deletable only if has no links
Path backRefDir = null;
try {
backRefDir = HFileLink.getBackReferencesDir(parentDir, filePath.getName());
return CommonFSUtils.listStatus(fs, backRefDir) == null;
} catch (IOException e) {
if (LOG.isDebugEnabled()) {
LOG.debug("Couldn't get the references, not deleting file, just in case. filePath="
+ filePath + ", backRefDir=" + backRefDir);
}
return false;
} }
} }
@Override @Override
public synchronized void setConf(Configuration conf) { public void setConf(Configuration conf) {
super.setConf(conf); super.setConf(conf);
// setup filesystem // setup filesystem
lock.writeLock().lock();
try { try {
this.fs = FileSystem.get(this.getConf()); this.fs = FileSystem.get(this.getConf());
} catch (IOException e) { } catch (IOException e) {
@ -109,6 +122,8 @@ public class HFileLinkCleaner extends BaseHFileCleanerDelegate {
+ FileSystem.FS_DEFAULT_NAME_KEY + "=" + FileSystem.FS_DEFAULT_NAME_KEY + "="
+ getConf().get(FileSystem.FS_DEFAULT_NAME_KEY, FileSystem.DEFAULT_FS)); + getConf().get(FileSystem.FS_DEFAULT_NAME_KEY, FileSystem.DEFAULT_FS));
} }
} finally {
lock.writeLock().unlock();
} }
} }
} }