blob: 7b3fa0ee7bc1780c7948c57a720e7b793cc57cf7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.parquet.cascading;
import java.util.Map;
import java.util.StringJoiner;
import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.mapred.JobConf;
import cascading.tuple.Tuple;
import cascading.tuple.Fields;
import cascading.flow.hadoop.util.HadoopUtil;
import org.apache.parquet.hadoop.api.ReadSupport;
import org.apache.parquet.io.api.RecordMaterializer;
import org.apache.parquet.schema.MessageType;
import org.apache.parquet.cascading.convert.TupleRecordMaterializer;
public class TupleReadSupport extends ReadSupport<Tuple> {
static final String PARQUET_CASCADING_REQUESTED_FIELDS = "parquet.cascading.requested.fields";
static protected Fields getRequestedFields(Configuration configuration) {
String fieldsString = configuration.get(PARQUET_CASCADING_REQUESTED_FIELDS);
if(fieldsString == null)
return Fields.ALL;
String[] parts = fieldsString.split(":");
if(parts.length == 0)
return Fields.ALL;
else
return new Fields(parts);
}
static protected void setRequestedFields(JobConf configuration, Fields fields) {
StringJoiner joiner = new StringJoiner(":");
fields.forEach(f -> joiner.add(f.toString()));
configuration.set(PARQUET_CASCADING_REQUESTED_FIELDS, joiner.toString());
}
@Override
public ReadContext init(Configuration configuration, Map<String, String> keyValueMetaData, MessageType fileSchema) {
Fields requestedFields = getRequestedFields(configuration);
if (requestedFields == null) {
return new ReadContext(fileSchema);
} else {
SchemaIntersection intersection = new SchemaIntersection(fileSchema, requestedFields);
return new ReadContext(intersection.getRequestedSchema());
}
}
@Override
public RecordMaterializer<Tuple> prepareForRead(
Configuration configuration,
Map<String, String> keyValueMetaData,
MessageType fileSchema,
ReadContext readContext) {
MessageType requestedSchema = readContext.getRequestedSchema();
return new TupleRecordMaterializer(requestedSchema);
}
}