Search code examples
azureazure-databricksazure-data-factory

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?


Solution

  • 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.