user9482910
user9482910

Reputation: 25

What is the meaning of following ADF output

I am running Python notebook on Azure data factory. Which has failed and giving me following output.

{
    "effectiveIntegrationRuntime": "DefaultIntegrationRuntime (Central India)",
    "executionDuration": 260,
    "durationInQueue": {
        "integrationRuntimeQueue": 0
    },
    "billingReference": {
        "activityType": "ExternalActivity",
        "billableDuration": [
            {
                "meterType": "AzureIR",
                "duration": 0.08333333333333333,
                "unit": "Hours"
            }
        ]
    }
}

What is the meaning of this output?

Upvotes: 0

Views: 984

Answers (2)

Mark Kromer MSFT
Mark Kromer MSFT

Reputation: 3838

It means your activity ran on an Azure Integration Runtime (DefaultIntegrationRuntime in Central India) and you were billed for ~260 seconds of usage.

Upvotes: 0

Leon Yue
Leon Yue

Reputation: 16401

Per my experience, it's the pipeline run consumption. It give the value which can help you calculate the cost of the pipeline. No matter the pipeline failed or succeeded. enter image description here

Ref this: https://azure.microsoft.com/en-us/pricing/calculator/?service=data-factory%2F

HTH.

Upvotes: 1

Related Questions