From commits-return-26653-archive-asf-public=cust-asf.ponee.io@airflow.incubator.apache.org Wed Oct 31 12:24:23 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id F3691180668 for ; Wed, 31 Oct 2018 12:24:22 +0100 (CET) Received: (qmail 97115 invoked by uid 500); 31 Oct 2018 11:24:22 -0000 Mailing-List: contact commits-help@airflow.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airflow.incubator.apache.org Delivered-To: mailing list commits@airflow.incubator.apache.org Received: (qmail 97106 invoked by uid 99); 31 Oct 2018 11:24:22 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Oct 2018 11:24:22 +0000 From: GitBox To: commits@airflow.apache.org Subject: [GitHub] phani8996 commented on a change in pull request #4111: [AIRFLOW-3266] Add AWS Athena Operator and hook Message-ID: <154098506152.15554.13073890175748104200.gitbox@gitbox.apache.org> Date: Wed, 31 Oct 2018 11:24:21 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit phani8996 commented on a change in pull request #4111: [AIRFLOW-3266] Add AWS Athena Operator and hook URL: https://github.com/apache/incubator-airflow/pull/4111#discussion_r229654957 ########## File path: airflow/contrib/hooks/aws_athena_hook.py ########## @@ -0,0 +1,146 @@ +# -*- 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 time import sleep +from airflow.contrib.hooks.aws_hook import AwsHook +from uuid import uuid4 + +INTERMEDIATE_STATES = ('QUEUED', 'RUNNING',) +FAILURE_STATES = ('FAILED', 'CANCELLED',) +SUCCESS_STATES = ('SUCCEEDED',) + + +class AWSAthenaHook(AwsHook): + """ + Interact with AWS Athena to run, poll queries and return query results + """ + + def __init__(self, aws_conn_id='aws_default', *args, **kwargs): + super(AWSAthenaHook, self).__init__(aws_conn_id, **kwargs) + self.sleep_time = kwargs.get('sleep_time') or 30 + self.conn = None + + def get_conn(self): + """ + check if aws conn exists already or create one and return it + + :return: boto3 session + """ + if not hasattr(self, 'conn'): + self.conn = self.get_client_type('athena') + return self.conn + + def run_query(self, query, query_context, result_configuration, client_request_token=None): + """ + Run Presto query on athena with provided config and return submitted query_execution_id + + :param query: Presto query to run + :type query: str + :param query_context: Context in which query need to be run + :type query_context: dict + :param result_configuration: Dict with path to store results in and config related to encryption + :type result_configuration: dict + :param client_request_token: Unique token created by user to avoid multiple executions of same query + :type client_request_token: str + :return: str + """ + if client_request_token is None: + client_request_token = str(uuid4()) + response = self.conn.start_query_execution(QueryString=query, + ClientRequestToken=client_request_token, + QueryExecutionContext=query_context, + ResultConfiguration=result_configuration) + query_execution_id = response['QueryExecutionId'] + return query_execution_id + + def check_query_status(self, query_execution_id): + """ + Fetch the status of submitted athena query. Returns None or one of valid query states. + + :param query_execution_id: Id of submitted athena query + :type query_execution_id: str + :return: str + """ + response = self.conn.get_query_execution(QueryExecutionId=query_execution_id) + state = None + try: + state = response['QueryExecution']['Status']['State'] + finally: + return state + + def get_query_results(self, query_execution_id): + """ + Fetch submitted athena query results. returns none if query is in intermediate state or + failed/cancelled state else dict of query output + + :param query_execution_id: Id of submitted athena query + :type query_execution_id: str + :return: dict + """ + query_state = self.check_query_status(query_execution_id) + if query_state is None: + self.log.error('Invalid Query state') + return None + elif query_state in INTERMEDIATE_STATES or query_state in FAILURE_STATES: + self.log.info('Query is in {state} state. Cannot fetch results'.format(state=query_state)) + return None + return self.conn.get_query_results(QueryExecutionId=query_execution_id) + + def poll_query_status(self, query_execution_id, max_tries=None): + """ + Poll the status of submitted athena query until query state reaches final state. + Returns one of the final states + + :param query_execution_id: Id of submitted athena query + :type query_execution_id: str + :param max_tries: Number of times to poll for query state before function exits + :type max_tries: int + :return: str + """ + try_number = 1 + final_query_state = None # Query state when query reaches final state or max_tries reached + while True: + query_state = self.check_query_status(query_execution_id) + if query_state is None: + self.log.error('Trial {try_number}: Invalid query state. Retrying again'.format( Review comment: `query_state` should not be None. So i felt like it's better to keep log it as error. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services