Packages

object Files

Note

General note on working with files in Checkita Framework:

  • Path may contain file system connector prefix such as file:// to read from local file system or s3a:// to read from S3 storage.
  • It is up to user to setup all required spark configuration parameters to read from and write into specified file system.
  • If file system connector prefix is not defined then files are always read from and written into Spark's default file system.
  • Pay attention when running framework in local mode: in this case spark will read files from local file system only.
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Files
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait AvroFileConfig extends FileConfig

    Base trait for Avro files.

    Base trait for Avro files. Configuration for avro files may contain reference to avro schema ID.

  2. trait DelimitedFileConfig extends FileConfig

    Base trait for delimited text files such as CSV or TSV.

    Base trait for delimited text files such as CSV or TSV. For such file configuration must contain following parameters:

    • delimiter symbol
    • quote symbol
    • escape symbol
    • flag indicating that schema must be read from header
    • explicit schema ID for cases when header is absent or should be ignored
  3. trait FileConfig extends AnyRef

    Base trait for all types of configurations that refer to a file.

    Base trait for all types of configurations that refer to a file. All such configurations must contain a path to a file. In addition, optional schemaId can be provided to point to a schema used for data reading.

  4. trait FixedFileConfig extends FileConfig

    Base trait for fixed-width text files.

    Base trait for fixed-width text files. For such files configuration must contain reference explicit fixed (full or short) schema ID

  5. trait OrcFileConfig extends FileConfig

    Base trait for ORC files

  6. trait ParquetFileConfig extends FileConfig

    Base trait for Parquet files

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped