forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AIRFLOW-2524] Add Amazon SageMaker Tuning (apache#3751)
Add SageMaker tuning Operator and sensor Co-authored-by: srrajeev-aws <[email protected]>
- Loading branch information
1 parent
058be62
commit 3752828
Showing
6 changed files
with
505 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
airflow/contrib/operators/sagemaker_create_tuning_job_operator.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
# -*- 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.sagemaker_hook import SageMakerHook | ||
from airflow.models import BaseOperator | ||
from airflow.utils.decorators import apply_defaults | ||
from airflow.exceptions import AirflowException | ||
|
||
|
||
class SageMakerCreateTuningJobOperator(BaseOperator): | ||
|
||
""" | ||
Initiate a SageMaker HyperParameter Tuning Job | ||
This operator returns The ARN of the model created in Amazon SageMaker | ||
:param sagemaker_conn_id: The SageMaker connection ID to use. | ||
:type sagemaker_conn_id: string | ||
:param region_name: The AWS region_name | ||
:type region_name: string | ||
:param tuning_job_config: | ||
The configuration necessary to start a tuning job (templated) | ||
:type tuning_job_config: dict | ||
:param use_db_config: Whether or not to use db config | ||
associated with sagemaker_conn_id. | ||
If set to true, will automatically update the tuning config | ||
with what's in db, so the db config doesn't need to | ||
included everything, but what's there does replace the ones | ||
in the tuning_job_config, so be careful | ||
:type use_db_config: bool | ||
:param wait_for_completion: if the operator should block | ||
until tuning job finishes | ||
:type wait_for_completion: bool | ||
:param check_interval: if wait is set to be true, this is the time interval | ||
which the operator will check the status of the tuning job | ||
:type check_interval: int | ||
:param max_ingestion_time: if wait is set to be true, the operator will fail | ||
if the tuning job hasn't finish within the max_ingestion_time | ||
(Caution: be careful to set this parameters because tuning can take very long) | ||
:type max_ingestion_time: int | ||
:param aws_conn_id: The AWS connection ID to use. | ||
:type aws_conn_id: string | ||
**Example**: | ||
The following operator would start a tuning job when executed | ||
sagemaker_tuning = | ||
SageMakerCreateTuningJobOperator( | ||
task_id='sagemaker_tuning', | ||
sagemaker_conn_id='sagemaker_customers_conn', | ||
tuning_job_config=config, | ||
check_interval=2, | ||
max_ingestion_time=3600, | ||
aws_conn_id='aws_customers_conn', | ||
) | ||
""" | ||
|
||
template_fields = ['tuning_job_config'] | ||
template_ext = () | ||
ui_color = '#ededed' | ||
|
||
@apply_defaults | ||
def __init__(self, | ||
sagemaker_conn_id=None, | ||
region_name=None, | ||
tuning_job_config=None, | ||
use_db_config=False, | ||
wait_for_completion=True, | ||
check_interval=5, | ||
max_ingestion_time=None, | ||
*args, **kwargs): | ||
super(SageMakerCreateTuningJobOperator, self)\ | ||
.__init__(*args, **kwargs) | ||
|
||
self.sagemaker_conn_id = sagemaker_conn_id | ||
self.region_name = region_name | ||
self.tuning_job_config = tuning_job_config | ||
self.use_db_config = use_db_config | ||
self.wait_for_completion = wait_for_completion | ||
self.check_interval = check_interval | ||
self.max_ingestion_time = max_ingestion_time | ||
|
||
def execute(self, context): | ||
sagemaker = SageMakerHook(sagemaker_conn_id=self.sagemaker_conn_id, | ||
region_name=self.region_name, | ||
use_db_config=self.use_db_config, | ||
check_interval=self.check_interval, | ||
max_ingestion_time=self.max_ingestion_time | ||
) | ||
|
||
self.log.info( | ||
"Creating SageMaker Hyper Parameter Tunning Job %s" | ||
% self.tuning_job_config['HyperParameterTuningJobName'] | ||
) | ||
|
||
response = sagemaker.create_tuning_job( | ||
self.tuning_job_config, | ||
wait_for_completion=self.wait_for_completion | ||
) | ||
if not response['ResponseMetadata']['HTTPStatusCode'] \ | ||
== 200: | ||
raise AirflowException( | ||
"Sagemaker Tuning Job creation failed: %s" % response) | ||
else: | ||
return response |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# -*- 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.sagemaker_hook import SageMakerHook | ||
from airflow.contrib.sensors.sagemaker_base_sensor import SageMakerBaseSensor | ||
from airflow.utils.decorators import apply_defaults | ||
|
||
|
||
class SageMakerTuningSensor(SageMakerBaseSensor): | ||
""" | ||
Asks for the state of the tuning state until it reaches a terminal state. | ||
The sensor will error if the job errors, throwing a AirflowException | ||
containing the failure reason. | ||
:param job_name: job_name of the tuning instance to check the state of | ||
:type job_name: string | ||
:param region_name: The AWS region_name | ||
:type region_name: string | ||
""" | ||
|
||
template_fields = ['job_name'] | ||
template_ext = () | ||
|
||
@apply_defaults | ||
def __init__(self, | ||
job_name, | ||
region_name=None, | ||
*args, | ||
**kwargs): | ||
super(SageMakerTuningSensor, self).__init__(*args, **kwargs) | ||
self.job_name = job_name | ||
self.region_name = region_name | ||
|
||
def non_terminal_states(self): | ||
return ['InProgress', 'Stopping', 'Stopped'] | ||
|
||
def failed_states(self): | ||
return ['Failed'] | ||
|
||
def get_sagemaker_response(self): | ||
sagemaker = SageMakerHook( | ||
aws_conn_id=self.aws_conn_id, | ||
region_name=self.region_name | ||
) | ||
|
||
self.log.info('Poking Sagemaker Tuning Job %s', self.job_name) | ||
return sagemaker.describe_tuning_job(self.job_name) | ||
|
||
def get_failed_reason_from_response(self, response): | ||
return response['FailureReason'] | ||
|
||
def state_from_response(self, response): | ||
return response['HyperParameterTuningJobStatus'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.