【发布时间】:2020-04-28 08:29:55
【问题描述】:
我正在使用 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'
得到这个错误:
Size of a single row or its columns cannot exceed 32 MB
该表以 jsonl 格式保存在 AWS S3 中。
是否可以增加最大行大小?
【问题讨论】:
标签: sql amazon-web-services amazon-s3 bigdata amazon-athena