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

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

本文整理了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

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

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

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

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

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

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

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

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

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

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

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

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

  1. inputFormatClass = table.getInputFormatClass();
  2. lbCtx = constructListBucketingCtx(table.getSkewedColNames(), table.getSkewedColValues(),
  3. table.getSkewedColValueLocationMaps(), table.isStoredAsSubDirectories());
  4. isListBucketed = table.isStoredAsSubDirectories();
  5. listBucketColNames = table.getSkewedColNames();

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

  1. inputFormatClass = table.getInputFormatClass();
  2. lbCtx = constructListBucketingCtx(table.getSkewedColNames(), table.getSkewedColValues(),
  3. table.getSkewedColValueLocationMaps(), table.isStoredAsSubDirectories(), conf);
  4. isListBucketed = table.isStoredAsSubDirectories();
  5. listBucketColNames = table.getSkewedColNames();

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

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

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

  1. dest_tab.isStoredAsSubDirectories(), conf);

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

  1. destinationTable.isStoredAsSubDirectories());

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

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

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

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

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

  1. inputFormatClass = table.getInputFormatClass();
  2. lbCtx = constructListBucketingCtx(table.getSkewedColNames(), table.getSkewedColValues(),
  3. table.getSkewedColValueLocationMaps(), table.isStoredAsSubDirectories(), conf);
  4. isListBucketed = table.isStoredAsSubDirectories();
  5. listBucketColNames = table.getSkewedColNames();

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

  1. dest_tab.isStoredAsSubDirectories(), conf);

相关文章

Table类方法