object Default
- Alphabetic
- By Inheritance
- Default
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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 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.
- 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)refers to the output catalog in version 2. Example 2:
Default.FixedVersionId("inputA", 5)
refers to the input catalog "inputA" in version 5.
- 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.
- 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.
- 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.
- 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.
- catalogId
A catalog identifier from the configuration of the pipeline.
- returns
A catalog identifier that refers to the given catalog at the previous run.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)