Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Boto3를 사용하여 AWS Glue 데이터 카탈로그에서 트리거를 중지하는 방법

<시간/>

이 기사에서는 사용자가 AWS Glue Data Catalog에서 트리거를 중지하는 방법을 알아봅니다.

문제 설명: boto3 사용 트리거를 중지하는 Python 라이브러리.

이 문제를 해결하기 위한 접근 방식/알고리즘

  • 1단계: boto3 가져오기 및 보토코어 예외를 처리하는 예외.

  • 2단계: trigger_name은 이 함수의 매개변수입니다.

  • 3단계: boto3 lib를 사용하여 AWS 세션 생성 . region_name 기본 프로필에 언급되어 있습니다. 언급되지 않은 경우 region_name을 명시적으로 전달합니다. 세션을 만드는 동안.

  • 4단계: 글루용 AWS 클라이언트 생성 .

  • 5단계: 이제 stop_trigger를 사용하세요. 함수 및 매개변수 전달 trigger_name 이름으로.

  • 6단계: 응답 메타데이터를 반환하고 트리거를 중지합니다.

  • 7단계: 트리거를 중지하는 동안 문제가 발생한 경우 일반 예외를 처리합니다.

예시 코드

다음 코드는 AWS Glue 데이터 카탈로그에서 트리거를 중지합니다 -

import boto3
from botocore.exceptions import ClientError

def stop_a_trigger(trigger_name)
   session = boto3.session.Session()
   glue_client = session.client('glue')
   try:
      response = glue_client.stop_trigger(Name=trigger_name)
      return response
   except ClientError as e:
      raise Exception("boto3 client error in stop_a_trigger: " + e.__str__())
   except Exception as e:
      raise Exception("Unexpected error in stop_a_trigger: " + e.__str__())
print(stop_a_trigger("test-daily"))

출력

{'Name': 'test-daily', 'ResponseMetadata': {'RequestId': 'b2109689-*******************-d', 'HTTPStatusCode': 200, 'HTTPHeaders': {'date': 'Sun, 28 Mar 2021 08:00:04 GMT', 'content-type': 'application/x-amz-json-1.1', 'content-length': '26', 'connection': 'keep-alive', 'x-amzn-requestid': 'b2109689-***********************-d'}, 'RetryAttempts': 0}}