org.apache.hadoop.hbase.regionserver.Store.assertBulkLoadHFileOk()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(98)

本文整理了Java中org.apache.hadoop.hbase.regionserver.Store.assertBulkLoadHFileOk()方法的一些代码示例,展示了Store.assertBulkLoadHFileOk()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Store.assertBulkLoadHFileOk()方法的具体详情如下:
包路径:org.apache.hadoop.hbase.regionserver.Store
类名称:Store
方法名:assertBulkLoadHFileOk

Store.assertBulkLoadHFileOk介绍

[英]This throws a WrongRegionException if the HFile does not fit in this region, or an InvalidHFileException if the HFile is not valid.
[中]如果HFile不适合此区域,则引发错误的RegionException;如果HFile无效,则引发InvalidHFileException。

代码示例

代码示例来源:origin: co.cask.hbase/hbase

} else {
 try {
  store.assertBulkLoadHFileOk(new Path(path));
 } catch (WrongRegionException wre) {

代码示例来源:origin: harbby/presto-connectors

} else {
 try {
  store.assertBulkLoadHFileOk(new Path(path));
 } catch (WrongRegionException wre) {

相关文章

微信公众号

最新文章

更多