org.apache.hadoop.hive.ql.io.orc.Reader.getSerializedFileFooter()方法的使用及代码示例

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

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

Reader.getSerializedFileFooter介绍

暂无

代码示例

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

public ByteBuffer getMetadataToCache(
   FileSystem fs, Path path, ByteBuffer[] addedVals) throws IOException {
  // For now, there's nothing special to return in addedVals. Just return the footer.
  return OrcFile.createReader(fs, path).getSerializedFileFooter();
 }
}

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

public ByteBuffer getMetadataToCache(
   FileSystem fs, Path path, ByteBuffer[] addedVals) throws IOException {
  // For now, there's nothing special to return in addedVals. Just return the footer.
  return OrcFile.createReader(fs, path).getSerializedFileFooter();
 }
}

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

.filesystem(fs)
    .maxLength(file.getLen()));
orcTail = new OrcTail(orcReader.getFileTail(), orcReader.getSerializedFileFooter(),
  file.getModificationTime());
if (context.cacheStripeDetails) {

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

.filesystem(fs)
    .maxLength(AcidUtils.getLogicalLength(fs, file)));
orcTail = new OrcTail(orcReader.getFileTail(), orcReader.getSerializedFileFooter(),
  file.getModificationTime());
if (context.cacheStripeDetails) {

相关文章