我正在使用 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 中。
可以增加最大行大小吗?