[ 
https://issues.apache.org/jira/browse/IMPALA-14638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18046443#comment-18046443
 ] 

Michael Smith commented on IMPALA-14638:
----------------------------------------

cc [~tamas.mate] [~prozsa]

> Iceberg metadata scan can still be scheduled to dedicated executor
> ------------------------------------------------------------------
>
>                 Key: IMPALA-14638
>                 URL: https://issues.apache.org/jira/browse/IMPALA-14638
>             Project: IMPALA
>          Issue Type: Bug
>          Components: Backend
>    Affects Versions: Impala 4.4.0
>            Reporter: Michael Smith
>            Priority: Major
>         Attachments: profile_794f7e240f4d2a7b_895a9d4200000000.txt
>
>
> IMPALA-12809 attempted to ensure fragments containing SCAN ICEBERG METADATA 
> are always scheduled to a coordinator. However that fix appears to be 
> incomplete.
> With {{start-impala-cluster.py --num_coordinators=1 
> --use_exclusive_coordinators}}, the following query still causes a metadata 
> scan to be scheduled to an executor and crashes it
> {code}
> CREATE TABLE default.iceberg_meta_join (foo BIGINT) STORED BY ICEBERG;
> INSERT INTO default.iceberg_meta_join (foo) VALUES (1);
> WITH meta_union AS (
>   SELECT 1 as snapshot_id FROM default.iceberg_meta_join.snapshots
>   UNION
>   SELECT 1 as snapshot_id FROM default.iceberg_meta_join.snapshots)
> SELECT * FROM default.iceberg_meta_join AS t
>   INNER JOIN meta_union ON t.foo = meta_union.snapshot_id;
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to