本文整理了Java中org.apache.hadoop.hbase.client.Admin.getTableDescriptorsByTableName()
方法的一些代码示例,展示了Admin.getTableDescriptorsByTableName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Admin.getTableDescriptorsByTableName()
方法的具体详情如下:
包路径:org.apache.hadoop.hbase.client.Admin
类名称:Admin
方法名:getTableDescriptorsByTableName
[英]Get tableDescriptors
[中]获取表格描述符
代码示例来源:origin: apache/hbase
@Override
public void call(Admin admin) throws Exception {
admin.getTableDescriptorsByTableName(new ArrayList<>());
}
@Override
代码示例来源:origin: org.apache.hbase/hbase-server
@Override
public void call(Admin admin) throws Exception {
admin.getTableDescriptorsByTableName(new ArrayList<>());
}
@Override
代码示例来源:origin: GoogleCloudPlatform/cloud-bigtable-client
@Override
protected List<TableName> listTableNamesUsingDescriptors(Admin admin, List<TableName> tableNames) throws IOException {
return toTableNames(admin.getTableDescriptorsByTableName(tableNames));
}
代码示例来源:origin: harbby/presto-connectors
HTableDescriptor[] getHTableDescriptors(List<TableName> tableNames) {
HTableDescriptor[] htd = new HTableDescriptor[0];
Admin admin = null;
try {
LOG.info("getHTableDescriptors == tableNames => " + tableNames);
admin = new HBaseAdmin(getConf());
htd = admin.getTableDescriptorsByTableName(tableNames);
} catch (IOException e) {
LOG.debug("Exception getting table descriptors", e);
} finally {
if (admin != null) {
try {
admin.close();
} catch (IOException e) {
LOG.debug("Exception closing HBaseAdmin", e);
}
}
}
return htd;
}
内容来源于网络,如有侵权,请联系作者删除!