Uses of Class
org.apache.avro.Schema
Package
Description
Avro kernel classes.
Interfaces and base classes shared by generic, specific and reflect.
A container file for Avro data.
A generic representation for Avro data.
Utilities for Encoding and Decoding Avro data.
Implementation of Avro schemas as LL(1) grammars.
Support for inter-process calls.
Run Hadoop MapReduce jobs over
Avro data, with map and reduce functions written in Java.
Run Hadoop MapReduce jobs over
Avro data, with map and reduce functions run in a sub-process.
Interfaces and base classes for AvroPath.
Protocol Buffer
compatibility.
Use Java reflection to generate schemas and protocols for existing
classes.
Generate specific Java classes for schemas and protocols.
Thrift compatibility.
Common utility classes.
Read and write Avro data
in Trevni column files.
-
Uses of Schema in org.apache.avro
Modifier and TypeFieldDescriptionfinal Schema
Resolver.Action.reader
static final Schema
Protocol.SYSTEM_ERROR
An error that can be thrown by any message.static final Schema
Protocol.SYSTEM_ERRORS
Union type for generating system errors.final Schema
Resolver.Action.writer
Modifier and TypeMethodDescriptionLogicalType.addToSchema
(Schema schema) Add this logical type to the given Schema.LogicalTypes.Decimal.addToSchema
(Schema schema) static Schema
Schema.applyAliases
(Schema writer, Schema reader) Rewrite a writer's schema using the aliases from a reader's schema.static Schema
Schema.create
(Schema.Type type) Create a schema for a primitive type.static Schema
Schema.createArray
(Schema elementType) Create an array schema.static Schema
Create an enum schema.static Schema
Schema.createEnum
(String name, String doc, String namespace, List<String> values, String enumDefault) Create an enum schema.static Schema
Schema.createFixed
(String name, String doc, String space, int size) Create a fixed schema.static Schema
Create a map schema.static Schema
Schema.createRecord
(String name, String doc, String namespace, boolean isError) Create a named record schema.static Schema
Schema.createRecord
(String name, String doc, String namespace, boolean isError, List<Schema.Field> fields) Create a named record schema with fields already set.static Schema
Schema.createRecord
(List<Schema.Field> fields) Deprecated.static Schema
Schema.createUnion
(List<Schema> types) Create a union schema.static Schema
Schema.createUnion
(Schema... types) Create a union schema.Find a schema by name and namespace.Schema.getElementType()
If this is an array, returns its element type.Protocol.Message.getErrors()
Errors that might be thrown.ParseContext.getNamedSchema
(String fullName) Get a schema by name.SchemaCompatibility.SchemaPairCompatibility.getReader()
Gets the reader schema that was validated.SchemaCompatibility.Incompatibility.getReaderFragment()
Returns the fragment of the reader schema that failed compatibility check.Conversion.getRecommendedSchema()
Conversions.BigDecimalConversion.getRecommendedSchema()
Conversions.DecimalConversion.getRecommendedSchema()
Conversions.DurationConversion.getRecommendedSchema()
Conversions.UUIDConversion.getRecommendedSchema()
Protocol.Message.getRequest()
The parameters of this message.Protocol.Message.getResponse()
The returned data.Returns the named type.UnresolvedUnionException.getUnionSchema()
Schema.getValueType()
If this is a map, returns its value type.SchemaCompatibility.SchemaPairCompatibility.getWriter()
Gets the writer schema that was validated.SchemaCompatibility.Incompatibility.getWriterFragment()
Returns the fragment of the writer schema that failed compatibility check.SchemaParser.ParseResult.mainSchema()
The main schema parsed from a file.FormattedSchemaParser.parse
(ParseContext parseContext, URI baseUri, CharSequence formattedSchema) Parse schema definitions from a text based source.JsonSchemaParser.parse
(ParseContext parseContext, URI baseUri, CharSequence formattedSchema) static Schema
Deprecated.useSchemaParser
instead.static Schema
Schema.parse
(InputStream in) Deprecated.useSchemaParser
instead.static Schema
Deprecated.useSchemaParser
instead.static Schema
Deprecated.useSchemaParser
instead.Parse a schema from the provided file.Schema.Parser.parse
(InputStream in) Parse a schema from the provided stream.Parse a schema from the provided string.Read a schema from one or more json stringsstatic Schema
JsonSchemaParser.parseInternal
(String... fragments) Parse a schema written in the internal (JSON) format without any validations.Schema.Parser.parseInternal
(String s) Resolve unresolved references in a schema that was parsed for this context using the types known to this context.SchemaParser.resolve
(SchemaParser.ParseResult result) Deprecated.Schema.Field.schema()
This field'sSchema
.Modifier and TypeMethodDescriptionstatic SchemaBuilder.ArrayBuilder
<Schema> SchemaBuilder.array()
Create a builder for an Avro array This is equivalent to:static SchemaBuilder.TypeBuilder
<Schema> SchemaBuilder.builder()
Create a builder for Avro schemas.static SchemaBuilder.TypeBuilder
<Schema> Create a builder for Avro schemas with a default namespace.static SchemaBuilder.EnumBuilder
<Schema> SchemaBuilder.enumeration
(String name) Create a builder for an Avro enum with the specified name and symbols (values).static SchemaBuilder.FixedBuilder
<Schema> Create a builder for an Avro fixed type with the specified name and size.SchemaParser.getParsedNamedSchemas()
Get all parsed schemata.Protocol.getTypes()
The types of this protocol.Schema.getTypes()
If this is a union, returns its types.Schema.Parser.getTypes()
Returns the set of defined, named types known to this parser.Protocol.getUnresolvedTypes()
Deprecated.can return invalid schemata: do NOT use!static SchemaBuilder.MapBuilder
<Schema> SchemaBuilder.map()
Create a builder for an Avro map This is equivalent to:static SchemaBuilder.BaseTypeBuilder
<Schema> SchemaBuilder.nullable()
Create a builder for a union of a type and null.SchemaParser.ParseResult.parsedNamedSchemas()
The list of named schemata that were parsed.static SchemaBuilder.RecordBuilder
<Schema> Create a builder for an Avro record with the specified name.ParseContext.resolveAllSchemas()
Resolve all (named) schemas that were parsed.ParseContext.typesByName()
Return all known types by their fullname.SchemaBuilder.unionOf()
Create a builder for an Avro union This is equivalent to:Modifier and TypeMethodDescriptionLogicalType.addToSchema
(Schema schema) Add this logical type to the given Schema.LogicalTypes.Decimal.addToSchema
(Schema schema) static Schema
Schema.applyAliases
(Schema writer, Schema reader) Rewrite a writer's schema using the aliases from a reader's schema.SchemaCompatibility.checkReaderWriterCompatibility
(Schema reader, Schema writer) Validates that the provided reader schema can be used to decode avro data written with the provided writer schema.static Object
Conversions.convertToLogicalType
(Object datum, Schema schema, LogicalType type, Conversion<?> conversion) Convert an underlying representation of a logical type (such as a ByteBuffer) to a higher level object (such as a BigDecimal).static <T> Object
Conversions.convertToRawType
(Object datum, Schema schema, LogicalType type, Conversion<T> conversion) Convert a high level representation of a logical type (such as a BigDecimal) to its underlying representation object (such as a ByteBuffer)static Schema
Schema.createArray
(Schema elementType) Create an array schema.static Schema
Create a map schema.Create a one-way message.Protocol.createMessage
(String name, String doc, Map<String, ?> propMap, Schema request, Schema response, Schema errors) Create a two-way message.Protocol.createMessage
(String name, String doc, JsonProperties propMap, Schema request) Create a one-way message.Protocol.createMessage
(String name, String doc, JsonProperties propMap, Schema request, Schema response, Schema errors) Create a two-way message.Protocol.createMessage
(String name, String doc, Schema request) Deprecated.Deprecated.Protocol.createMessage
(Protocol.Message m, Schema request) Create a one-way message using thename
,doc
, andprops
ofm
.Protocol.createMessage
(Protocol.Message m, Schema request, Schema response, Schema errors) Create a two-way message using thename
,doc
, andprops
ofm
.static Schema
Schema.createUnion
(Schema... types) Create a union schema.static String
Format a schema with the specified format.Write the specified schema as a String.Conversion.fromArray
(Collection<?> value, Schema schema, LogicalType type) Conversion.fromBoolean
(Boolean value, Schema schema, LogicalType type) Conversion.fromBytes
(ByteBuffer value, Schema schema, LogicalType type) Conversions.BigDecimalConversion.fromBytes
(ByteBuffer value, Schema schema, LogicalType type) Conversions.DecimalConversion.fromBytes
(ByteBuffer value, Schema schema, LogicalType type) Conversion.fromCharSequence
(CharSequence value, Schema schema, LogicalType type) Conversions.UUIDConversion.fromCharSequence
(CharSequence value, Schema schema, LogicalType type) Conversion.fromDouble
(Double value, Schema schema, LogicalType type) Conversion.fromEnumSymbol
(GenericEnumSymbol<?> value, Schema schema, LogicalType type) Conversion.fromFixed
(GenericFixed value, Schema schema, LogicalType type) Conversions.DecimalConversion.fromFixed
(GenericFixed value, Schema schema, LogicalType type) Conversions.DurationConversion.fromFixed
(GenericFixed value, Schema schema, LogicalType type) Conversions.UUIDConversion.fromFixed
(GenericFixed value, Schema schema, LogicalType type) Conversion.fromFloat
(Float value, Schema schema, LogicalType type) Conversion.fromInt
(Integer value, Schema schema, LogicalType type) Conversion.fromLong
(Long value, Schema schema, LogicalType type) Conversion.fromMap
(Map<?, ?> value, Schema schema, LogicalType type) Conversion.fromRecord
(IndexedRecord value, Schema schema, LogicalType type) static LogicalType
LogicalTypes.fromSchema
(Schema schema) Returns theLogicalType
from the schema, if one is present.LogicalTypes.LogicalTypeFactory.fromSchema
(Schema schema) static LogicalType
LogicalTypes.fromSchemaIgnoreInvalid
(Schema schema) SchemaCompatibility.SchemaCompatibilityResult.incompatible
(SchemaCompatibility.SchemaIncompatibilityType incompatibilityType, Schema readerFragment, Schema writerFragment, String message, List<String> location) Returns a details object representing an incompatible schema pair, including error details.static boolean
Returns true iff w and r are both primitive types and either they are the same type or w is promotable to r.Complete configuration of this array, setting the schema of the array items to the schema provided.static Schema.Field
SchemaCompatibility.lookupWriterField
(Schema writerSchema, Schema.Field readerField) Identifies the writer field that corresponds to the specified reader field.static byte[]
SchemaNormalization.parsingFingerprint
(String fpName, Schema s) ReturnsSchemaNormalization.fingerprint(java.lang.String, byte[])
applied to the parsing canonical form of the supplied schema.static long
SchemaNormalization.parsingFingerprint64
(Schema s) ReturnsSchemaNormalization.fingerprint64(byte[])
applied to the parsing canonical form of the supplied schema.void
Put the schema into this context.Resolve unresolved references in a schema that was parsed for this context using the types known to this context.static Resolver.Action
Resolver.EnumAdjust.resolve
(Schema w, Schema r, GenericData d) If writer and reader don't have same name, aResolver.ErrorAction.ErrorType.NAMES_DONT_MATCH
is returned, otherwise an appropriateResolver.EnumAdjust
is.static Resolver.Action
Resolver.Promote.resolve
(Schema w, Schema r, GenericData d) Return a promotion.static Resolver.Action
Resolver.ReaderUnion.resolve
(Schema w, Schema r, GenericData d, Map<Schema.SeenPair, Resolver.Action> seen) Returns aResolver.ReaderUnion
action for resolving w and r, or anResolver.ErrorAction
if there is no branch in the reader that matches the writer.static Resolver.Action
Uses GenericData.get() for the data param.static Resolver.Action
Resolver.resolve
(Schema writer, Schema reader, GenericData data) Returns aResolver.Action
tree for resolving the writer schema writer and the reader schema reader.static Resolver.Action
Resolver.WriterUnion.resolve
(Schema writeSchema, Schema readSchema, GenericData data, Map<Schema.SeenPair, Resolver.Action> seen) static boolean
SchemaCompatibility.schemaNameEquals
(Schema reader, Schema writer) Tests the equality of two Avro named schemas.Collection
<?> Conversion.toArray
(T value, Schema schema, LogicalType type) Conversion.toBoolean
(T value, Schema schema, LogicalType type) Conversion.toBytes
(T value, Schema schema, LogicalType type) Conversions.BigDecimalConversion.toBytes
(BigDecimal value, Schema schema, LogicalType type) Conversions.DecimalConversion.toBytes
(BigDecimal value, Schema schema, LogicalType type) Conversion.toCharSequence
(T value, Schema schema, LogicalType type) Conversions.UUIDConversion.toCharSequence
(UUID value, Schema schema, LogicalType type) Conversion.toDouble
(T value, Schema schema, LogicalType type) Conversion.toEnumSymbol
(T value, Schema schema, LogicalType type) Conversion.toFixed
(T value, Schema schema, LogicalType type) Conversions.DecimalConversion.toFixed
(BigDecimal value, Schema schema, LogicalType type) Conversions.DurationConversion.toFixed
(TimePeriod value, Schema schema, LogicalType type) Conversions.UUIDConversion.toFixed
(UUID value, Schema schema, LogicalType type) Conversion.toFloat
(T value, Schema schema, LogicalType type) Conversion.toInt
(T value, Schema schema, LogicalType type) Conversion.toLong
(T value, Schema schema, LogicalType type) Map
<?, ?> Conversion.toMap
(T value, Schema schema, LogicalType type) static String
SchemaNormalization.toParsingForm
(Schema s) Returns "Parsing Canonical Form" of a schema as defined by Avro spec.Conversion.toRecord
(T value, Schema schema, LogicalType type) final R
Use the schema provided as the type.Final step in configuring this field, finalizing name, namespace, alias, and order.void
Validate this logical type for the given Schema.void
void
void
void
void
void
void
void
void
void
void
void
void
void
Validates that one schema is compatible with another.void
Validate one schema against others.void
void
Complete configuration of this map, setting the schema of the map values to the schema provided.Modifier and TypeMethodDescriptionAdds the provided types to the set of defined, named types known to this parser.Deprecated.use addTypes(Iterabletypes) static Schema
Schema.createUnion
(List<Schema> types) Create a union schema.void
Protocol.setTypes
(Collection<Schema> newTypes) Set the types of this protocol.Schema.toString
(Collection<Schema> referencedSchemas, boolean pretty) Deprecated.void
Validate one schema against others.void
void
ModifierConstructorDescriptionprotected
Action
(Schema w, Schema r, GenericData data, Resolver.Action.Type t) Container
(Schema w, Schema r, GenericData d, Resolver.Action e) DoNothing
(Schema w, Schema r, GenericData d) ErrorAction
(Schema w, Schema r, GenericData d, Resolver.ErrorAction.ErrorType e) Field
(Schema.Field field, Schema schema) Constructs a new Field instance with the samename
,doc
,defaultValue
, andorder
asfield
has with changing the schema to the specified one.ReaderUnion
(Schema w, Schema r, GenericData d, int firstMatch, Resolver.Action actual) SchemaPairCompatibility
(SchemaCompatibility.SchemaCompatibilityResult result, Schema reader, Schema writer, String description) Constructs a new instance.SchemaValidationException
(Schema reader, Schema writer) SchemaValidationException
(Schema reader, Schema writer, Throwable cause) Skip
(Schema w, GenericData d) UnresolvedUnionException
(Schema unionSchema, Object unresolvedDatum) UnresolvedUnionException
(Schema unionSchema, Schema.Field field, Object unresolvedDatum) -
Uses of Schema in org.apache.avro.compiler.schema
Modifier and TypeMethodDescriptionCloningVisitor.afterVisitNonTerminal
(Schema nt) SchemaVisitor.afterVisitNonTerminal
(Schema nonTerminal) Invoked for schemas with children after its children have been visited.void
static void
Schemas.copyAliases
(Schema from, Schema to) static void
Schemas.copyLogicalTypes
(Schema from, Schema to) static String
Schemas.getJavaClassName
(Schema schema) static boolean
Schemas.hasGeneratedJavaClass
(Schema schema) static <T> T
Schemas.visit
(Schema start, SchemaVisitor<T> visitor) depth first visit.CloningVisitor.visitNonTerminal
(Schema nt) SchemaVisitor.visitNonTerminal
(Schema nonTerminal) Invoked for schema with children before proceeding to visit the children.CloningVisitor.visitTerminal
(Schema terminal) SchemaVisitor.visitTerminal
(Schema terminal) Invoked for schemas that do not have "child" schemas (like string, int ...)ModifierConstructorDescriptionCloningVisitor
(CloningVisitor.PropertyCopier copyProperties, boolean copyDocs, Schema root) CloningVisitor
(Schema root) copy only serialization necessary fields. -
Uses of Schema in org.apache.avro.compiler.specific
Modifier and TypeMethodDescriptionprotected int
SpecificCompiler.calcAllArgConstructorParameterUnits
(Schema record) Returns the number of parameter units required by fields for the AllArgsConstructor.SpecificCompiler.conversionInstance
(Schema schema) static long
SpecificCompiler.fingerprint64
(Schema schema) Utility for use by templates.static String
SpecificCompiler.generateClearMethod
(Schema schema, Schema.Field field) Generates the name of a field "clear" method.static String
SpecificCompiler.generateGetBuilderMethod
(Schema schema, Schema.Field field) Generates the name of a field Builder accessor method.static String
SpecificCompiler.generateGetMethod
(Schema schema, Schema.Field field) Generates the name of a field accessor method.static String
SpecificCompiler.generateGetOptionalMethod
(Schema schema, Schema.Field field) Generates the name of a field accessor method that returns a Java 8 Optional.static String
SpecificCompiler.generateHasBuilderMethod
(Schema schema, Schema.Field field) Generates the name of a field Builder "has" method.static String
SpecificCompiler.generateHasMethod
(Schema schema, Schema.Field field) Generates the name of a field "has" method.static String
SpecificCompiler.generateSetBuilderMethod
(Schema schema, Schema.Field field) Generates the name of a field Builder mutator method.static String
SpecificCompiler.generateSetMethod
(Schema schema, Schema.Field field) Generates the name of a field mutator method.SpecificCompiler.generateSetterCode
(Schema schema, String name, String pname) Utility for template use.int
SpecificCompiler.getNonNullIndex
(Schema s) Utility for template use.SpecificCompiler.getStringType
(Schema s) Utility for template use (and also internal use).SpecificCompiler.getUsedConversionClasses
(Schema schema) SpecificCompiler.getUsedCustomLogicalTypeFactories
(Schema schema) static boolean
SpecificCompiler.hasBuilder
(Schema schema) Utility for use by templates.boolean
SpecificCompiler.hasLogicalTypeField
(Schema schema) boolean
SpecificCompiler.isCustomCodable
(Schema schema) Utility for template use.boolean
SpecificCompiler.isStringable
(Schema schema) Utility for template use.static boolean
SpecificCompiler.isUnboxedJavaTypeNullable
(Schema schema) Tests whether an unboxed Java type can be set to nullUtility for template use.Deprecated.use javaUnbox(Schema, boolean), kept for backward compatibility of custom templatesUtility for template use.protected void
SpecificCompiler.validateRecordForCompilation
(Schema record) ModifierConstructorDescriptionSpecificCompiler
(Iterable<Schema> schemas) SpecificCompiler
(Collection<Schema> schemas) -
Uses of Schema in org.apache.avro.data
Modifier and TypeMethodDescriptionTimeConversions.DateConversion.getRecommendedSchema()
TimeConversions.LocalTimestampMicrosConversion.getRecommendedSchema()
TimeConversions.LocalTimestampMillisConversion.getRecommendedSchema()
TimeConversions.LocalTimestampNanosConversion.getRecommendedSchema()
TimeConversions.TimeMicrosConversion.getRecommendedSchema()
TimeConversions.TimeMillisConversion.getRecommendedSchema()
TimeConversions.TimestampMicrosConversion.getRecommendedSchema()
TimeConversions.TimestampMillisConversion.getRecommendedSchema()
TimeConversions.TimestampNanosConversion.getRecommendedSchema()
protected final Schema
RecordBuilderBase.schema()
Modifier and TypeMethodDescriptionTimeConversions.DateConversion.fromInt
(Integer daysFromEpoch, Schema schema, LogicalType type) TimeConversions.TimeMillisConversion.fromInt
(Integer millisFromMidnight, Schema schema, LogicalType type) TimeConversions.LocalTimestampMicrosConversion.fromLong
(Long microsFromEpoch, Schema schema, LogicalType type) TimeConversions.LocalTimestampMillisConversion.fromLong
(Long millisFromEpoch, Schema schema, LogicalType type) TimeConversions.LocalTimestampNanosConversion.fromLong
(Long microsFromEpoch, Schema schema, LogicalType type) TimeConversions.TimeMicrosConversion.fromLong
(Long microsFromMidnight, Schema schema, LogicalType type) TimeConversions.TimestampMicrosConversion.fromLong
(Long microsFromEpoch, Schema schema, LogicalType type) TimeConversions.TimestampMillisConversion.fromLong
(Long millisFromEpoch, Schema schema, LogicalType type) TimeConversions.TimestampNanosConversion.fromLong
(Long microsFromEpoch, Schema schema, LogicalType type) void
void
TimeConversions.DateConversion.toInt
(LocalDate date, Schema schema, LogicalType type) TimeConversions.TimeMillisConversion.toInt
(LocalTime time, Schema schema, LogicalType type) TimeConversions.LocalTimestampMicrosConversion.toLong
(LocalDateTime timestamp, Schema schema, LogicalType type) TimeConversions.LocalTimestampMillisConversion.toLong
(LocalDateTime timestamp, Schema schema, LogicalType type) TimeConversions.LocalTimestampNanosConversion.toLong
(LocalDateTime timestamp, Schema schema, LogicalType type) TimeConversions.TimeMicrosConversion.toLong
(LocalTime time, Schema schema, LogicalType type) TimeConversions.TimestampMicrosConversion.toLong
(Instant instant, Schema schema, LogicalType type) TimeConversions.TimestampMillisConversion.toLong
(Instant timestamp, Schema schema, LogicalType type) TimeConversions.TimestampNanosConversion.toLong
(Instant instant, Schema schema, LogicalType type) ModifierConstructorDescriptionprotected
RecordBuilderBase
(Schema schema, GenericData data) Creates a RecordBuilderBase for building records of the given type. -
Uses of Schema in org.apache.avro.file
Modifier and TypeMethodDescriptionDataFileReader12.getSchema()
Return the schema used in this file.DataFileStream.getSchema()
Return the schema used in this file.FileReader.getSchema()
Return the schema for data in this file.Modifier and TypeMethodDescriptionOpen a new file for data matching a schema with a random sync.DataFileWriter.create
(Schema schema, OutputStream outs) Open a new file for data matching a schema with a random sync.DataFileWriter.create
(Schema schema, OutputStream outs, byte[] sync) Open a new file for data matching a schema with an explicit sync. -
Uses of Schema in org.apache.avro.generic
Modifier and TypeMethodDescriptionprotected Schema
GenericData.getEnumSchema
(Object enu) Called to obtain the schema of a enum.GenericDatumReader.getExpected()
Get the reader's schema.protected Schema
GenericData.getFixedSchema
(Object fixed) Called to obtain the schema of a fixed.protected Schema
GenericData.getRecordSchema
(Object record) Called to obtain the schema of a record.GenericContainer.getSchema()
The schema of this instance.GenericData.AbstractArray.getSchema()
GenericData.EnumSymbol.getSchema()
GenericData.Fixed.getSchema()
GenericData.Record.getSchema()
GenericDatumReader.getSchema()
Return the writer's schema.Create a schema given an example datum.Modifier and TypeMethodDescriptionint
Compare objects according to their schema.protected int
Comparison implementation.protected Object
GenericDatumReader.convert
(Object datum, Schema schema, LogicalType type, Conversion<?> conversion) Convert an underlying representation of a logical type (such as a ByteBuffer) to a higher level object (such as a BigDecimal).protected <T> Object
GenericDatumWriter.convert
(Schema schema, LogicalType logicalType, Conversion<T> conversion, Object datum) Convert a high level representation of a logical type (such as a BigDecimal) to its underlying representation object (such as a ByteBuffer).GenericData.createDatumReader
(Schema schema) Returns aDatumReader
for this kind of data.GenericData.createDatumReader
(Schema writer, Schema reader) Returns aDatumReader
for this kind of data.GenericData.createDatumWriter
(Schema schema) Returns aDatumWriter
for this kind of data.GenericData.createEnum
(String symbol, Schema schema) Called to create an enum value.protected Object
GenericDatumReader.createEnum
(String symbol, Schema schema) Called to create an enum value.GenericData.createFixed
(Object old, byte[] bytes, Schema schema) Called to create an fixed value.GenericData.createFixed
(Object old, Schema schema) Called to create an fixed value.protected Object
GenericDatumReader.createFixed
(Object old, byte[] bytes, Schema schema) Deprecated.As of Avro 1.6.0 this method has been moved toGenericData.createFixed(Object, byte[], Schema)
protected Object
GenericDatumReader.createFixed
(Object old, Schema schema) Deprecated.As of Avro 1.6.0 this method has been moved toGenericData.createFixed(Object, Schema)
<T> T
Makes a deep copy of a value given its schema.protected Class
GenericDatumReader.findStringClass
(Schema schema) Determines the class to used to represent a string Schema.GenericData.getNewRecordSupplier
(Schema schema) create a supplier that allows to get new record instances for a given schema in an optimized wayprotected Object
GenericData.getRecordState
(Object record, Schema schema) Produce state for repeated calls toGenericData.getField(Object,String,int,Object)
andGenericData.setField(Object,String,int,Object,Object)
on the same record.protected final ResolvingDecoder
GenericDatumReader.getResolver
(Schema actual, Schema expected) Gets a resolving decoder for use by this GenericDatumReader.int
Compute a hash code according to a schema, consistent withGenericData.compare(Object,Object,Schema)
.protected boolean
GenericData.instanceOf
(Schema schema, Object datum) Called byGenericData.resolveUnion(Schema,Object)
.protected Object
Called to create new array instances.GenericData.InstanceSupplier.newInstance
(Object oldInstance, Schema schema) Called to create new record instances.protected Object
Deprecated.As of Avro 1.6.0 this method has been moved toGenericData.newRecord(Object, Schema)
protected Object
GenericDatumReader.read
(Object old, Schema expected, ResolvingDecoder in) Called to read data.protected Object
GenericDatumReader.readArray
(Object old, Schema expected, ResolvingDecoder in) Called to read an array instance.protected Object
Called to read byte arrays.protected Object
Called to read an enum value.protected Object
Called to read a fixed value.protected Object
Called to read integers.protected Object
GenericDatumReader.readMap
(Object old, Schema expected, ResolvingDecoder in) Called to read a map instance.protected Object
GenericDatumReader.readMapKey
(Object old, Schema expected, Decoder in) Called by the default implementation ofGenericDatumReader.readMap(java.lang.Object, org.apache.avro.Schema, org.apache.avro.io.ResolvingDecoder)
to read a key value.protected Object
GenericDatumReader.readRecord
(Object old, Schema expected, ResolvingDecoder in) Called to read a record instance.protected Object
GenericDatumReader.readString
(Object old, Schema expected, Decoder in) Called to read strings.protected Object
GenericDatumReader.readWithConversion
(Object old, Schema expected, LogicalType logicalType, Conversion<?> conversion, ResolvingDecoder in) protected Object
GenericDatumReader.readWithoutConversion
(Object old, Schema expected, ResolvingDecoder in) int
GenericData.resolveUnion
(Schema union, Object datum) Return the index for a datum within a union.protected int
GenericDatumWriter.resolveUnion
(Schema union, Object datum) Called to find the index for a datum within a union.void
GenericDatumReader.setExpected
(Schema reader) Set the reader's schema.protected void
void
void
static void
GenericData.setStringType
(Schema s, GenericData.StringType stringType) Set the Java type to be used when reading this schema.static void
Skip an instance of a schema.boolean
Returns true if a Java datum matches a schema.protected void
Called to write data.protected void
GenericDatumWriter.writeArray
(Schema schema, Object datum, Encoder out) Called to write a array.protected void
Called to write an enum value.protected void
GenericDatumWriter.writeFixed
(Schema schema, Object datum, Encoder out) Called to write a fixed value.protected void
Called to write a map.protected void
GenericDatumWriter.writeRecord
(Schema schema, Object datum, Encoder out) Called to write a record.protected void
GenericDatumWriter.writeString
(Schema schema, Object datum, Encoder out) Called to write a string.protected void
GenericDatumWriter.writeWithoutConversion
(Schema schema, Object datum, Encoder out) Called to write data.ModifierConstructorDescriptionAbstractArray
(Schema schema) Array
(Schema schema, Collection<T> c) BooleanArray
(int capacity, Schema schema) BooleanArray
(Schema schema, Collection<Boolean> c) DoubleArray
(int capacity, Schema schema) DoubleArray
(Schema schema, Collection<Double> c) EnumSymbol
(Schema schema, Object symbol) Maps existing Objects into an Avro enum by calling toString(), eg for Java EnumsEnumSymbol
(Schema schema, String symbol) FloatArray
(int capacity, Schema schema) FloatArray
(Schema schema, Collection<Float> c) GenericDatumReader
(Schema schema) Construct where the writer's and reader's schemas are the same.GenericDatumReader
(Schema writer, Schema reader) Construct given writer's and reader's schema.GenericDatumReader
(Schema writer, Schema reader, GenericData data) GenericDatumWriter
(Schema root) GenericDatumWriter
(Schema root, GenericData data) GenericRecordBuilder
(Schema schema) Creates a GenericRecordBuilder for building Record instances.IntArray
(Schema schema, Collection<Integer> c) LongArray
(Schema schema, Collection<Long> c) -
Uses of Schema in org.apache.avro.hadoop.file
Modifier and TypeMethodDescriptionSortedKeyValueFile.Reader.Options.getKeySchema()
Gets the reader schema for the key.SortedKeyValueFile.Writer.Options.getKeySchema()
Gets the key schema.SortedKeyValueFile.Reader.Options.getValueSchema()
Gets the reader schema for the value.SortedKeyValueFile.Writer.Options.getValueSchema()
Gets the value schema.Modifier and TypeMethodDescriptionSortedKeyValueFile.Reader.Options.withKeySchema
(Schema keySchema) Sets the reader schema for the key.SortedKeyValueFile.Writer.Options.withKeySchema
(Schema keySchema) Sets the key schema.SortedKeyValueFile.Reader.Options.withValueSchema
(Schema valueSchema) Sets the reader schema for the value.SortedKeyValueFile.Writer.Options.withValueSchema
(Schema valueSchema) Sets the value schema. -
Uses of Schema in org.apache.avro.hadoop.io
Modifier and TypeMethodDescriptionstatic Schema
AvroSerialization.getKeyReaderSchema
(Configuration conf) Gets the reader schema of the AvroKey datum that is being serialized/deserialized.static Schema
AvroSerialization.getKeyWriterSchema
(Configuration conf) Gets the writer schema of the AvroKey datum that is being serialized/deserialized.AvroDeserializer.getReaderSchema()
Gets the reader schema used for deserializing.static Schema
Creates a KeyValuePair generic record schema.static Schema
AvroSerialization.getValueReaderSchema
(Configuration conf) Gets the reader schema of the AvroValue datum that is being serialized/deserialized.static Schema
AvroSerialization.getValueWriterSchema
(Configuration conf) Gets the writer schema of the AvroValue datum that is being serialized/deserialized.abstract Schema
AvroDatumConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.AvroWrapperConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.BooleanWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.BytesWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.ByteWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.DoubleWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.FloatWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.IntWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.LongWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.NullWritableConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDatumConverterFactory.TextConverter.getWriterSchema()
Gets the writer schema that should be used to serialize the output Avro datum.AvroDeserializer.getWriterSchema()
Gets the writer schema used for deserializing.AvroSerializer.getWriterSchema()
Gets the writer schema being used for serialization.Modifier and TypeMethodDescriptionstatic Schema
Creates a KeyValuePair generic record schema.static void
AvroSerialization.setKeyReaderSchema
(Configuration conf, Schema schema) Sets the reader schema of the AvroKey datum that is being serialized/deserialized.static void
AvroSerialization.setKeyWriterSchema
(Configuration conf, Schema schema) Sets the writer schema of the AvroKey datum that is being serialized/deserialized.static void
AvroSerialization.setValueReaderSchema
(Configuration conf, Schema schema) Sets the reader schema of the AvroValue datum that is being serialized/deserialized.static void
AvroSerialization.setValueWriterSchema
(Configuration conf, Schema schema) Sets the writer schema of the AvroValue datum that is being serialized/deserialized.AvroSequenceFile.Reader.Options.withKeySchema
(Schema keyReaderSchema) Sets the reader schema of the key records when using Avro data.AvroSequenceFile.Writer.Options.withKeySchema
(Schema keyWriterSchema) Sets the writer schema of the key records when using Avro data.AvroSequenceFile.Reader.Options.withValueSchema
(Schema valueReaderSchema) Sets the reader schema of the value records when using Avro data.AvroSequenceFile.Writer.Options.withValueSchema
(Schema valueWriterSchema) Sets the writer schema of the value records when using Avro data.ModifierConstructorDescriptionprotected
AvroDeserializer
(Schema writerSchema, Schema readerSchema, ClassLoader classLoader) Constructor.protected
AvroDeserializer
(Schema writerSchema, Schema readerSchema, DatumReader<D> datumReader) Constructor.AvroKeyDeserializer
(Schema writerSchema, Schema readerSchema, ClassLoader classLoader) Constructor.AvroKeyDeserializer
(Schema writerSchema, Schema readerSchema, DatumReader<D> datumReader) Constructor.AvroSerializer
(Schema writerSchema) Constructor.AvroSerializer
(Schema writerSchema, DatumWriter<T> datumWriter) Constructor.AvroValueDeserializer
(Schema writerSchema, Schema readerSchema, ClassLoader classLoader) Constructor.AvroValueDeserializer
(Schema writerSchema, Schema readerSchema, DatumReader<D> datumReader) Constructor.AvroWrapperConverter
(Schema schema) -
Uses of Schema in org.apache.avro.idl
Modifier and TypeMethodDescriptionIdlFile.getMainSchema()
The (main) schema defined by the IDL file.IdlFile.getNamedSchema
(String name) Get a named schema defined by the IDL file, by name.IdlSchemaParser.parse
(ParseContext parseContext, URI baseUri, CharSequence formattedSchema) Modifier and TypeMethodDescriptionIdlFile.getNamedSchemas()
The named schemas defined by the IDL file, mapped by their full name.Modifier and TypeMethodDescriptionstatic void
IdlUtils.writeIdlProtocol
(Writer writer, Schema schema) static void
IdlUtils.writeIdlSchema
(Writer writer, Schema schema) Modifier and TypeMethodDescriptionstatic void
IdlUtils.writeIdlProtocol
(Writer writer, JsonProperties properties, String protocolNameSpace, String protocolName, Collection<Schema> schemas, Collection<Protocol.Message> messages) static void
IdlUtils.writeIdlSchemas
(Writer writer, String namespace, Collection<Schema> schemas) -
Uses of Schema in org.apache.avro.io
Modifier and TypeMethodDescriptionstatic int
Compare binary encoded data.static int
Compare binary encoded data.<D> DatumReader
<D> FastReaderBuilder.createDatumReader
(Schema schema) <D> DatumReader
<D> FastReaderBuilder.createDatumReader
(Schema writerSchema, Schema readerSchema) void
FastReaderBuilder.RecordReader.finishInitialization
(FastReaderBuilder.ExecutionStep[] readSteps, Schema schema, GenericData.InstanceSupplier supp) static int
Hash binary encoded data.DecoderFactory.jsonDecoder
(Schema schema, InputStream input) Creates aJsonDecoder
using the InputStream provided for reading data that conforms to the Schema provided.DecoderFactory.jsonDecoder
(Schema schema, String input) Creates aJsonDecoder
using the String provided for reading data that conforms to the Schema provided.EncoderFactory.jsonEncoder
(Schema schema, OutputStream out) Creates aJsonEncoder
using the OutputStream provided for writing data conforming to the Schema provided.EncoderFactory.jsonEncoder
(Schema schema, OutputStream out, boolean pretty) Creates aJsonEncoder
using the OutputStream provided for writing data conforming to the Schema provided with optional pretty printing.EncoderFactory.jsonEncoder
(Schema schema, OutputStream out, boolean pretty, boolean autoflush) Creates aJsonEncoder
using the OutputStream provided for writing data conforming to the Schema provided with optional pretty printing.static Object
Produces an opaque resolver that can be used to construct a newResolvingDecoder(Object, Decoder)
.DecoderFactory.resolvingDecoder
(Schema writer, Schema reader, Decoder wrapped) Creates aResolvingDecoder
wrapping the Decoder provided.void
Set the writer's schema.void
Set the schema.default void
DecoderFactory.validatingDecoder
(Schema schema, Decoder wrapped) Creates aValidatingDecoder
wrapping the Decoder provided.EncoderFactory.validatingEncoder
(Schema schema, Encoder encoder) Creates aValidatingEncoder
that wraps the Encoder provided. -
Uses of Schema in org.apache.avro.io.parsing
Modifier and TypeMethodDescriptionstatic void
Encodes the given Json node n on to the encoder e according to the schema s.Returns the non-terminal that is the start symbol for the grammar for the grammar for the given schema sc.JsonGrammarGenerator.generate
(Schema sc, Map<org.apache.avro.io.parsing.ValidatingGrammarGenerator.LitS, Symbol> seen) Returns the non-terminal that is the start symbol for grammar of the given schema sc.final Symbol
Resolves the writer schema writer and the reader schema reader and returns the start symbol for the grammar generated.Returns the non-terminal that is the start symbol for the grammar for the given schema sc.ValidatingGrammarGenerator.generate
(Schema sc, Map<org.apache.avro.io.parsing.ValidatingGrammarGenerator.LitS, Symbol> seen) Returns the non-terminal that is the start symbol for the grammar for the given schema sc. -
Uses of Schema in org.apache.avro.ipc
Modifier and TypeFieldDescriptionstatic final Schema
HandshakeMatch.SCHEMA$
static final Schema
HandshakeRequest.SCHEMA$
static final Schema
HandshakeResponse.SCHEMA$
static final Schema
MD5.SCHEMA$
Modifier and TypeMethodDescriptionstatic Schema
HandshakeMatch.getClassSchema()
static Schema
HandshakeRequest.getClassSchema()
static Schema
HandshakeResponse.getClassSchema()
static Schema
MD5.getClassSchema()
HandshakeMatch.getSchema()
HandshakeRequest.getSchema()
HandshakeResponse.getSchema()
MD5.getSchema()
Modifier and TypeMethodDescriptionDeprecated.abstract Exception
Reads an error message.abstract Object
Responder.readRequest
(Schema actual, Schema expected, Decoder in) Reads a request message.Requestor.readResponse
(Schema schema, Decoder in) Deprecated.abstract Object
Requestor.readResponse
(Schema writer, Schema reader, Decoder in) Reads a response message.abstract void
Responder.writeError
(Schema schema, Object error, Encoder out) Writes an error message.abstract void
Requestor.writeRequest
(Schema schema, Object request, Encoder out) Writes a request message.abstract void
Responder.writeResponse
(Schema schema, Object response, Encoder out) Writes a response message. -
Uses of Schema in org.apache.avro.ipc.generic
Modifier and TypeMethodDescriptionprotected DatumReader
<Object> GenericResponder.getDatumReader
(Schema actual, Schema expected) protected DatumWriter
<Object> GenericResponder.getDatumWriter
(Schema schema) GenericResponder.readRequest
(Schema actual, Schema expected, Decoder in) GenericRequestor.readResponse
(Schema writer, Schema reader, Decoder in) void
GenericResponder.writeError
(Schema schema, Object error, Encoder out) void
GenericRequestor.writeRequest
(Schema schema, Object request, Encoder out) void
GenericResponder.writeResponse
(Schema schema, Object response, Encoder out) -
Uses of Schema in org.apache.avro.ipc.reflect
Modifier and TypeMethodDescriptionprotected DatumReader
<Object> ReflectRequestor.getDatumReader
(Schema writer, Schema reader) protected DatumReader
<Object> ReflectResponder.getDatumReader
(Schema actual, Schema expected) protected DatumWriter
<Object> ReflectRequestor.getDatumWriter
(Schema schema) protected DatumWriter
<Object> ReflectResponder.getDatumWriter
(Schema schema) void
ReflectResponder.writeError
(Schema schema, Object error, Encoder out) -
Uses of Schema in org.apache.avro.ipc.specific
Modifier and TypeMethodDescriptionprotected DatumReader
<Object> SpecificRequestor.getDatumReader
(Schema schema) Deprecated.protected DatumReader
<Object> SpecificRequestor.getDatumReader
(Schema writer, Schema reader) protected DatumReader
<Object> SpecificResponder.getDatumReader
(Schema actual, Schema expected) protected DatumWriter
<Object> SpecificRequestor.getDatumWriter
(Schema schema) protected DatumWriter
<Object> SpecificResponder.getDatumWriter
(Schema schema) SpecificRequestor.readResponse
(Schema writer, Schema reader, Decoder in) void
SpecificResponder.writeError
(Schema schema, Object error, Encoder out) void
SpecificRequestor.writeRequest
(Schema schema, Object request, Encoder out) -
Uses of Schema in org.apache.avro.mapred
Modifier and TypeMethodDescriptionstatic Schema
AvroJob.getInputSchema
(Configuration job) Return a job's map input schema.static Schema
Pair.getKeySchema
(Schema pair) Return a pair's key schema.static Schema
AvroJob.getMapOutputSchema
(Configuration job) Return a job's map output key schema.static Schema
AvroJob.getOutputSchema
(Configuration job) Return a job's output key schema.static Schema
Pair.getPairSchema
(Schema key, Schema value) Get a pair schema.Pair.getSchema()
SequenceFileReader.getSchema()
static Schema
Pair.getValueSchema
(Schema pair) Return a pair's value schema.Modifier and TypeMethodDescriptionstatic void
AvroMultipleInputs.addInputPath
(JobConf conf, Path path, Class<? extends AvroMapper> mapperClass, Schema inputSchema) static void
AvroMultipleOutputs.addMultiNamedOutput
(JobConf conf, String namedOutput, Class<? extends OutputFormat> outputFormatClass, Schema schema) Adds a multi named output for the job.static void
AvroMultipleOutputs.addNamedOutput
(JobConf conf, String namedOutput, Class<? extends OutputFormat> outputFormatClass, Schema schema) Adds a named output for the job.void
OutputCollector with custom schema.void
AvroMultipleOutputs.collect
(String namedOutput, Reporter reporter, Schema schema, Object datum, String baseOutputPath) OutputCollector with custom schema and file name.static Schema
Pair.getKeySchema
(Schema pair) Return a pair's key schema.static Schema
Pair.getPairSchema
(Schema key, Schema value) Get a pair schema.static Schema
Pair.getValueSchema
(Schema pair) Return a pair's value schema.static void
AvroJob.setInputSchema
(JobConf job, Schema s) Configure a job's map input schema.static void
AvroJob.setMapOutputSchema
(JobConf job, Schema s) Configure a job's map output schema.static void
AvroJob.setOutputSchema
(JobConf job, Schema s) Configure a job's output schema. -
Uses of Schema in org.apache.avro.mapred.tether
-
Uses of Schema in org.apache.avro.mapreduce
Modifier and TypeMethodDescriptionstatic Schema
AvroJob.getInputKeySchema
(Configuration conf) Gets the job input key schema.static Schema
AvroJob.getInputValueSchema
(Configuration conf) Gets the job input value schema.static Schema
AvroJob.getMapOutputKeySchema
(Configuration conf) Gets the map output key schema.static Schema
AvroJob.getMapOutputValueSchema
(Configuration conf) Gets the map output value schema.static Schema
AvroJob.getOutputKeySchema
(Configuration conf) Gets the job output key schema.static Schema
AvroJob.getOutputValueSchema
(Configuration conf) Gets the job output value schema.AvroKeyValueRecordWriter.getWriterSchema()
Gets the writer schema for the key/value pair generic record.Modifier and TypeMethodDescriptionstatic void
AvroMultipleOutputs.addNamedOutput
(Job job, String namedOutput, Class<? extends OutputFormat> outputFormatClass, Schema keySchema) Adds a named output for the job.static void
AvroMultipleOutputs.addNamedOutput
(Job job, String namedOutput, Class<? extends OutputFormat> outputFormatClass, Schema keySchema, Schema valueSchema) Adds a named output for the job.protected RecordWriter
<AvroKey<T>, NullWritable> AvroKeyOutputFormat.RecordWriterFactory.create
(Schema writerSchema, GenericData dataModel, CodecFactory compressionCodec, OutputStream outputStream, int syncInterval) Creates a new record writer instance.static void
AvroJob.setInputKeySchema
(Job job, Schema schema) Sets the job input key schema.static void
AvroJob.setInputValueSchema
(Job job, Schema schema) Sets the job input value schema.static void
AvroJob.setMapOutputKeySchema
(Job job, Schema schema) Sets the map output key schema.static void
AvroJob.setMapOutputValueSchema
(Job job, Schema schema) Sets the map output value schema.static void
AvroJob.setOutputKeySchema
(Job job, Schema schema) Sets the job output key schema.static void
AvroJob.setOutputValueSchema
(Job job, Schema schema) Sets the job output value schema.void
AvroMultipleOutputs.write
(Object key, Object value, Schema keySchema, Schema valSchema, String baseOutputPath) Write key value to an output file name.ModifierConstructorDescriptionAvroKeyRecordReader
(Schema readerSchema) Constructor.AvroKeyRecordWriter
(Schema writerSchema, GenericData dataModel, CodecFactory compressionCodec, OutputStream outputStream) Constructor.AvroKeyRecordWriter
(Schema writerSchema, GenericData dataModel, CodecFactory compressionCodec, OutputStream outputStream, int syncInterval) Constructor.AvroKeyValueRecordReader
(Schema keyReaderSchema, Schema valueReaderSchema) Constructor.protected
AvroRecordReaderBase
(Schema readerSchema) Constructor. -
Uses of Schema in org.apache.avro.message
Modifier and TypeMethodDescriptionSchemaStore.Cache.findByFingerprint
(long fingerprint) SchemaStore.findByFingerprint
(long fingerprint) Retrieves a fingerprint by its AVRO-CRC-64 fingerprint.Modifier and TypeMethodDescriptionvoid
Adds aSchema
that can be used to decode buffers.void
Adds a schema to this cache that can be retrieved using its AVRO-CRC-64 fingerprint.ModifierConstructorDescriptionBinaryMessageDecoder
(GenericData model, Schema readSchema) Creates a newBinaryMessageEncoder
that uses the givendata model
to construct datum instances described by theschema
.BinaryMessageDecoder
(GenericData model, Schema readSchema, SchemaStore resolver) Creates a newBinaryMessageEncoder
that uses the givendata model
to construct datum instances described by theschema
.BinaryMessageEncoder
(GenericData model, Schema schema) Creates a newBinaryMessageEncoder
that uses the givendata model
to deconstruct datum instances described by theschema
.BinaryMessageEncoder
(GenericData model, Schema schema, boolean shouldCopy) Creates a newBinaryMessageEncoder
that uses the givendata model
to deconstruct datum instances described by theschema
.RawMessageDecoder
(GenericData model, Schema schema) Creates a newRawMessageDecoder
that uses the givendata model
to construct datum instances described by theschema
.RawMessageDecoder
(GenericData model, Schema writeSchema, Schema readSchema) Creates a newRawMessageDecoder
that uses the givendata model
to construct datum instances described by thereadSchema
.RawMessageEncoder
(GenericData model, Schema schema) Creates a newRawMessageEncoder
that uses the givendata model
to deconstruct datum instances described by theschema
.RawMessageEncoder
(GenericData model, Schema schema, boolean shouldCopy) Creates a newRawMessageEncoder
that uses the givendata model
to deconstruct datum instances described by theschema
. -
Uses of Schema in org.apache.avro.mojo
Modifier and TypeMethodDescriptionprotected void
AbstractAvroMojo.doCompile
(File sourceFileForModificationDetection, Collection<Schema> schemas, File outputDirectory) -
Uses of Schema in org.apache.avro.path
Modifier and TypeMethodDescriptionproduces a user-facing exception to be thrown back out to user codeModifierConstructorDescriptionTracingClassCastException
(ClassCastException cause, Object datum, Schema expected, boolean customCoderUsed) TracingNullPointException
(NullPointerException cause, Schema expected, boolean customCoderUsed) -
Uses of Schema in org.apache.avro.protobuf
Modifier and TypeMethodDescriptionProtoConversions.TimestampMicrosConversion.getRecommendedSchema()
ProtoConversions.TimestampMillisConversion.getRecommendedSchema()
ProtoConversions.TimestampNanosConversion.getRecommendedSchema()
protected Schema
ProtobufData.getRecordSchema
(Object record) ProtobufData.getSchema
(com.google.protobuf.Descriptors.Descriptor descriptor) ProtobufData.getSchema
(com.google.protobuf.Descriptors.EnumDescriptor d) ProtobufData.getSchema
(com.google.protobuf.Descriptors.FieldDescriptor f) Return a record schema given a protobuf message class.Modifier and TypeMethodDescriptionProtobufData.createDatumReader
(Schema schema) ProtobufData.createDatumWriter
(Schema schema) protected Object
ProtobufDatumReader.createEnum
(String symbol, Schema schema) com.google.protobuf.Timestamp
ProtoConversions.TimestampMicrosConversion.fromLong
(Long microsFromEpoch, Schema schema, LogicalType type) com.google.protobuf.Timestamp
ProtoConversions.TimestampMillisConversion.fromLong
(Long millisFromEpoch, Schema schema, LogicalType type) com.google.protobuf.Timestamp
ProtoConversions.TimestampNanosConversion.fromLong
(Long nanosFromEpoch, Schema schema, LogicalType type) protected Object
ProtobufData.getRecordState
(Object r, Schema s) protected Object
ProtobufDatumReader.readRecord
(Object old, Schema expected, ResolvingDecoder in) ProtoConversions.TimestampMicrosConversion.toLong
(com.google.protobuf.Timestamp value, Schema schema, LogicalType type) ProtoConversions.TimestampMillisConversion.toLong
(com.google.protobuf.Timestamp value, Schema schema, LogicalType type) ProtoConversions.TimestampNanosConversion.toLong
(com.google.protobuf.Timestamp value, Schema schema, LogicalType type) protected void
ModifierConstructorDescriptionProtobufDatumReader
(Schema schema) Construct where the writer's and reader's schemas are the same.ProtobufDatumReader
(Schema writer, Schema reader) Construct given writer's and reader's schema.protected
ProtobufDatumReader
(Schema writer, Schema reader, ProtobufData data) ProtobufDatumWriter
(Schema schema) protected
ProtobufDatumWriter
(Schema root, ProtobufData protobufData) -
Uses of Schema in org.apache.avro.reflect
Modifier and TypeMethodDescriptionprotected Schema
ReflectData.AllowNull.createFieldSchema
(Field field, Map<String, Schema> names) protected Schema
ReflectData.createFieldSchema
(Field field, Map<String, Schema> names) Create a schema for a field.protected Schema
ReflectData.createSchema
(Type type, Map<String, Schema> names) protected Schema
ReflectData.getRecordSchema
(Object record) protected Schema
CustomEncoding.getSchema()
static Schema
ReflectData.makeNullable
(Schema schema) Create and return a union of the null schema and the provided schema.Modifier and TypeMethodDescriptionprotected int
ReflectData.createDatumReader
(Schema schema) ReflectData.createDatumReader
(Schema writer, Schema reader) ReflectData.createDatumWriter
(Schema schema) ReflectData.createFixed
(Object old, Schema schema) protected Object
ReflectData.createSchemaDefaultValue
(Type type, Field field, Schema fieldSchema) Get default value for a schema field.protected Object
ReflectData.getRecordState
(Object record, Schema schema) static Schema
ReflectData.makeNullable
(Schema schema) Create and return a union of the null schema and the provided schema.protected Object
protected Object
ReflectDatumReader.readArray
(Object old, Schema expected, ResolvingDecoder in) protected Object
protected Object
boolean
protected void
protected void
ReflectDatumWriter.writeArray
(Schema schema, Object datum, Encoder out) Called to write a array.Modifier and TypeMethodDescriptionprotected Schema
ReflectData.AllowNull.createFieldSchema
(Field field, Map<String, Schema> names) protected Schema
ReflectData.createFieldSchema
(Field field, Map<String, Schema> names) Create a schema for a field.protected Schema
ReflectData.createSchema
(Type type, Map<String, Schema> names) ModifierConstructorDescriptionReflectDatumReader
(Schema root) Construct where the writer's and reader's schemas are the same.ReflectDatumReader
(Schema writer, Schema reader) Construct given writer's and reader's schema.ReflectDatumReader
(Schema writer, Schema reader, ReflectData data) Construct given writer's and reader's schema and the data model.ReflectDatumWriter
(Schema root) ReflectDatumWriter
(Schema root, ReflectData reflectData) -
Uses of Schema in org.apache.avro.specific
Modifier and TypeMethodDescriptionprotected Schema
SpecificData.createSchema
(Type type, Map<String, Schema> names) Create the schema for a Java type.protected Schema
SpecificData.getEnumSchema
(Object datum) Find the schema for a Java type.abstract Schema
SpecificExceptionBase.getSchema()
abstract Schema
SpecificFixed.getSchema()
Modifier and TypeMethodDescriptionprotected int
SpecificData.createDatumReader
(Schema schema) SpecificData.createDatumReader
(Schema writer, Schema reader) SpecificData.createDatumWriter
(Schema schema) SpecificData.createEnum
(String symbol, Schema schema) SpecificData.createFixed
(Object old, Schema schema) protected Class
SpecificDatumReader.findStringClass
(Schema schema) Return the class that implements a schema, or null if none exists.static String
SpecificData.getClassName
(Schema schema) Returns the Java class name indicated by a schema's name and namespace.static SpecificData
SpecificData.getForSchema
(Schema reader) For RECORD and UNION type schemas, this method returns the SpecificData instance of the class associated with the schema, in order to get the right conversions for any logical types used.SpecificData.getNewRecordSupplier
(Schema schema) static Object
SpecificData.newInstance
(Class c, Schema s) Create an instance of a class.protected Object
SpecificDatumReader.readRecord
(Object old, Schema expected, ResolvingDecoder in) void
protected void
protected void
SpecificDatumWriter.writeRecord
(Schema schema, Object datum, Encoder out) protected void
SpecificDatumWriter.writeString
(Schema schema, Object datum, Encoder out) Modifier and TypeMethodDescriptionprotected Schema
SpecificData.createSchema
(Type type, Map<String, Schema> names) Create the schema for a Java type.ModifierConstructorDescriptionSpecificDatumReader
(Schema schema) Construct where the writer's and reader's schemas are the same.SpecificDatumReader
(Schema writer, Schema reader) Construct given writer's and reader's schema.SpecificDatumReader
(Schema writer, Schema reader, SpecificData data) Construct given writer's schema, reader's schema, and aSpecificData
.SpecificDatumWriter
(Schema schema) SpecificDatumWriter
(Schema root, SpecificData specificData) protected
SpecificErrorBuilderBase
(Schema schema) Creates a SpecificErrorBuilderBase for building errors of the given type.protected
SpecificErrorBuilderBase
(Schema schema, SpecificData model) Creates a SpecificErrorBuilderBase for building errors of the given type.protected
SpecificRecordBuilderBase
(Schema schema) Creates a SpecificRecordBuilderBase for building records of the given type.protected
SpecificRecordBuilderBase
(Schema schema, SpecificData model) Creates a SpecificRecordBuilderBase for building records of the given type. -
Uses of Schema in org.apache.avro.thrift
Modifier and TypeMethodDescriptionprotected Schema
ThriftData.getEnumSchema
(Object datum) protected Schema
ThriftData.getRecordSchema
(Object record) Return a record schema given a thrift generated class.Modifier and TypeMethodDescriptionThriftData.createDatumReader
(Schema schema) ThriftData.createDatumWriter
(Schema schema) protected Object
ThriftDatumReader.createEnum
(String symbol, Schema schema) protected Object
ThriftData.getRecordState
(Object r, Schema s) protected Object
protected Object
ModifierConstructorDescriptionThriftDatumReader
(Schema schema) Construct where the writer's and reader's schemas are the same.ThriftDatumReader
(Schema writer, Schema reader) Construct given writer's and reader's schema.protected
ThriftDatumReader
(Schema writer, Schema reader, ThriftData data) ThriftDatumWriter
(Schema schema) protected
ThriftDatumWriter
(Schema root, ThriftData thriftData) -
Uses of Schema in org.apache.avro.util
Modifier and TypeMethodDescriptionSchemaResolver.ResolvingVisitor.getResolved
(Schema schema) static Schema
SchemaResolver.unresolvedSchema
(String name) Create a schema to represent an "unresolved" schema.Modifier and TypeMethodDescriptionSchemaResolver.IsResolvedSchemaVisitor.afterVisitNonTerminal
(Schema nonTerminal) SchemaResolver.ResolvingVisitor.afterVisitNonTerminal
(Schema nt) SchemaVisitor.afterVisitNonTerminal
(Schema nonTerminal) Invoked for schemas with children after its children have been visited.void
SchemaResolver.ResolvingVisitor.copyProperties
(Schema first, Schema second) static String
SchemaResolver.ResolvingVisitor.getResolved
(Schema schema) static String
SchemaResolver.getUnresolvedSchemaName
(Schema schema) Get the unresolved schema name.static boolean
SchemaResolver.isFullyResolvedSchema
(Schema schema) Is this an unresolved schema?static boolean
SchemaResolver.isUnresolvedSchema
(Schema schema) Is this an unresolved schema.static <T> T
Schemas.visit
(Schema start, SchemaVisitor<T> visitor) Depth first visit.SchemaResolver.IsResolvedSchemaVisitor.visitNonTerminal
(Schema nonTerminal) SchemaResolver.ResolvingVisitor.visitNonTerminal
(Schema nt) SchemaVisitor.visitNonTerminal
(Schema nonTerminal) Invoked for schema with children before proceeding to visit the children.SchemaResolver.IsResolvedSchemaVisitor.visitTerminal
(Schema terminal) SchemaResolver.ResolvingVisitor.visitTerminal
(Schema terminal) SchemaVisitor.visitTerminal
(Schema terminal) Invoked for schemas that do not have "child" schemas (like string, int …) or for a previously encountered schema with children, which will be treated as a terminal.ModifierConstructorDescriptionRandomData
(GenericData genericData, Schema schema, int count) RandomData
(GenericData genericData, Schema schema, int count, boolean utf8ForString) RandomData
(GenericData genericData, Schema schema, int count, long seed) RandomData
(GenericData genericData, Schema schema, int count, long seed, boolean utf8ForString) RandomData
(Schema schema, int count) RandomData
(Schema schema, int count, boolean utf8ForString) RandomData
(Schema schema, int count, long seed) RandomData
(Schema schema, int count, long seed, boolean utf8ForString) -
Uses of Schema in org.apache.trevni.avro
Modifier and TypeMethodDescriptionAvroColumnReader.getFileSchema()
Return the schema for data in this file.Modifier and TypeMethodDescriptionSet subset schema to project data down to.ModifierConstructorDescriptionAvroColumnWriter
(Schema s, ColumnFileMetaData meta) AvroColumnWriter
(Schema s, ColumnFileMetaData meta, GenericData model) -
Uses of Schema in org.apache.trevni.avro.mapreduce
Modifier and TypeFieldDescriptionprotected Schema
AvroTrevniRecordWriterBase.schema
Provided avro schema from the contextModifier and TypeMethodDescriptionprotected Schema
AvroTrevniKeyRecordWriter.initSchema
(TaskAttemptContext context) Use the task context to construct a schema for writingprotected Schema
AvroTrevniKeyValueRecordWriter.initSchema
(TaskAttemptContext context) Use the task context to construct a schema for writingprotected abstract Schema
AvroTrevniRecordWriterBase.initSchema
(TaskAttemptContext context) Use the task context to construct a schema for writing
SchemaParser.parse(CharSequence)
.