本文整理汇总了Java中org.apache.hadoop.hbase.util.FSUtils.getLocalTableDirs方法的典型用法代码示例。如果您正苦于以下问题:Java FSUtils.getLocalTableDirs方法的具体用法?Java FSUtils.getLocalTableDirs怎么用?Java FSUtils.getLocalTableDirs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.hbase.util.FSUtils
的用法示例。
在下文中一共展示了FSUtils.getLocalTableDirs方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: migrateTables
import org.apache.hadoop.hbase.util.FSUtils; //导入方法依赖的package包/类
/**
* Migrate all tables into respective namespaces, either default or system. We put them into
* a temporary location, '.data', in case a user table is name 'data'. In a later method we will
* move stuff from .data to data.
* @throws IOException
*/
public void migrateTables() throws IOException {
List<String> sysTables = Lists.newArrayList("-ROOT-",".META.", ".META");
// Migrate tables including archive and tmp
for (Path baseDir: baseDirs) {
if (!fs.exists(baseDir)) continue;
List<Path> oldTableDirs = FSUtils.getLocalTableDirs(fs, baseDir);
for (Path oldTableDir: oldTableDirs) {
if (NON_USER_TABLE_DIRS.contains(oldTableDir.getName())) continue;
if (sysTables.contains(oldTableDir.getName())) continue;
// Make the new directory under the ns to which we will move the table.
Path nsDir = new Path(this.defNsDir,
TableName.valueOf(oldTableDir.getName()).getQualifierAsString());
LOG.info("Moving " + oldTableDir + " to " + nsDir);
if (!fs.exists(nsDir.getParent())) {
if (!fs.mkdirs(nsDir.getParent())) {
throw new IOException("Failed to create namespace dir "+nsDir.getParent());
}
}
if (sysTables.indexOf(oldTableDir.getName()) < 0) {
LOG.info("Migrating table " + oldTableDir.getName() + " to " + nsDir);
if (!fs.rename(oldTableDir, nsDir)) {
throw new IOException("Failed to move "+oldTableDir+" to namespace dir "+nsDir);
}
}
}
}
}