-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avro: Add writers for the internal object model (#11919)
- Loading branch information
1 parent
97b5b39
commit a100e6a
Showing
10 changed files
with
570 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
core/src/main/java/org/apache/iceberg/avro/BaseWriteBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
* 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.iceberg.avro; | ||
|
||
import java.util.List; | ||
import org.apache.avro.LogicalType; | ||
import org.apache.avro.LogicalTypes; | ||
import org.apache.avro.Schema; | ||
import org.apache.iceberg.relocated.com.google.common.base.Preconditions; | ||
|
||
abstract class BaseWriteBuilder extends AvroSchemaVisitor<ValueWriter<?>> { | ||
|
||
protected abstract ValueWriter<?> createRecordWriter(List<ValueWriter<?>> fields); | ||
|
||
protected abstract ValueWriter<?> fixedWriter(int length); | ||
|
||
@Override | ||
public ValueWriter<?> record(Schema record, List<String> names, List<ValueWriter<?>> fields) { | ||
return createRecordWriter(fields); | ||
} | ||
|
||
@Override | ||
public ValueWriter<?> union(Schema union, List<ValueWriter<?>> options) { | ||
Preconditions.checkArgument( | ||
options.size() == 2, "Cannot create writer for non-option union: %s", union); | ||
if (union.getTypes().get(0).getType() == Schema.Type.NULL) { | ||
return ValueWriters.option(0, options.get(1)); | ||
} else if (union.getTypes().get(1).getType() == Schema.Type.NULL) { | ||
return ValueWriters.option(1, options.get(0)); | ||
} else { | ||
throw new IllegalArgumentException( | ||
String.format("Cannot create writer for non-option union: %s", union)); | ||
} | ||
} | ||
|
||
@Override | ||
public ValueWriter<?> array(Schema array, ValueWriter<?> elementWriter) { | ||
if (array.getLogicalType() instanceof LogicalMap) { | ||
ValueWriters.StructWriter<?> keyValueWriter = (ValueWriters.StructWriter<?>) elementWriter; | ||
return ValueWriters.arrayMap(keyValueWriter.writer(0), keyValueWriter.writer(1)); | ||
} | ||
|
||
return ValueWriters.array(elementWriter); | ||
} | ||
|
||
@Override | ||
public ValueWriter<?> map(Schema map, ValueWriter<?> valueWriter) { | ||
return ValueWriters.map(ValueWriters.strings(), valueWriter); | ||
} | ||
|
||
@Override | ||
public ValueWriter<?> primitive(Schema primitive) { | ||
LogicalType logicalType = primitive.getLogicalType(); | ||
if (logicalType != null) { | ||
switch (logicalType.getName()) { | ||
case "date": | ||
return ValueWriters.ints(); | ||
|
||
case "time-micros": | ||
return ValueWriters.longs(); | ||
|
||
case "timestamp-micros": | ||
return ValueWriters.longs(); | ||
|
||
case "decimal": | ||
LogicalTypes.Decimal decimal = (LogicalTypes.Decimal) logicalType; | ||
return ValueWriters.decimal(decimal.getPrecision(), decimal.getScale()); | ||
|
||
case "uuid": | ||
return ValueWriters.uuids(); | ||
|
||
default: | ||
throw new IllegalArgumentException("Unsupported logical type: " + logicalType); | ||
} | ||
} | ||
|
||
switch (primitive.getType()) { | ||
case NULL: | ||
return ValueWriters.nulls(); | ||
case BOOLEAN: | ||
return ValueWriters.booleans(); | ||
case INT: | ||
return ValueWriters.ints(); | ||
case LONG: | ||
return ValueWriters.longs(); | ||
case FLOAT: | ||
return ValueWriters.floats(); | ||
case DOUBLE: | ||
return ValueWriters.doubles(); | ||
case STRING: | ||
return ValueWriters.strings(); | ||
case FIXED: | ||
return fixedWriter(primitive.getFixedSize()); | ||
case BYTES: | ||
return ValueWriters.byteBuffers(); | ||
default: | ||
throw new IllegalArgumentException("Unsupported type: " + primitive); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
core/src/main/java/org/apache/iceberg/avro/InternalWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* 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.iceberg.avro; | ||
|
||
import java.io.IOException; | ||
import java.util.List; | ||
import java.util.stream.Stream; | ||
import org.apache.avro.Schema; | ||
import org.apache.avro.io.Encoder; | ||
import org.apache.iceberg.FieldMetrics; | ||
import org.apache.iceberg.types.Type; | ||
|
||
/** | ||
* A Writer that consumes Iceberg's internal in-memory object model. | ||
* | ||
* <p>Iceberg's internal in-memory object model produces the types defined in {@link | ||
* Type.TypeID#javaClass()}. | ||
*/ | ||
public class InternalWriter<T> implements MetricsAwareDatumWriter<T> { | ||
private ValueWriter<T> writer = null; | ||
|
||
public static <D> InternalWriter<D> create(Schema schema) { | ||
return new InternalWriter<>(schema); | ||
} | ||
|
||
InternalWriter(Schema schema) { | ||
setSchema(schema); | ||
} | ||
|
||
@Override | ||
@SuppressWarnings("unchecked") | ||
public void setSchema(Schema schema) { | ||
this.writer = (ValueWriter<T>) AvroSchemaVisitor.visit(schema, new WriteBuilder()); | ||
} | ||
|
||
@Override | ||
public void write(T datum, Encoder out) throws IOException { | ||
writer.write(datum, out); | ||
} | ||
|
||
@Override | ||
public Stream<FieldMetrics> metrics() { | ||
return writer.metrics(); | ||
} | ||
|
||
private static class WriteBuilder extends BaseWriteBuilder { | ||
|
||
@Override | ||
protected ValueWriter<?> createRecordWriter(List<ValueWriter<?>> fields) { | ||
return ValueWriters.struct(fields); | ||
} | ||
|
||
@Override | ||
protected ValueWriter<?> fixedWriter(int length) { | ||
return ValueWriters.fixedBuffers(length); | ||
} | ||
} | ||
} |
Oops, something went wrong.