如何使用 Boto3 从 AWS 数据目录获取数据库中多个函数定义的详细信息
让我们看看用户如何从 AWS Glue 数据目录获取多个函数定义的详细信息。
示例
问题陈述:使用 Python 中的 **boto3** 库从 AWS Glue 数据目录获取数据库中存在的多个函数定义的详细信息。
解决此问题的方法/算法
步骤 1:导入 **boto3** 和 **botocore** 异常以处理异常。
步骤 2:**database_name** 和 regular_pattern 是可选参数。如果未为此提供详细信息,则该函数将获取 AWS 用户帐户中所有现有函数的定义。如果提供了 **database_name** 但未提供 **regular_pattern**,则它将获取给定数据库中所有函数的定义。如果提供了这两个参数,则它将根据 **regular_pattern** 获取匹配函数的定义。如果只提供了 **regular_pattern**,则它将获取 AWS 用户帐户中与 **regular_pattern** 匹配的所有函数的定义。
步骤 3:使用 **boto3 lib** 创建 AWS 会话。确保在默认配置文件中提到了 **region_name**。如果没有提到,则在创建会话时显式传递 **region_name**。
步骤 4:为 **glue** 创建 AWS 客户端。
步骤 5:调用 **get_multiple_function_definition** 并将 **database_name** 作为 DatabaseName 参数和 **regular_pattern** 作为 Pattern 参数传递。
步骤 6:它根据提供的参数返回多个函数的定义。
步骤 7:如果在检查函数时出现问题,请处理通用异常。
示例代码
以下代码获取多个函数的定义:
import boto3 from botocore.exceptions import ClientError def get_multiple_function_definition(database_name =None, regular_pattern = None): session = boto3.session.Session() glue_client = session.client('glue') try: response = glue_client.get_user_defined_functions(DatabaseName=database_name,Pattern= regular_pattern) return response except ClientError as e: raise Exception("boto3 client error in get_multiple_function_definition: " + e.__str__()) except Exception as e: raise Exception("Unexpected error in get_multiple_function_definition: " + e.__str__()) a = get_multiple_function_definition('employee') print(a)
输出
{ 'UserDefinedFunctions':[{ 'FunctionName': 'insert_employee_record', 'DatabaseName': 'employee', 'ClassName': 'InsertEmployee', 'OwnerName': 'string', 'OwnerType': 'USER'|'ROLE'|'GROUP', 'CreateTime': datetime(2021,03,15), 'ResourceUris':[ { 'ResourceType': 'JAR'|'FILE'|'ARCHIVE', 'Uri': 'string' }, ] }] }
广告