case class FileInput(name: String, path: Option[String], paths: Option[Seq[String]], warehousePath: Option[String], catalogName: Option[String], schemaName: Option[String], tableName: Option[String], metastoreUris: Option[String], options: Option[Map[String, String]], format: Option[String], isMetric: Option[Boolean], icebergCatalogType: Option[String], incremental: Option[Incremental], schema: Option[Schema]) extends IncrementalReader with DatasourceReader with FileInputBase with Product with Serializable
Case class representing a file input configuration.
- name
The name of the file input.
- path
Optional single file path.
- paths
Optional list of file paths.
- warehousePath
Optional warehouse path.
- catalogName
Optional catalog name.
- schemaName
Optional schema name.
- tableName
Optional table name.
- metastoreUris
Optional metastore URIs.
- options
Optional additional options for reading files.
- format
Optional file format.
- isMetric
Optional flag indicating if the input is for metrics.
- icebergCatalogType
Optional catalog type for Iceberg tables.
- incremental
Optional incremental configuration.
- schema
Optional schema info.
- Alphabetic
- By Inheritance
- FileInput
- Serializable
- Serializable
- Product
- Equals
- FileInputBase
- DatasourceReader
- Reader
- IncrementalReader
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
FileInput(name: String, path: Option[String], paths: Option[Seq[String]], warehousePath: Option[String], catalogName: Option[String], schemaName: Option[String], tableName: Option[String], metastoreUris: Option[String], options: Option[Map[String, String]], format: Option[String], isMetric: Option[Boolean], icebergCatalogType: Option[String], incremental: Option[Incremental], schema: Option[Schema])
- name
The name of the file input.
- path
Optional single file path.
- paths
Optional list of file paths.
- warehousePath
Optional warehouse path.
- catalogName
Optional catalog name.
- schemaName
Optional schema name.
- tableName
Optional table name.
- metastoreUris
Optional metastore URIs.
- options
Optional additional options for reading files.
- format
Optional file format.
- isMetric
Optional flag indicating if the input is for metrics.
- icebergCatalogType
Optional catalog type for Iceberg tables.
- incremental
Optional incremental configuration.
- schema
Optional schema info.
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
- val catalogName: Option[String]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val filesInput: FilesInput
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- val format: Option[String]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getFormat(format: Option[String], path: String): String
Determines the file format based on the specified format option or file path.
Determines the file format based on the specified format option or file path.
- format
The optional format specified by the user.
- path
The file path.
- returns
The determined file format.
- Definition Classes
- FileInputBase
-
def
getOptions(readFormat: String, options: Option[Map[String, String]]): Option[Map[String, String]]
Retrieves the options for reading files based on the file format.
Retrieves the options for reading files based on the file format.
- readFormat
The file format.
- options
The optional user-provided options.
- returns
The options for reading files.
- Definition Classes
- FileInputBase
-
def
getSchemaStruct(schema: Option[Schema], sparkSession: SparkSession): Option[StructType]
Retrieves the schema structure based on the provided schema path, schema string, and schema type.
Retrieves the schema structure based on the provided schema path, schema string, and schema type.
- schema
Schema info
- sparkSession
The Spark session.
- returns
The schema structure as a
StructType
.
- Definition Classes
- FileInputBase
- val icebergCatalogType: Option[String]
- val incremental: Option[Incremental]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val isMetric: Option[Boolean]
- val metastoreUris: Option[String]
-
val
name: String
The name of the data reader.
-
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()
- val options: Option[Map[String, String]]
- val path: Option[String]
- val pathList: Seq[String]
- val paths: Option[Seq[String]]
-
def
persistIncrementalState(): Unit
Persists the incremental state if any.
Persists the incremental state if any.
- Definition Classes
- IncrementalReader
-
def
read(sparkSession: SparkSession): DataFrame
Reads data from the file input.
-
def
readIncremental(df: DataFrame, incremental: Option[Incremental]): DataFrame
Reads data from a DataFrame with optional incremental settings.
Reads data from a DataFrame with optional incremental settings.
- df
The DataFrame to read data from.
- incremental
Optional Incremental settings to apply.
- returns
A new DataFrame after applying incremental settings if provided, otherwise the original DataFrame.
- Definition Classes
- IncrementalReader
- val schema: Option[Schema]
- val schemaName: Option[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val tableName: Option[String]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val warehousePath: Option[String]