package writers
Type Members
-
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.
- trait DatasourceWriter extends Writer
-
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.
-
class
WriterFactory extends AnyRef
Factory class to create instances of different types of writers based on the output configuration.