org.apache.hadoop.hive.ql.metadata.Table.isStoredAsSubDirectories()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.0k)|赞(0)|评价(0)|浏览(100)

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

Table.isStoredAsSubDirectories介绍

暂无

代码示例

代码示例来源:origin: apache/hive

private void checkMmLb(Table tbl) throws HiveException {
 if (!tbl.isStoredAsSubDirectories()) {
  return;
 }
 // TODO [MM gap?]: by design; no-one seems to use LB tables. They will work, but not convert.
 //                 It's possible to work around this by re-creating and re-inserting the table.
 throw new HiveException("Converting list bucketed tables stored as subdirectories "
   + " to MM is not supported. Please re-create a table in the desired format.");
}

代码示例来源:origin: apache/hive

if (tbl.isStoredAsSubDirectories()) {
 tbl_skewedinfo.append("\n  STORED AS DIRECTORIES");

代码示例来源:origin: apache/drill

if (tbl.isStoredAsSubDirectories()) {
 tbl_skewedinfo.append("\n  STORED AS DIRECTORIES");

代码示例来源:origin: apache/drill

if(ts.tableHandle.isStoredAsSubDirectories()) {
 throw new SemanticException(ErrorMsg.LOAD_INTO_STORED_AS_DIR.getMsg());

代码示例来源:origin: apache/drill

tblObj.getSkewedColValueLocationMaps(), tblObj.isStoredAsSubDirectories(), conf);

代码示例来源:origin: apache/hive

tblObj.getSkewedColValueLocationMaps(), tblObj.isStoredAsSubDirectories());

代码示例来源:origin: apache/hive

inputFormatClass = table.getInputFormatClass();
lbCtx = constructListBucketingCtx(table.getSkewedColNames(), table.getSkewedColValues(),
  table.getSkewedColValueLocationMaps(), table.isStoredAsSubDirectories());
isListBucketed = table.isStoredAsSubDirectories();
listBucketColNames = table.getSkewedColNames();

代码示例来源:origin: apache/drill

inputFormatClass = table.getInputFormatClass();
lbCtx = constructListBucketingCtx(table.getSkewedColNames(), table.getSkewedColValues(),
  table.getSkewedColValueLocationMaps(), table.isStoredAsSubDirectories(), conf);
isListBucketed = table.isStoredAsSubDirectories();
listBucketColNames = table.getSkewedColNames();

代码示例来源:origin: apache/hive

if(ts.tableHandle.isStoredAsSubDirectories()) {
 throw new SemanticException(ErrorMsg.LOAD_INTO_STORED_AS_DIR.getMsg());

代码示例来源:origin: apache/drill

dest_tab.isStoredAsSubDirectories(), conf);

代码示例来源:origin: apache/hive

destinationTable.isStoredAsSubDirectories());

代码示例来源:origin: com.facebook.presto.hive/hive-apache

tblObj.getSkewedColValueLocationMaps(), tblObj.isStoredAsSubDirectories(), conf);

代码示例来源:origin: com.facebook.presto.hive/hive-apache

if(ts.tableHandle.isStoredAsSubDirectories()) {
 throw new SemanticException(ErrorMsg.LOAD_INTO_STORED_AS_DIR.getMsg());

代码示例来源:origin: com.facebook.presto.hive/hive-apache

inputFormatClass = table.getInputFormatClass();
lbCtx = constructListBucketingCtx(table.getSkewedColNames(), table.getSkewedColValues(),
  table.getSkewedColValueLocationMaps(), table.isStoredAsSubDirectories(), conf);
isListBucketed = table.isStoredAsSubDirectories();
listBucketColNames = table.getSkewedColNames();

代码示例来源:origin: com.facebook.presto.hive/hive-apache

dest_tab.isStoredAsSubDirectories(), conf);

相关文章

微信公众号

最新文章

更多

Table类方法