本文整理汇总了Java中org.apache.hadoop.hive.ql.io.orc.OrcInputFormat类的典型用法代码示例。如果您正苦于以下问题:Java OrcInputFormat类的具体用法?Java OrcInputFormat怎么用?Java OrcInputFormat使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OrcInputFormat类属于org.apache.hadoop.hive.ql.io.orc包,在下文中一共展示了OrcInputFormat类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: TestPreparer
import org.apache.hadoop.hive.ql.io.orc.OrcInputFormat; //导入依赖的package包/类
public TestPreparer(String tempFilePath)
throws Exception
{
OrcSerde serde = new OrcSerde();
schema = new Properties();
schema.setProperty("columns",
testColumns.stream()
.map(TestColumn::getName)
.collect(Collectors.joining(",")));
schema.setProperty("columns.types",
testColumns.stream()
.map(TestColumn::getType)
.collect(Collectors.joining(",")));
schema.setProperty(FILE_INPUT_FORMAT, OrcInputFormat.class.getName());
schema.setProperty(SERIALIZATION_LIB, serde.getClass().getName());
partitionKeys = testColumns.stream()
.filter(TestColumn::isPartitionKey)
.map(input -> new HivePartitionKey(input.getName(), HiveType.valueOf(input.getObjectInspector().getTypeName()), (String) input.getWriteValue()))
.collect(toList());
ImmutableList.Builder<HiveColumnHandle> columnsBuilder = ImmutableList.builder();
ImmutableList.Builder<Type> typesBuilder = ImmutableList.builder();
int nextHiveColumnIndex = 0;
for (int i = 0; i < testColumns.size(); i++) {
TestColumn testColumn = testColumns.get(i);
int columnIndex = testColumn.isPartitionKey() ? -1 : nextHiveColumnIndex++;
ObjectInspector inspector = testColumn.getObjectInspector();
HiveType hiveType = HiveType.valueOf(inspector.getTypeName());
Type type = hiveType.getType(TYPE_MANAGER);
columnsBuilder.add(new HiveColumnHandle("client_id", testColumn.getName(), hiveType, type.getTypeSignature(), columnIndex, testColumn.isPartitionKey()));
typesBuilder.add(type);
}
columns = columnsBuilder.build();
types = typesBuilder.build();
fileSplit = createTestFile(tempFilePath, new OrcOutputFormat(), serde, null, testColumns, NUM_ROWS);
}
开发者ID:y-lan,项目名称:presto,代码行数:41,代码来源:TestOrcPageSourceMemoryTracking.java
注:本文中的org.apache.hadoop.hive.ql.io.orc.OrcInputFormat类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论