ckljohn 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_r233000355
########## File path: airflow/contrib/operators/aws_athena_operator.py ########## @@ -0,0 +1,98 @@ +# -*- 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 uuid import uuid4 + +from airflow.models import BaseOperator +from airflow.utils.decorators import apply_defaults +from airflow.contrib.hooks.aws_athena_hook import AWSAthenaHook + + +class AWSAthenaOperator(BaseOperator): + """ + Airflow operator to run presto queries on athena. + + :param query: Presto to be run on athena. (templated) + :type query: str + :param database: Database to select. (templated) + :type database: str + :param output_location: s3 path to write the query results into. (templated) + :type output_location: str + :param aws_conn_id: aws connection to use. + :type aws_conn_id: str + :param sleep_time: Time to wait between two consecutive call to check query status on athena + :type sleep_time: int + """ + + ui_color = '#44b5e2' + template_fields = ('query', 'database', 'output_location') + + @apply_defaults + def __init__(self, query, database, output_location, aws_conn_id='aws_default', client_request_token=None, + query_execution_context=None, result_configuration=None, sleep_time=30, *args, **kwargs): + super(AWSAthenaOperator, self).__init__(*args, **kwargs) + self.query = query + self.database = database + self.output_location = output_location + self.aws_conn_id = aws_conn_id + self.client_request_token = client_request_token or str(uuid4()) + self.query_execution_context = query_execution_context or {} + self.result_configuration = result_configuration or {} + self.sleep_time = sleep_time + self.query_execution_id = None + self.hook = None + + def get_hook(self): + return AWSAthenaHook(self.aws_conn_id, self.sleep_time) + + def execute(self, context): + """ + Run Presto Query on Athena + """ + self.hook = self.get_hook() + self.hook.get_conn() + + self.query_execution_context['Database'] = self.database + self.result_configuration['OutputLocation'] = self.output_location Review comment: Just thought it should be done as early as it can. Anyway, I can handle it. ---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
