Packages

class RunnerWebFacade extends RunnerFacade with ServiceWebFacade

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RunnerWebFacade
  2. ServiceWebFacade
  3. RunnerFacade
  4. ServiceFacade
  5. ServiceFacadeBase
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RunnerWebFacade(hostAddress: String, httpClient: HttpClient, environment: String, token: UUID, connectAttempts: Int)

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. var _httpChannel: HttpChannel
    Attributes
    protected
    Definition Classes
    RunnerWebFacadeServiceWebFacade
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  7. val environment: String
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def getBuildInfo: BuildLabels
    Definition Classes
    ServiceWebFacade
  11. def getCacheStatistics: Array[CacheStatistics]
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. def getExecutableForTransformForPipeline(pipeline: PipelineContent, transform: String): String

    Builds a scala code snippet that includes the transform code of a pipeline definition and compiles as a standalone file, assuming all library dependencies are present.

    Builds a scala code snippet that includes the transform code of a pipeline definition and compiles as a standalone file, assuming all library dependencies are present.

    pipeline

    The pipeline definition.

    transform

    The id of the transform to use.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  14. def getFile(path: String, outputStream: OutputStream): Unit
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  15. def getLogLevel: String
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  16. val getOutputDefaultLocale: String

    The default value for locale used in the API.

    The default value for locale used in the API. The value is equal to EnvironmentVariables.DATASOLVR_DEFAULT_OUTPUT_LOCALE.

    Definition Classes
    RunnerFacade
  17. val getOutputDefaultMaxDecimals: Int

    The default value for maxDecimals used in the API.

    The default value for maxDecimals used in the API. The value is equal to EnvironmentVariables.DATASOLVR_DEFAULT_MAX_DECIMALS.

    Definition Classes
    RunnerFacade
  18. def getPerformanceMetrics: PerformanceMetrics
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  19. def getRaw(url: String): String
    Definition Classes
    ServiceWebFacade
  20. def getSparkUIEndpoint: String

    The endpoint for contacting the API of the Apache Spark UI.

    The endpoint for contacting the API of the Apache Spark UI. This is used to report progress on job execution similar to what is seen the Spark UI.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  21. def getTestResultsOutputForTransformForPipeline(pipeline: PipelineContent, transform: String, date: LocalDateTime, sampleSize: Option[Int], outputSize: Option[Int], locale: String, maxDecimals: Int, serializeAsJson: Boolean = false): TestResultOutput

    Gets the results of a test execution for given pipeline definition and transform.

    Gets the results of a test execution for given pipeline definition and transform. This does not schedule a new test execution, but assumes that a completed execution matching the parameters exists.

    pipeline

    The pipeline definition.

    transform

    The id of the transform.

    date

    The date to use for running the pipeline.

    sampleSize

    An optional sample size which is applied to all imports in the pipeline.

    outputSize

    An optional output size which is applied as a limit on the output data set.

    locale

    The locale to use when formatting numbers, i.e. 'da'.

    maxDecimals

    The maximum number of decimals to include when formatting numbers.

    serializeAsJson

    When true the result's TestResultOutput.dataTableContent contains a json string else it contains a csv string.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  22. def getTestResultsStatusForPipeline(pipeline: PipelineContent, date: LocalDateTime, sampleSize: Option[Int], outputSize: Option[Int]): Array[TransformTestResultStatus]

    Gets the status of a test execution for each transform in a given pipeline definition.

    Gets the status of a test execution for each transform in a given pipeline definition.

    pipeline

    The pipeline definition.

    date

    The date to use for running the pipeline.

    sampleSize

    An optional sample size which is applied to all imports in the pipeline.

    outputSize

    An optional output size which is applied as a limit on the output data set.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  23. def getVersion: String
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  25. val hostAddress: String
    Definition Classes
    RunnerWebFacadeServiceWebFacade
  26. implicit def httpChannel: HttpChannel
    Definition Classes
    ServiceWebFacade
  27. val httpClient: HttpClient
    Definition Classes
    RunnerWebFacadeServiceWebFacade
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def isReady: Boolean
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  33. def postAnalyzeCodeForColumns(code: String, tag: String, date: LocalDateTime): Array[Column]

    Get auto-complete column candidates at a given point in a SQL code snippet.

    Get auto-complete column candidates at a given point in a SQL code snippet.

    code

    The information on the code snippet and completion point.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  34. def postAnalyzeCodeForColumnsForPipeline(pipeline: PipelineContent, transform: String): Array[Column]

    Get auto-complete column candidates at a given point in a SQL transform in a pipeline.

    Get auto-complete column candidates at a given point in a SQL transform in a pipeline.

    pipeline

    The pipeline definition.

    transform

    The transform in the pipeline.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  35. def postAutoCompleteCode(codeRequest: AutoCompleteRequest): Array[AutoComplete]

    Get auto-complete candidates at a given point in a code snippet.

    Get auto-complete candidates at a given point in a code snippet.

    codeRequest

    The information on the code snippet and completion point.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  36. def postAutoCompleteCodeForPipeline(pipeline: PipelineContent, transform: String, offset: Int): Array[AutoComplete]

    Get auto-complete candidates at a given point in a transform in a pipeline.

    Get auto-complete candidates at a given point in a transform in a pipeline.

    pipeline

    The pipeline definition.

    transform

    The id of the transform in the pipeline.

    offset

    The character offset for which to obtain auto-complete candidates.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  37. def postCachePurge(id: Option[String]): Unit
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  38. def postCancelJobGroupForUser(): Unit

    Cancel all running test executions started by the calling user.

    Cancel all running test executions started by the calling user.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  39. def postCompileCode(codeRequest: CompileRequest): Array[Annotation]

    Get compilation errors for a code snippet in the form of code annotations.

    Get compilation errors for a code snippet in the form of code annotations.

    codeRequest

    The information on the code snippet to compile.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  40. def postCompileCodeForPipeline(pipeline: PipelineContent, transform: String): Array[Annotation]

    Get compilation errors for a transform in a pipeline definition in the form of code annotations.

    Get compilation errors for a transform in a pipeline definition in the form of code annotations.

    pipeline

    The pipeline definition.

    transform

    The transform in the pipeline.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  41. val postDefaultDate: () => LocalDateTime

    The default value for date used in the API.

    The default value for date used in the API. The value is a function that returns the current UTC time.

    Definition Classes
    RunnerFacade
  42. val postDefaultOutputSize: Int

    The default value for outputSize used in the API.

    The default value for outputSize used in the API. The value is 1000.

    Definition Classes
    RunnerFacade
  43. val postDefaultSampleSize: Int

    The default value for sampleSize used in the API.

    The default value for sampleSize used in the API. The value is 200.

    Definition Classes
    RunnerFacade
  44. def postFormatCode(request: FormatRequest): String

    Formats a code snippet.

    Formats a code snippet.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  45. def postGenerateDashboardForSourceSnapshotInfo(snapshotInfo: SourceSnapshotInfo, targetColumn: String): DashboardContent

    Generates a dashboard definition based on a source snapshot and a target column.

    Generates a dashboard definition based on a source snapshot and a target column. This method attempts to generate a meaningful dashboard definition for a given source snapshot and primary target column of interest.

    snapshotInfo

    The source snapshot to generate the dashboard from.

    targetColumn

    The name of the primary column to use for deciding which charts to present.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  46. def postGenerateForSource(description: SourceDescription, options: Map[String, String], tag: String = Tags.empty): SourceContent

    Generates a complete source definition based on the a source description.

    Generates a complete source definition based on the a source description. This method attempts to generate a meaningful source data description by running the source from the the source description and looking at the schema and contents of the resulting data set.

    description

    A description of how to run the source.

    options

    A collections of options the source should be run with.

    tag

    An optional tag the source should be run with.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  47. def postRaw(url: String, body: String): String
    Definition Classes
    ServiceWebFacade
  48. def postRestart: Unit
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  49. def postTestForPipeline(pipeline: PipelineContent, date: LocalDateTime, sampleSize: Option[Int], outputSize: Option[Int], transform: Option[String], locale: String = getOutputDefaultLocale, maxDecimals: Int = getOutputDefaultMaxDecimals): Unit

    Starts a test execution for a given pipeline definition and (optionally) a specific transform.

    Starts a test execution for a given pipeline definition and (optionally) a specific transform.

    pipeline

    The pipeline definition.

    date

    The date to use for running the pipeline.

    sampleSize

    An optional sample size which is applied to all imports in the pipeline.

    outputSize

    An optional output size which is applied as a limit on the output data set.

    transform

    The id of the transform, or None to run the full pipeline.

    locale

    The locale to use when formatting numbers, i.e. 'da'.

    maxDecimals

    The maximum number of decimals to include when formatting numbers.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  50. def postTestForSource(source: SourceContent, date: LocalDateTime, sampleSize: Option[Int], outputSize: Option[Int], locale: String = getOutputDefaultLocale, maxDecimals: Int = getOutputDefaultMaxDecimals, serializeAsJson: Boolean = false): TestResult

    Starts a test execution for a given source definition.

    Starts a test execution for a given source definition.

    source

    The source definition.

    date

    The date to use for running the source.

    sampleSize

    An optional sample size which is applied to all imports in the pipeline.

    outputSize

    An optional output size which is applied as a limit on the output data set.

    locale

    The locale to use when formatting numbers, i.e. 'da'.

    maxDecimals

    The maximum number of decimals to include when formatting numbers.

    serializeAsJson

    When true the result's TestResultOutput.dataTableContent contains a json string else it contains a csv string.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  51. def postValidateForPlugins(plugins: PluginsContent): Unit

    Check a given collection of custom functions, transforms and modules for validity.

    Check a given collection of custom functions, transforms and modules for validity.

    plugins

    The content to check.

    Definition Classes
    RunnerWebFacadeRunnerFacade
  52. def setLogLevel(level: String): Unit
    Definition Classes
    ServiceWebFacadeServiceFacadeBase
  53. def sparkMetricsFacade: SparkMetricsWebFacade
  54. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  55. def toString(): String
    Definition Classes
    AnyRef → Any
  56. val token: UUID
    Definition Classes
    RunnerWebFacadeServiceWebFacade
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  59. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. def waitIsReady(timeoutSeconds: Int, pollIntervalSeconds: Int): Unit
    Definition Classes
    ServiceFacadeBase
  61. def withTimeout(seconds: Int): RunnerWebFacade
  62. def withToken(other: UUID): RunnerWebFacade
    Definition Classes
    RunnerWebFacadeServiceFacade

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from ServiceWebFacade

Inherited from RunnerFacade

Inherited from ServiceFacade[RunnerFacade]

Inherited from ServiceFacadeBase

Inherited from AnyRef

Inherited from Any

Ungrouped