com.spotify.scio.avro.AvroIO.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scio-avro_2.12 Show documentation
Show all versions of scio-avro_2.12 Show documentation
Scio add-on for working with Avro
The newest version!
/*
* Copyright 2019 Spotify AB.
*
* Licensed 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 com.spotify.scio.avro
import com.spotify.scio.ScioContext
import com.spotify.scio.coders.{Coder, CoderMaterializer}
import com.spotify.scio.io._
import com.spotify.scio.util.{FilenamePolicySupplier, Functions, ScioUtil}
import com.spotify.scio.values._
import org.apache.avro.Schema
import org.apache.avro.file.CodecFactory
import org.apache.avro.generic.{GenericRecord, IndexedRecord}
import org.apache.avro.specific.{SpecificData, SpecificRecord}
import org.apache.beam.sdk.extensions.avro.io.{AvroDatumFactory, AvroIO => BAvroIO}
import scala.jdk.CollectionConverters._
import scala.reflect.ClassTag
import scala.util.chaining._
sealed trait AvroIO[T <: IndexedRecord] extends ScioIO[T] {
override type ReadP = AvroIO.ReadParam[T]
override type WriteP = AvroIO.WriteParam[T]
final override val tapT: TapT.Aux[T, T] = TapOf[T]
def path: String
def schema: Schema
protected def defaultDatumFactory: AvroDatumFactory[T]
protected def baseRead: BAvroIO.Read[T]
protected def baseWrite: BAvroIO.Write[T]
override def testId: String = s"AvroIO($path)"
override protected def read(sc: ScioContext, params: ReadP): SCollection[T] = {
val datumFactory = Option(params.datumFactory).getOrElse(defaultDatumFactory)
val coder = avroCoder(datumFactory, schema)
val bCoder = CoderMaterializer.beam(sc, coder)
val filePattern = ScioUtil.filePattern(path, params.suffix)
val t = baseRead
.from(filePattern)
.withDatumReaderFactory(datumFactory)
sc
.applyTransform(t)
.setCoder(bCoder)
}
override protected def write(data: SCollection[T], params: WriteP): Tap[T] = {
val isWindowed = ScioUtil.isWindowed(data)
val tempDirectory = ScioUtil.tempDirOrDefault(params.tempDirectory, data.context)
val fp = FilenamePolicySupplier.resolve(
filenamePolicySupplier = params.filenamePolicySupplier,
prefix = params.prefix,
shardNameTemplate = params.shardNameTemplate,
isWindowed = isWindowed
)(ScioUtil.strippedPath(path), params.suffix)
val datumFactory = Option(params.datumFactory).getOrElse(defaultDatumFactory)
val t = baseWrite
.to(fp)
.withTempDirectory(tempDirectory)
.withNumShards(params.numShards)
.withCodec(params.codec)
.withMetadata(params.metadata.asJava)
.withDatumWriterFactory(datumFactory)
.pipe(w => if (!isWindowed) w else w.withWindowedWrites())
data.applyInternal(t)
tap(AvroIO.ReadParam(params))
}
}
object AvroIO {
@inline final def apply[T](path: String): TestIO[T] =
new TestIO[T] {
override val tapT: TapT.Aux[T, T] = TapOf[T]
override def testId: String = s"AvroIO($path)"
}
object ReadParam {
val DefaultSuffix: String = null
val DefaultDatumFactory: Null = null
private[scio] def apply[T](params: WriteParam[T]): ReadParam[T] =
new ReadParam(params.suffix, params.datumFactory)
}
final case class ReadParam[T] private (
suffix: String = ReadParam.DefaultSuffix,
datumFactory: AvroDatumFactory[T] = ReadParam.DefaultDatumFactory
)
object WriteParam {
val DefaultNumShards: Int = 0
val DefaultSuffix: String = ".avro"
val DefaultSuffixObjectFile: String = ".obj.avro"
val DefaultSuffixProtobuf: String = ".protobuf.avro"
val DefaultCodec: CodecFactory = CodecFactory.deflateCodec(6)
val DefaultMetadata: Map[String, AnyRef] = Map.empty
val DefaultFilenamePolicySupplier: FilenamePolicySupplier = null
val DefaultPrefix: String = null
val DefaultShardNameTemplate: String = null
val DefaultTempDirectory: String = null
val DefaultDatumFactory: Null = null
}
final case class WriteParam[T] private (
numShards: Int = WriteParam.DefaultNumShards,
suffix: String = WriteParam.DefaultSuffix,
codec: CodecFactory = WriteParam.DefaultCodec,
metadata: Map[String, AnyRef] = WriteParam.DefaultMetadata,
filenamePolicySupplier: FilenamePolicySupplier = WriteParam.DefaultFilenamePolicySupplier,
prefix: String = WriteParam.DefaultPrefix,
shardNameTemplate: String = WriteParam.DefaultShardNameTemplate,
tempDirectory: String = WriteParam.DefaultTempDirectory,
datumFactory: AvroDatumFactory[T] = WriteParam.DefaultDatumFactory
)
}
final case class GenericRecordIO(path: String, schema: Schema) extends AvroIO[GenericRecord] {
override protected def baseRead: BAvroIO.Read[GenericRecord] =
BAvroIO.readGenericRecords(schema)
override protected def baseWrite: BAvroIO.Write[GenericRecord] =
BAvroIO.writeGenericRecords(schema)
override def tap(read: ReadP): Tap[GenericRecord] =
GenericRecordTap(path, schema, read)
override protected def defaultDatumFactory: AvroDatumFactory[GenericRecord] =
GenericRecordDatumFactory
}
object GenericRecordIO {
type ReadParam = AvroIO.ReadParam[GenericRecord]
val ReadParam = AvroIO.ReadParam
type WriteParam = AvroIO.WriteParam[GenericRecord]
val WriteParam = AvroIO.WriteParam
}
final case class SpecificRecordIO[T <: SpecificRecord: ClassTag](path: String) extends AvroIO[T] {
private val recordClass: Class[T] = ScioUtil.classOf[T]
override def schema: Schema = SpecificData.get().getSchema(recordClass)
override def baseRead: BAvroIO.Read[T] = BAvroIO.read(recordClass)
override def baseWrite: BAvroIO.Write[T] = BAvroIO.write(recordClass)
override def tap(read: ReadP): Tap[T] = SpecificRecordTap(path, read)
override protected val defaultDatumFactory: AvroDatumFactory[T] = new SpecificRecordDatumFactory(
recordClass
)
}
object SpecificRecordIO {
type ReadParam[T <: SpecificRecord] = AvroIO.ReadParam[T]
val ReadParam = AvroIO.ReadParam
type WriteParam[T <: SpecificRecord] = AvroIO.WriteParam[T]
val WriteParam = AvroIO.WriteParam
}
/**
* Given a parseFn, read [[org.apache.avro.generic.GenericRecord GenericRecord]] and apply a
* function mapping [[GenericRecord => T]] before producing output. This IO applies the function at
* the time of de-serializing Avro GenericRecords.
*
* This IO doesn't define write, and should not be used to write Avro GenericRecords.
*/
final case class GenericRecordParseIO[T: Coder](path: String, parseFn: GenericRecord => T)
extends ScioIO[T] {
override type ReadP = GenericRecordParseIO.ReadParam
override type WriteP = Nothing // Output is not defined for Avro Generic Parse IO.
override val tapT: TapT.Aux[T, Nothing] = EmptyTapOf[T]
override def testId: String = s"AvroIO($path)"
/**
* Get an SCollection[T] by applying the [[parseFn]] on
* [[org.apache.avro.generic.GenericRecord GenericRecord]] from an Avro file.
*/
override protected def read(sc: ScioContext, params: ReadP): SCollection[T] = {
val coder = CoderMaterializer.beam(sc, Coder[T])
val filePattern = ScioUtil.filePattern(path, params.suffix)
val t = BAvroIO
.parseGenericRecords(Functions.serializableFn(parseFn))
.from(filePattern)
.withCoder(coder)
sc.applyTransform(t)
}
/** Writes are undefined for [[GenericRecordParseIO]] since it is used only for reading. */
override protected def write(data: SCollection[T], params: Nothing): Tap[Nothing] = ???
override def tap(read: ReadP): Tap[Nothing] = EmptyTap
}
object GenericRecordParseIO {
type ReadParam = GenericRecordIO.ReadParam
val ReadParam = GenericRecordIO.ReadParam
}