无需在 lmbda 函数中指定 OutputLocation

问题描述

{ "errorMessage": "参数验证失败:\n参数 ResultConfiguration.OutputLocation 的类型无效,值:无,类型:,有效类型:","errorType": "ParamValidationError",...... }

我想要的是防止强制存储查询

    ResultConfiguration={
        #'OutputLocation': 's3://' + params['bucket'] + '/' + params['path']
        'OutputLocation': None
    }

None 而不是文件路径不起作用

解决方法

我想运行 athena SQL 查询,结果不需要存储在 S3 中

不能这样做。如果您有这样的需求,那么您必须查看一些自定义解决方案或第三方工具来查询您在 S3 中的数据。也许带有 Hive 的 EMR 会很有用。