case class AutoTaskDesc(name: Option[String], sql: Option[String], domain: String, dataset: String, write: WriteMode, partition: Option[List[String]] = None, presql: Option[List[String]] = None, postsql: Option[List[String]] = None, area: Option[StorageArea] = None, sink: Option[Sink] = None, rls: Option[List[RowLevelSecurity]] = None, assertions: Option[Map[String, String]] = None) extends Product with Serializable

Task executed in the context of a job. Each task is executed in its own session.

sql

Main SQL request to exexute (do not forget to prefix table names with the database name to avoid conflicts)

domain

Output domain in output Area (Will be the Database name in Hive or Dataset in BigQuery)

dataset

Dataset Name in output Area (Will be the Table name in Hive & BigQuery)

write

Append to or overwrite existing data

partition

List of columns used for partitioning the outtput.

presql

List of SQL requests to executed before the main SQL request is run

postsql

List of SQL requests to executed after the main SQL request is run

area

Target Area where domain / dataset will be stored.

sink

Where to sink the data

rls

Row level security policy to apply too the output data.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AutoTaskDesc
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AutoTaskDesc(name: Option[String], sql: Option[String], domain: String, dataset: String, write: WriteMode, partition: Option[List[String]] = None, presql: Option[List[String]] = None, postsql: Option[List[String]] = None, area: Option[StorageArea] = None, sink: Option[Sink] = None, rls: Option[List[RowLevelSecurity]] = None, assertions: Option[Map[String, String]] = None)

    sql

    Main SQL request to exexute (do not forget to prefix table names with the database name to avoid conflicts)

    domain

    Output domain in output Area (Will be the Database name in Hive or Dataset in BigQuery)

    dataset

    Dataset Name in output Area (Will be the Table name in Hive & BigQuery)

    write

    Append to or overwrite existing data

    partition

    List of columns used for partitioning the outtput.

    presql

    List of SQL requests to executed before the main SQL request is run

    postsql

    List of SQL requests to executed after the main SQL request is run

    area

    Target Area where domain / dataset will be stored.

    sink

    Where to sink the data

    rls

    Row level security policy to apply too the output data.

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. val area: Option[StorageArea]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val assertions: Option[Map[String, String]]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. val dataset: String
  9. val domain: String
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def getHiveDB(defaultArea: StorageArea): String
  14. def getPartitions(): List[String]
    Annotations
    @JsonIgnore()
  15. def getSql(): String
  16. def getTargetPath(defaultArea: StorageArea)(implicit settings: Settings): Path

    Return a Path only if a storage area s defined

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. val name: Option[String]
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. val partition: Option[List[String]]
  23. val postsql: Option[List[String]]
  24. val presql: Option[List[String]]
  25. val rls: Option[List[RowLevelSecurity]]
  26. val sink: Option[Sink]
  27. val sql: Option[String]
  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  32. val write: WriteMode

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped