org.apache.orc.impl.writer.MapTreeWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache Show documentation
Show all versions of hive-apache Show documentation
Shaded version of Apache Hive for Presto
The newest version!
/*
* 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.orc.impl.writer;
import org.apache.hadoop.hive.ql.exec.vector.ColumnVector;
import org.apache.hadoop.hive.ql.exec.vector.MapColumnVector;
import org.apache.orc.OrcProto;
import org.apache.orc.TypeDescription;
import org.apache.orc.impl.IntegerWriter;
import org.apache.orc.impl.PositionRecorder;
import java.io.IOException;
import java.util.List;
public class MapTreeWriter extends TreeWriterBase {
private final IntegerWriter lengths;
private final boolean isDirectV2;
private final TreeWriter keyWriter;
private final TreeWriter valueWriter;
MapTreeWriter(int columnId,
TypeDescription schema,
WriterContext writer,
boolean nullable) throws IOException {
super(columnId, schema, writer, nullable);
this.isDirectV2 = isNewWriteFormat(writer);
List children = schema.getChildren();
keyWriter = Factory.create(children.get(0), writer, true);
valueWriter = Factory.create(children.get(1), writer, true);
lengths = createIntegerWriter(writer.createStream(columnId,
OrcProto.Stream.Kind.LENGTH), false, isDirectV2, writer);
if (rowIndexPosition != null) {
recordPosition(rowIndexPosition);
}
}
@Override
OrcProto.ColumnEncoding.Builder getEncoding() {
OrcProto.ColumnEncoding.Builder result = super.getEncoding();
if (isDirectV2) {
result.setKind(OrcProto.ColumnEncoding.Kind.DIRECT_V2);
} else {
result.setKind(OrcProto.ColumnEncoding.Kind.DIRECT);
}
return result;
}
@Override
public void createRowIndexEntry() throws IOException {
super.createRowIndexEntry();
keyWriter.createRowIndexEntry();
valueWriter.createRowIndexEntry();
}
@Override
public void writeBatch(ColumnVector vector, int offset,
int length) throws IOException {
super.writeBatch(vector, offset, length);
MapColumnVector vec = (MapColumnVector) vector;
if (vector.isRepeating) {
if (vector.noNulls || !vector.isNull[0]) {
int childOffset = (int) vec.offsets[0];
int childLength = (int) vec.lengths[0];
for (int i = 0; i < length; ++i) {
lengths.write(childLength);
keyWriter.writeBatch(vec.keys, childOffset, childLength);
valueWriter.writeBatch(vec.values, childOffset, childLength);
}
if (createBloomFilter) {
if (bloomFilter != null) {
bloomFilter.addLong(childLength);
}
bloomFilterUtf8.addLong(childLength);
}
}
} else {
// write the elements in runs
int currentOffset = 0;
int currentLength = 0;
for (int i = 0; i < length; ++i) {
if (!vec.isNull[i + offset]) {
int nextLength = (int) vec.lengths[offset + i];
int nextOffset = (int) vec.offsets[offset + i];
lengths.write(nextLength);
if (currentLength == 0) {
currentOffset = nextOffset;
currentLength = nextLength;
} else if (currentOffset + currentLength != nextOffset) {
keyWriter.writeBatch(vec.keys, currentOffset,
currentLength);
valueWriter.writeBatch(vec.values, currentOffset,
currentLength);
currentOffset = nextOffset;
currentLength = nextLength;
} else {
currentLength += nextLength;
}
if (createBloomFilter) {
if (bloomFilter != null) {
bloomFilter.addLong(nextLength);
}
bloomFilterUtf8.addLong(nextLength);
}
}
}
if (currentLength != 0) {
keyWriter.writeBatch(vec.keys, currentOffset,
currentLength);
valueWriter.writeBatch(vec.values, currentOffset,
currentLength);
}
}
}
@Override
public void writeStripe(OrcProto.StripeFooter.Builder builder,
OrcProto.StripeStatistics.Builder stats,
int requiredIndexEntries) throws IOException {
super.writeStripe(builder, stats, requiredIndexEntries);
keyWriter.writeStripe(builder, stats, requiredIndexEntries);
valueWriter.writeStripe(builder, stats, requiredIndexEntries);
if (rowIndexPosition != null) {
recordPosition(rowIndexPosition);
}
}
@Override
void recordPosition(PositionRecorder recorder) throws IOException {
super.recordPosition(recorder);
lengths.getPosition(recorder);
}
@Override
public void updateFileStatistics(OrcProto.StripeStatistics stats) {
super.updateFileStatistics(stats);
keyWriter.updateFileStatistics(stats);
valueWriter.updateFileStatistics(stats);
}
@Override
public long estimateMemory() {
return super.estimateMemory() + lengths.estimateMemory() +
keyWriter.estimateMemory() + valueWriter.estimateMemory();
}
@Override
public long getRawDataSize() {
return keyWriter.getRawDataSize() + valueWriter.getRawDataSize();
}
@Override
public void writeFileStatistics(OrcProto.Footer.Builder footer) {
super.writeFileStatistics(footer);
keyWriter.writeFileStatistics(footer);
valueWriter.writeFileStatistics(footer);
}
@Override
public void flushStreams() throws IOException {
super.flushStreams();
lengths.flush();
keyWriter.flushStreams();
valueWriter.flushStreams();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy