Packages

t

org.apache.spark.sql

WriteConfigMethods

trait WriteConfigMethods[R] extends AnyRef

Configuration methods common to create/replace operations and insert/overwrite operations.

R

builder type to return

Source
DataFrameWriterV2.scala
Since

3.0.0

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WriteConfigMethods
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def option(key: String, value: String): R

    Add a write option.

    Add a write option.

    Since

    3.0.0

  2. abstract def options(options: Map[String, String]): R

    Add write options from a Java Map.

    Add write options from a Java Map.

    Since

    3.0.0

  3. abstract def options(options: Map[String, String]): R

    Add write options from a Scala Map.

    Add write options from a Scala Map.

    Since

    3.0.0

Concrete Value Members

  1. def option(key: String, value: Double): R

    Add a double output option.

    Add a double output option.

    Since

    3.0.0

  2. def option(key: String, value: Long): R

    Add a long output option.

    Add a long output option.

    Since

    3.0.0

  3. def option(key: String, value: Boolean): R

    Add a boolean output option.

    Add a boolean output option.

    Since

    3.0.0