Source code for airflow.providers.dbt.cloud.hooks.dbt
# Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License.from__future__importannotationsimportasyncioimportjsonimporttimefromenumimportEnumfromfunctoolsimportcached_property,wrapsfrominspectimportsignaturefromtypingimportTYPE_CHECKING,Any,Callable,Sequence,Set,TypeVar,castimportaiohttpfromaiohttpimportClientResponseErrorfromasgiref.syncimportsync_to_asyncfromrequests.authimportAuthBasefromrequests.sessionsimportSessionfromairflow.exceptionsimportAirflowExceptionfromairflow.providers.http.hooks.httpimportHttpHookfromairflow.typing_compatimportTypedDictifTYPE_CHECKING:fromrequests.modelsimportPreparedRequest,Responsefromairflow.modelsimportConnection
[docs]deffallback_to_default_account(func:Callable)->Callable:""" Provide a fallback value for ``account_id``. If the ``account_id`` is None or not passed to the decorated function, the value will be taken from the configured dbt Cloud Airflow Connection. """sig=signature(func)@wraps(func)defwrapper(*args,**kwargs)->Callable:bound_args=sig.bind(*args,**kwargs)# Check if ``account_id`` was not included in the function signature or, if it is, the value is not# provided.ifbound_args.arguments.get("account_id")isNone:self=args[0]default_account_id=self.connection.loginifnotdefault_account_id:raiseAirflowException("Could not determine the dbt Cloud account.")bound_args.arguments["account_id"]=int(default_account_id)returnfunc(*bound_args.args,**bound_args.kwargs)returnwrapper
[docs]defcheck_is_valid(cls,statuses:int|Sequence[int]|set[int]):"""Validate input statuses are a known value."""ifisinstance(statuses,(Sequence,Set)):forstatusinstatuses:cls(status)else:cls(statuses)
@classmethod
[docs]defis_terminal(cls,status:int)->bool:"""Check if the input status is that of a terminal type."""cls.check_is_valid(statuses=status)returnstatusincls.TERMINAL_STATUSES.value
[docs]classDbtCloudJobRunException(AirflowException):"""An exception that indicates a job run failed to complete."""
[docs]defprovide_account_id(func:T)->T:""" Provide a fallback value for ``account_id``. If the ``account_id`` is None or not passed to the decorated function, the value will be taken from the configured dbt Cloud Airflow Connection. """function_signature=signature(func)@wraps(func)asyncdefwrapper(*args:Any,**kwargs:Any)->Any:bound_args=function_signature.bind(*args,**kwargs)ifbound_args.arguments.get("account_id")isNone:self=args[0]ifself.dbt_cloud_conn_id:connection=awaitsync_to_async(self.get_connection)(self.dbt_cloud_conn_id)default_account_id=connection.loginifnotdefault_account_id:raiseAirflowException("Could not determine the dbt Cloud account.")bound_args.arguments["account_id"]=int(default_account_id)returnawaitfunc(*bound_args.args,**bound_args.kwargs)returncast(T,wrapper)
[docs]classDbtCloudHook(HttpHook):""" Interact with dbt Cloud using the V2 API. :param dbt_cloud_conn_id: The ID of the :ref:`dbt Cloud connection <howto/connection:dbt-cloud>`. """
[docs]defget_ui_field_behaviour()->dict[str,Any]:"""Build custom field behavior for the dbt Cloud connection form in the Airflow UI."""return{"hidden_fields":["schema","port","extra"],"relabeling":{"login":"Account ID","password":"API Token","host":"Tenant"},"placeholders":{"host":"Defaults to 'cloud.getdbt.com'."},}
[docs]defget_request_url_params(tenant:str,endpoint:str,include_related:list[str]|None=None)->tuple[str,dict[str,Any]]:""" Form URL from base url and endpoint url. :param tenant: The tenant domain name which is need to be replaced in base url. :param endpoint: Endpoint url to be requested. :param include_related: Optional. List of related fields to pull with the run. Valid values are "trigger", "job", "repository", and "environment". """data:dict[str,Any]={}ifinclude_related:data={"include_related":include_related}url=f"https://{tenant}/api/v2/accounts/{endpointor''}"returnurl,data
[docs]asyncdefget_headers_tenants_from_connection(self)->tuple[dict[str,Any],str]:"""Get Headers, tenants from the connection details."""headers:dict[str,Any]={}tenant=self._get_tenant_domain(self.connection)package_name,provider_version=_get_provider_info()headers["User-Agent"]=f"{package_name}-v{provider_version}"headers["Content-Type"]="application/json"headers["Authorization"]=f"Token {self.connection.password}"returnheaders,tenant
@provide_account_id
[docs]asyncdefget_job_details(self,run_id:int,account_id:int|None=None,include_related:list[str]|None=None)->Any:""" Use Http async call to retrieve metadata for a specific run of a dbt Cloud job. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. :param include_related: Optional. List of related fields to pull with the run. Valid values are "trigger", "job", "repository", and "environment". """endpoint=f"{account_id}/runs/{run_id}/"headers,tenant=awaitself.get_headers_tenants_from_connection()url,params=self.get_request_url_params(tenant,endpoint,include_related)asyncwithaiohttp.ClientSession(headers=headers)assession,session.get(url,params=params)asresponse:try:response.raise_for_status()returnawaitresponse.json()exceptClientResponseErrorase:raiseAirflowException(f"{e.status}:{e.message}")
[docs]asyncdefget_job_status(self,run_id:int,account_id:int|None=None,include_related:list[str]|None=None)->int:""" Retrieve the status for a specific run of a dbt Cloud job. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. :param include_related: Optional. List of related fields to pull with the run. Valid values are "trigger", "job", "repository", and "environment". """self.log.info("Getting the status of job run %s.",run_id)response=awaitself.get_job_details(run_id,account_id=account_id,include_related=include_related)job_run_status:int=response["data"]["status"]returnjob_run_status
@cached_property
[docs]defconnection(self)->Connection:_connection=self.get_connection(self.dbt_cloud_conn_id)ifnot_connection.password:raiseAirflowException("An API token is required to connect to dbt Cloud.")return_connection
def_paginate(self,endpoint:str,payload:dict[str,Any]|None=None)->list[Response]:response=self.run(endpoint=endpoint,data=payload)resp_json=response.json()limit=resp_json["extra"]["filters"]["limit"]num_total_results=resp_json["extra"]["pagination"]["total_count"]num_current_results=resp_json["extra"]["pagination"]["count"]results=[response]ifnum_current_results!=num_total_results:_paginate_payload=payload.copy()ifpayloadelse{}_paginate_payload["offset"]=limitwhilenum_current_results<num_total_results:response=self.run(endpoint=endpoint,data=_paginate_payload)resp_json=response.json()results.append(response)num_current_results+=resp_json["extra"]["pagination"]["count"]_paginate_payload["offset"]+=limitreturnresultsdef_run_and_get_response(self,method:str="GET",endpoint:str|None=None,payload:str|dict[str,Any]|None=None,paginate:bool=False,)->Any:self.method=methodifpaginate:ifisinstance(payload,str):raiseValueError("Payload cannot be a string to paginate a response.")ifendpoint:returnself._paginate(endpoint=endpoint,payload=payload)else:raiseValueError("An endpoint is needed to paginate a response.")returnself.run(endpoint=endpoint,data=payload)
[docs]deflist_accounts(self)->list[Response]:""" Retrieve all of the dbt Cloud accounts the configured API token is authorized to access. :return: List of request responses. """returnself._run_and_get_response()
@fallback_to_default_account
[docs]defget_account(self,account_id:int|None=None)->Response:""" Retrieve metadata for a specific dbt Cloud account. :param account_id: Optional. The ID of a dbt Cloud account. :return: The request response. """returnself._run_and_get_response(endpoint=f"{account_id}/")
@fallback_to_default_account
[docs]deflist_projects(self,account_id:int|None=None)->list[Response]:""" Retrieve metadata for all projects tied to a specified dbt Cloud account. :param account_id: Optional. The ID of a dbt Cloud account. :return: List of request responses. """returnself._run_and_get_response(endpoint=f"{account_id}/projects/",paginate=True)
@fallback_to_default_account
[docs]defget_project(self,project_id:int,account_id:int|None=None)->Response:""" Retrieve metadata for a specific project. :param project_id: The ID of a dbt Cloud project. :param account_id: Optional. The ID of a dbt Cloud account. :return: The request response. """returnself._run_and_get_response(endpoint=f"{account_id}/projects/{project_id}/")
@fallback_to_default_account
[docs]deflist_jobs(self,account_id:int|None=None,order_by:str|None=None,project_id:int|None=None,)->list[Response]:""" Retrieve metadata for all jobs tied to a specified dbt Cloud account. If a ``project_id`` is supplied, only jobs pertaining to this project will be retrieved. :param account_id: Optional. The ID of a dbt Cloud account. :param order_by: Optional. Field to order the result by. Use '-' to indicate reverse order. For example, to use reverse order by the run ID use ``order_by=-id``. :param project_id: The ID of a dbt Cloud project. :return: List of request responses. """returnself._run_and_get_response(endpoint=f"{account_id}/jobs/",payload={"order_by":order_by,"project_id":project_id},paginate=True,)
@fallback_to_default_account
[docs]defget_job(self,job_id:int,account_id:int|None=None)->Response:""" Retrieve metadata for a specific job. :param job_id: The ID of a dbt Cloud job. :param account_id: Optional. The ID of a dbt Cloud account. :return: The request response. """returnself._run_and_get_response(endpoint=f"{account_id}/jobs/{job_id}")
@fallback_to_default_account
[docs]deftrigger_job_run(self,job_id:int,cause:str,account_id:int|None=None,steps_override:list[str]|None=None,schema_override:str|None=None,additional_run_config:dict[str,Any]|None=None,)->Response:""" Triggers a run of a dbt Cloud job. :param job_id: The ID of a dbt Cloud job. :param cause: Description of the reason to trigger the job. :param account_id: Optional. The ID of a dbt Cloud account. :param steps_override: Optional. List of dbt commands to execute when triggering the job instead of those configured in dbt Cloud. :param schema_override: Optional. Override the destination schema in the configured target for this job. :param additional_run_config: Optional. Any additional parameters that should be included in the API request when triggering the job. :return: The request response. """ifadditional_run_configisNone:additional_run_config={}payload={"cause":cause,"steps_override":steps_override,"schema_override":schema_override,}payload.update(additional_run_config)returnself._run_and_get_response(method="POST",endpoint=f"{account_id}/jobs/{job_id}/run/",payload=json.dumps(payload),)
@fallback_to_default_account
[docs]deflist_job_runs(self,account_id:int|None=None,include_related:list[str]|None=None,job_definition_id:int|None=None,order_by:str|None=None,)->list[Response]:""" Retrieve metadata for all dbt Cloud job runs for an account. If a ``job_definition_id`` is supplied, only metadata for runs of that specific job are pulled. :param account_id: Optional. The ID of a dbt Cloud account. :param include_related: Optional. List of related fields to pull with the run. Valid values are "trigger", "job", "repository", and "environment". :param job_definition_id: Optional. The dbt Cloud job ID to retrieve run metadata. :param order_by: Optional. Field to order the result by. Use '-' to indicate reverse order. For example, to use reverse order by the run ID use ``order_by=-id``. :return: List of request responses. """returnself._run_and_get_response(endpoint=f"{account_id}/runs/",payload={"include_related":include_related,"job_definition_id":job_definition_id,"order_by":order_by,},paginate=True,)
@fallback_to_default_account
[docs]defget_job_run(self,run_id:int,account_id:int|None=None,include_related:list[str]|None=None)->Response:""" Retrieve metadata for a specific run of a dbt Cloud job. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. :param include_related: Optional. List of related fields to pull with the run. Valid values are "trigger", "job", "repository", and "environment". :return: The request response. """returnself._run_and_get_response(endpoint=f"{account_id}/runs/{run_id}/",payload={"include_related":include_related},)
[docs]defget_job_run_status(self,run_id:int,account_id:int|None=None)->int:""" Retrieve the status for a specific run of a dbt Cloud job. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. :return: The status of a dbt Cloud job run. """self.log.info("Getting the status of job run %s.",run_id)job_run=self.get_job_run(account_id=account_id,run_id=run_id)job_run_status=job_run.json()["data"]["status"]self.log.info("Current status of job run %s: %s",run_id,DbtCloudJobRunStatus(job_run_status).name)returnjob_run_status
[docs]defwait_for_job_run_status(self,run_id:int,account_id:int|None=None,expected_statuses:int|Sequence[int]|set[int]=DbtCloudJobRunStatus.SUCCESS.value,check_interval:int=60,timeout:int=60*60*24*7,)->bool:""" Wait for a dbt Cloud job run to match an expected status. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. :param expected_statuses: Optional. The desired status(es) to check against a job run's current status. Defaults to the success status value. :param check_interval: Time in seconds to check on a pipeline run's status. :param timeout: Time in seconds to wait for a pipeline to reach a terminal status or the expected status. :return: Boolean indicating if the job run has reached the ``expected_status``. """expected_statuses=(expected_statuses,)ifisinstance(expected_statuses,int)elseexpected_statusesDbtCloudJobRunStatus.check_is_valid(expected_statuses)job_run_info=JobRunInfo(account_id=account_id,run_id=run_id)job_run_status=self.get_job_run_status(**job_run_info)start_time=time.monotonic()while(notDbtCloudJobRunStatus.is_terminal(job_run_status)andjob_run_statusnotinexpected_statuses):# Check if the job-run duration has exceeded the ``timeout`` configured.ifstart_time+timeout<time.monotonic():raiseDbtCloudJobRunException(f"Job run {run_id} has not reached a terminal status after {timeout} seconds.")# Wait to check the status of the job run based on the ``check_interval`` configured.time.sleep(check_interval)job_run_status=self.get_job_run_status(**job_run_info)returnjob_run_statusinexpected_statuses
@fallback_to_default_account
[docs]defcancel_job_run(self,run_id:int,account_id:int|None=None)->None:""" Cancel a specific dbt Cloud job run. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. """self._run_and_get_response(method="POST",endpoint=f"{account_id}/runs/{run_id}/cancel/")
@fallback_to_default_account
[docs]deflist_job_run_artifacts(self,run_id:int,account_id:int|None=None,step:int|None=None)->list[Response]:""" Retrieve a list of the available artifact files generated for a completed run of a dbt Cloud job. By default, this returns artifacts from the last step in the run. To list artifacts from other steps in the run, use the ``step`` parameter. :param run_id: The ID of a dbt Cloud job run. :param account_id: Optional. The ID of a dbt Cloud account. :param step: Optional. The index of the Step in the Run to query for artifacts. The first step in the run has the index 1. If the step parameter is omitted, artifacts for the last step in the run will be returned. :return: List of request responses. """returnself._run_and_get_response(endpoint=f"{account_id}/runs/{run_id}/artifacts/",payload={"step":step})
@fallback_to_default_account
[docs]defget_job_run_artifact(self,run_id:int,path:str,account_id:int|None=None,step:int|None=None)->Response:""" Retrieve a list of the available artifact files generated for a completed run of a dbt Cloud job. By default, this returns artifacts from the last step in the run. To list artifacts from other steps in the run, use the ``step`` parameter. :param run_id: The ID of a dbt Cloud job run. :param path: The file path related to the artifact file. Paths are rooted at the target/ directory. Use "manifest.json", "catalog.json", or "run_results.json" to download dbt-generated artifacts for the run. :param account_id: Optional. The ID of a dbt Cloud account. :param step: Optional. The index of the Step in the Run to query for artifacts. The first step in the run has the index 1. If the step parameter is omitted, artifacts for the last step in the run will be returned. :return: The request response. """returnself._run_and_get_response(endpoint=f"{account_id}/runs/{run_id}/artifacts/{path}",payload={"step":step})
@fallback_to_default_account
[docs]asyncdefget_job_run_artifacts_concurrently(self,run_id:int,artifacts:list[str],account_id:int|None=None,step:int|None=None,):""" Retrieve a list of chosen artifact files generated for a step in completed run of a dbt Cloud job. By default, this returns artifacts from the last step in the run. This takes advantage of the asynchronous calls to speed up the retrieval. :param run_id: The ID of a dbt Cloud job run. :param step: The index of the Step in the Run to query for artifacts. The first step in the run has the index 1. If the step parameter is omitted, artifacts for the last step in the run will be returned. :param path: The file path related to the artifact file. Paths are rooted at the target/ directory. Use "manifest.json", "catalog.json", or "run_results.json" to download dbt-generated artifacts for the run. :param account_id: Optional. The ID of a dbt Cloud account. :return: The request response. """tasks={artifact:sync_to_async(self.get_job_run_artifact)(run_id,path=artifact,account_id=account_id,step=step,)forartifactinartifacts}results=awaitasyncio.gather(*tasks.values())return{filename:result.json()forfilename,resultinzip(tasks.keys(),results)}
[docs]deftest_connection(self)->tuple[bool,str]:"""Test dbt Cloud connection."""try:self._run_and_get_response()returnTrue,"Successfully connected to dbt Cloud."exceptExceptionase:returnFalse,str(e)