case class Builder(_table: Table, _recordFormatter: RecordFormatter[Record], _fileFormat: FileFormat, _fileCommitStrategy: MultiFileCommitStrategy, _writeProperties: Map[String, String]) extends Product with Serializable
- Alphabetic
- By Inheritance
- Builder
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Builder(_table: Table, _recordFormatter: RecordFormatter[Record], _fileFormat: FileFormat, _fileCommitStrategy: MultiFileCommitStrategy, _writeProperties: Map[String, String])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def build(): IcebergRecordBatcher
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def fileCommitStrategy(strategy: MultiFileCommitStrategy): Builder
Sets the strategy for determining if a batch of files (one per partition) is ready to be stored.
- def fileFormat(format: FileFormat): Builder
Sets the file format to use.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def recordFormatter(formatter: RecordFormatter[Record]): Builder
Sets the record formatter that converts from consumer records to Iceberg records.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def table(table: Table): Builder
Sets the Iceberg table to build batches for.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def writeProperties(properties: Map[String, String]): Builder
Sets any additional properties for the underlying data file builder.