Source code for airflow.contrib.sensors.emr_job_flow_sensor
# -*- coding: utf-8 -*-
#
# 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 airflow.contrib.hooks.emr_hook import EmrHook
from airflow.contrib.sensors.emr_base_sensor import EmrBaseSensor
from airflow.utils import apply_defaults
[docs]class EmrJobFlowSensor(EmrBaseSensor):
"""
Asks for the state of the JobFlow until it reaches a terminal state.
If it fails the sensor errors, failing the task.
:param job_flow_id: job_flow_id to check the state of
:type job_flow_id: str
"""
[docs] NON_TERMINAL_STATES = ['STARTING', 'BOOTSTRAPPING', 'RUNNING',
'WAITING', 'TERMINATING']
[docs] FAILED_STATE = ['TERMINATED_WITH_ERRORS']
[docs] template_fields = ['job_flow_id']
@apply_defaults
def __init__(self,
job_flow_id,
*args,
**kwargs):
super(EmrJobFlowSensor, self).__init__(*args, **kwargs)
self.job_flow_id = job_flow_id
[docs] def get_emr_response(self):
emr = EmrHook(aws_conn_id=self.aws_conn_id).get_conn()
self.log.info('Poking cluster %s', self.job_flow_id)
return emr.describe_cluster(ClusterId=self.job_flow_id)
@staticmethod
[docs] def state_from_response(response):
return response['Cluster']['Status']['State']
@staticmethod
[docs] def failure_message_from_response(response):
state_change_reason = response['Cluster']['Status'].get('StateChangeReason')
if state_change_reason:
return 'for code: {} with message {}'.format(state_change_reason.get('Code', 'No code'),
state_change_reason.get('Message', 'Unknown'))
return None