Type Alias DataTaskInstanceState

type DataTaskInstanceState = {
    cdcStatus?: {
        accumulatingChangesCount?: number;
        applyingChangesCount?: number;
        latency?: string;
        throughputInKilobytesPerSecond?: number;
        totalProcessedCount?: number;
    };
    duration?: string;
    endTime?: string;
    fullLoad?: {
        completedCount?: number;
        errorCount?: number;
        loadingCount?: number;
        queuedCount?: number;
    };
    general?: {
        datasetCount?: number;
        datasetsInErrorCount?: number;
        dataTaskUpdatedTo?: string;
        gatewayId?: string;
        gatewayName?: string;
        gatewayTaskName?: string;
        lakehouseClusterName?: string;
        liveViewsUpdatedTo?: string;
    };
    lastBatchOfChanges?: {
        relatesToRecordsFrom?: string;
        relatesToRecordsTo?: string;
        throughputInRecordsPerSecond?: number;
        totalProcessedCount?: number;
    };
    message?: string;
    startTime?: string;
    state?: | "STARTING"
    | "RUNNING"
    | "COMPLETED"
    | "FAILED"
    | "CANCELED"
    | "STOPPING";
    streaming?: {
        errorCount?: number;
        latency?: string;
        queuedCount?: number;
        runningCount?: number;
        totalProcessedCount?: number;
    };
}
Index

Properties

cdcStatus?: {
    accumulatingChangesCount?: number;
    applyingChangesCount?: number;
    latency?: string;
    throughputInKilobytesPerSecond?: number;
    totalProcessedCount?: number;
}
duration?: string
endTime?: string
fullLoad?: {
    completedCount?: number;
    errorCount?: number;
    loadingCount?: number;
    queuedCount?: number;
}

Type Declaration

  • OptionalcompletedCount?: number

    Number of datasets that have completed full load in this task run

  • OptionalerrorCount?: number
  • OptionalloadingCount?: number
  • OptionalqueuedCount?: number
general?: {
    datasetCount?: number;
    datasetsInErrorCount?: number;
    dataTaskUpdatedTo?: string;
    gatewayId?: string;
    gatewayName?: string;
    gatewayTaskName?: string;
    lakehouseClusterName?: string;
    liveViewsUpdatedTo?: string;
}

Type Declaration

  • OptionaldatasetCount?: number
  • OptionaldatasetsInErrorCount?: number
  • OptionaldataTaskUpdatedTo?: string

    The latest point in time the data reflects, based on updates from the source system.

  • OptionalgatewayId?: string
  • OptionalgatewayName?: string
  • OptionalgatewayTaskName?: string
  • OptionallakehouseClusterName?: string
  • OptionalliveViewsUpdatedTo?: string
lastBatchOfChanges?: {
    relatesToRecordsFrom?: string;
    relatesToRecordsTo?: string;
    throughputInRecordsPerSecond?: number;
    totalProcessedCount?: number;
}

Type Declaration

  • OptionalrelatesToRecordsFrom?: string

    This batch starts with operational source changes from this time.

  • OptionalrelatesToRecordsTo?: string
  • OptionalthroughputInRecordsPerSecond?: number
  • OptionaltotalProcessedCount?: number
message?: string
startTime?: string
state?:
    | "STARTING"
    | "RUNNING"
    | "COMPLETED"
    | "FAILED"
    | "CANCELED"
    | "STOPPING"
streaming?: {
    errorCount?: number;
    latency?: string;
    queuedCount?: number;
    runningCount?: number;
    totalProcessedCount?: number;
}

Type Declaration

  • OptionalerrorCount?: number

    Number of streaming datasets that have encountered errors

  • Optionallatency?: string
  • OptionalqueuedCount?: number
  • OptionalrunningCount?: number
  • OptionaltotalProcessedCount?: number