Packages

p

io.dataos.spark

writers

package writers

Type Members

  1. case class DatasetWriter(name: String, address: String, datasourceWriter: DatasourceWriter) extends Writer with Product with Serializable

    A custom implementation of a Writer that uses a specific DatasourceWriter to write data from a DataFrame to a specified data source.

    A custom implementation of a Writer that uses a specific DatasourceWriter to write data from a DataFrame to a specified data source.

    name

    The name of the data source writer.

    address

    The address of the data source.

    datasourceWriter

    The DatasourceWriter implementation responsible for writing data to the specified data source.

  2. trait DatasourceWriter extends Writer
  3. trait Writer extends Serializable

    A trait representing a data writer for writing data from a DataFrame to various data sources.

    A trait representing a data writer for writing data from a DataFrame to various data sources. Concrete classes implementing this trait are responsible for writing the data to specific data sources.

  4. class WriterFactory extends AnyRef

    Factory class to create instances of different types of writers based on the output configuration.

Ungrouped