是否可以增加 AWS Athena 中的最大行大小?

Sha*_*per 4 sql amazon-s3 bigdata amazon-web-services amazon-athena

我正在使用 AWS Athena 运行此查询:

SELECT
  t1.*
FROM "db"."tbl1" t1
INNER JOIN "tbl1"."ema" ea ON
  ea.id = concat(t1.numc,t1.nummt)
WHERE
  ea.cod1 = '23' and
  ea.cod2 = '776'
Run Code Online (Sandbox Code Playgroud)

并收到此错误:

Size of a single row or its columns cannot exceed 32 MB
Run Code Online (Sandbox Code Playgroud)

该表以 jsonl 格式保存在 AWS S3 中。

可以增加最大行大小吗?

The*_*heo 5

不幸的是没有。Athena 目前不允许您配置任何 Presto 详细信息。