Daniel Becker created IMPALA-13963:
--------------------------------------
Summary: Crash when setting 'write.parquet.page-size-bytes' to a
higher value
Key: IMPALA-13963
URL: https://issues.apache.org/jira/browse/IMPALA-13963
Project: IMPALA
Issue Type: Bug
Components: Backend
Reporter: Daniel Becker
Assignee: Daniel Becker
When setting the Iceberg table property {{write.parquet.page-size-bytes}} to a
higher value, inserting into the table crashes Impala.
Repro:
{code:java}
create table lineitem_iceberg_comment stored as iceberg as select l_comment
from tpch_parquet.lineitem union all select l_comment from
tpch_parquet.lineitem ;
alter table lineitem_iceberg_comment set
tblproperties("write.parquet.page-size-bytes"="6000000");
insert into lineitem_iceberg_comment select l_comment from
tpch_parquet.lineitem union all select l_comment from tpch_parquet.lineitem ;
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)