Source code for airflow.providers.google.cloud.sensors.dataflow
## 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."""This module contains a Google Cloud Dataflow sensor."""fromtypingimportCallable,Optional,Sequence,Set,Unionfromairflow.exceptionsimportAirflowExceptionfromairflow.providers.google.cloud.hooks.dataflowimport(DEFAULT_DATAFLOW_LOCATION,DataflowHook,DataflowJobStatus,)fromairflow.sensors.baseimportBaseSensorOperator
[docs]classDataflowJobStatusSensor(BaseSensorOperator):""" Checks for the status of a job in Google Cloud Dataflow. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataflowJobStatusSensor` :param job_id: ID of the job to be checked. :type job_id: str :param expected_statuses: The expected state of the operation. See: https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState :type expected_statuses: Union[Set[str], str] :param project_id: Optional, the Google Cloud project ID in which to start a job. If set to None or missing, the default project_id from the Google Cloud connection is used. :type project_id: str :param location: The location of the Dataflow job (for example europe-west1). See: https://cloud.google.com/dataflow/docs/concepts/regional-endpoints :type location: str :param gcp_conn_id: The connection ID to use connecting to Google Cloud. :type gcp_conn_id: str :param delegate_to: The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled. See: https://developers.google.com/identity/protocols/oauth2/service-account#delegatingauthority :type delegate_to: str :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :type impersonation_chain: Union[str, Sequence[str]] """
[docs]defpoke(self,context:dict)->bool:self.log.info("Waiting for job %s to be in one of the states: %s.",self.job_id,", ".join(self.expected_statuses),)self.hook=DataflowHook(gcp_conn_id=self.gcp_conn_id,delegate_to=self.delegate_to,impersonation_chain=self.impersonation_chain,)job=self.hook.get_job(job_id=self.job_id,project_id=self.project_id,location=self.location,)job_status=job["currentState"]self.log.debug("Current job status for job %s: %s.",self.job_id,job_status)ifjob_statusinself.expected_statuses:returnTrueelifjob_statusinDataflowJobStatus.TERMINAL_STATES:raiseAirflowException(f"Job with id '{self.job_id}' is already in terminal state: {job_status}")returnFalse
[docs]classDataflowJobMetricsSensor(BaseSensorOperator):""" Checks the metrics of a job in Google Cloud Dataflow. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataflowJobMetricsSensor` :param job_id: ID of the job to be checked. :type job_id: str :param callback: callback which is called with list of read job metrics See: https://cloud.google.com/dataflow/docs/reference/rest/v1b3/MetricUpdate :type callback: callable :param fail_on_terminal_state: If set to true sensor will raise Exception when job is in terminal state :type fail_on_terminal_state: bool :param project_id: Optional, the Google Cloud project ID in which to start a job. If set to None or missing, the default project_id from the Google Cloud connection is used. :type project_id: str :param location: The location of the Dataflow job (for example europe-west1). See: https://cloud.google.com/dataflow/docs/concepts/regional-endpoints :param gcp_conn_id: The connection ID to use connecting to Google Cloud. :type gcp_conn_id: str :param delegate_to: The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled. :type delegate_to: str :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :type impersonation_chain: Union[str, Sequence[str]] """
[docs]defpoke(self,context:dict)->bool:self.hook=DataflowHook(gcp_conn_id=self.gcp_conn_id,delegate_to=self.delegate_to,impersonation_chain=self.impersonation_chain,)ifself.fail_on_terminal_state:job=self.hook.get_job(job_id=self.job_id,project_id=self.project_id,location=self.location,)job_status=job["currentState"]ifjob_statusinDataflowJobStatus.TERMINAL_STATES:raiseAirflowException(f"Job with id '{self.job_id}' is already in terminal state: {job_status}")result=self.hook.fetch_job_metrics_by_id(job_id=self.job_id,project_id=self.project_id,location=self.location,)returnself.callback(result["metrics"])
[docs]classDataflowJobMessagesSensor(BaseSensorOperator):""" Checks for the job message in Google Cloud Dataflow. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataflowJobMessagesSensor` :param job_id: ID of the job to be checked. :type job_id: str :param callback: callback which is called with list of read job metrics See: https://cloud.google.com/dataflow/docs/reference/rest/v1b3/MetricUpdate :type callback: callable :param fail_on_terminal_state: If set to true sensor will raise Exception when job is in terminal state :type fail_on_terminal_state: bool :param project_id: Optional, the Google Cloud project ID in which to start a job. If set to None or missing, the default project_id from the Google Cloud connection is used. :type project_id: str :param location: Job location. :type location: str :param gcp_conn_id: The connection ID to use connecting to Google Cloud. :type gcp_conn_id: str :param delegate_to: The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled. :type delegate_to: str :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :type impersonation_chain: Union[str, Sequence[str]] """
[docs]defpoke(self,context:dict)->bool:self.hook=DataflowHook(gcp_conn_id=self.gcp_conn_id,delegate_to=self.delegate_to,impersonation_chain=self.impersonation_chain,)ifself.fail_on_terminal_state:job=self.hook.get_job(job_id=self.job_id,project_id=self.project_id,location=self.location,)job_status=job["currentState"]ifjob_statusinDataflowJobStatus.TERMINAL_STATES:raiseAirflowException(f"Job with id '{self.job_id}' is already in terminal state: {job_status}")result=self.hook.fetch_job_messages_by_id(job_id=self.job_id,project_id=self.project_id,location=self.location,)returnself.callback(result)
[docs]classDataflowJobAutoScalingEventsSensor(BaseSensorOperator):""" Checks for the job autoscaling event in Google Cloud Dataflow. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:DataflowJobAutoScalingEventsSensor` :param job_id: ID of the job to be checked. :type job_id: str :param callback: callback which is called with list of read job metrics See: https://cloud.google.com/dataflow/docs/reference/rest/v1b3/MetricUpdate :type callback: callable :param fail_on_terminal_state: If set to true sensor will raise Exception when job is in terminal state :type fail_on_terminal_state: bool :param project_id: Optional, the Google Cloud project ID in which to start a job. If set to None or missing, the default project_id from the Google Cloud connection is used. :type project_id: str :param location: Job location. :type location: str :param gcp_conn_id: The connection ID to use connecting to Google Cloud. :type gcp_conn_id: str :param delegate_to: The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled. :type delegate_to: str :param impersonation_chain: Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated). :type impersonation_chain: Union[str, Sequence[str]] """
[docs]defpoke(self,context:dict)->bool:self.hook=DataflowHook(gcp_conn_id=self.gcp_conn_id,delegate_to=self.delegate_to,impersonation_chain=self.impersonation_chain,)ifself.fail_on_terminal_state:job=self.hook.get_job(job_id=self.job_id,project_id=self.project_id,location=self.location,)job_status=job["currentState"]ifjob_statusinDataflowJobStatus.TERMINAL_STATES:raiseAirflowException(f"Job with id '{self.job_id}' is already in terminal state: {job_status}")result=self.hook.fetch_job_autoscaling_events_by_id(job_id=self.job_id,project_id=self.project_id,location=self.location,)returnself.callback(result)