Packages

object Default

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

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 val FeedbackCatalogId: String

    The identifier that refers to output catalog in the version produced by the previous compiler run, also referred to as the feedback catalog.

    The identifier that refers to output catalog in the version produced by the previous compiler run, also referred to as the feedback catalog.

    The feedback catalog can be used as further input for compilation. The feedback catalog identifier always refers to the base version of the output catalog.

    Note

    Use the OutCatalogId to generate output partitions, not the FeedbackCatalogId.

  5. final def FixedVersionId(catalogId: String, fixedVersion: Version): String

    Defines a catalog identifier to refer to a fixed version of the catalog.

    Defines a catalog identifier to refer to a fixed version of the catalog. Given a catalog identifier and a version, the returned identifier refers the catalog in that version.

    The fixed version is not provided by the pipeline job configuration but can, for example, be configured in the compiler configuration, read from an input catalog or be hardcoded in the source code of the compiler.

    catalogId

    A catalog identifier from the configuration of the pipeline.

    fixedVersion

    The version of the catalog to which should be referred.

    returns

    A catalog identifier that refers to the given catalog at a fixed version.

    Note

    If two subsequent runs of the same compiler access different fixed versions of a catalog, the second run will be non-incremental to avoid data inconsistencies. Example 1:

    Default.FixedVersionId(Default.OutCatalogId, 2)

    catalog in version 2. Example 2:

    Default.FixedVersionId("inputA", 5)

    in version 5.

  6. final val OutCatalogId: String

    The identifier that refers to the output catalog in the driver.

    The identifier that refers to the output catalog in the driver. Compilers should generate output partition keys using this output catalog ID.

  7. final def PreviousRunId(catalogId: String, previousRun: Long): String

    Defines a catalog identifier to refer to a specific version of the catalog.

    Defines a catalog identifier to refer to a specific version of the catalog. Given an input catalog identifier, the augmented identifier refers the catalog version used by the given previous compilation; given the output catalog identifier, the augmented identifier refers to the catalog version produced by the given previous compilation.

    Example 1:

    Default.PreviousRunId("inputA", 2)

    refers to the input catalog "inputA" in the version used in the second most recent compilation.

    Example 2:

    Default.PreviousRunId(Default.OutCatalogId, 1)

    refers to the output catalog produced by the previous compilation, that is, the feedback catalog.

    Default.PreviousRunId(Default.OutCatalogId, 1) }}} produced by the previous compilation, that is, the feedback catalog.

    Default.PreviousRunId("inputA", 2) }}} the version used in the second most recent compilation.

    Example 2:

    Default.PreviousRunId(Default.OutCatalogId, 1)

    refers to the output catalog produced by the previous compilation, that is, the feedback catalog.

    Default.PreviousRunId(Default.OutCatalogId, 1) }}} produced by the previous compilation, that is, the feedback catalog.

    catalogId

    A catalog identifier from the configuration of the pipeline.

    previousRun

    The number of compilations to go back in time. For example, 1 refers to the previous version of the output catalog; 2 refers to the version before that. Must be greater than 0.

    returns

    A catalog identifier that refers to the given catalog at a previous run.

  8. final def PreviousRunId(catalogId: String): String

    Defines a catalog identifier to refer to a specific version of the catalog.

    Defines a catalog identifier to refer to a specific version of the catalog. Given an input catalog identifier, the augmented identifier refers the catalog version used by the previous compilation; given the output catalog identifier, the augmented identifier refers to the catalog version produced by the previous compilation.

    Example 1:

    Default.PreviousRunId("inputA")

    refers to the input catalog "inputA" in the version used in the previous compilation.

    Example 2:

    Default.PreviousRunId(Default.OutCatalogId)

    refers to the output catalog produced by the previous compilation, that is, the feedback catalog.

    Default.PreviousRunId(Default.OutCatalogId) }}} produced by the previous compilation, that is, the feedback catalog.

    Default.PreviousRunId("inputA") }}} version used in the previous compilation.

    Example 2:

    Default.PreviousRunId(Default.OutCatalogId)

    refers to the output catalog produced by the previous compilation, that is, the feedback catalog.

    Default.PreviousRunId(Default.OutCatalogId) }}} produced by the previous compilation, that is, the feedback catalog.

    catalogId

    A catalog identifier from the configuration of the pipeline.

    returns

    A catalog identifier that refers to the given catalog at the previous run.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped