You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trino Hudi connector is returning zero records for tables with partition projection enabled. The connector works fine for tables that don't have partition projection enabled.
We are trying to setup the following in AWS:
Trino on EKS: version 465 HMS: Glue.
Queries for Hudi table with partition projection enabled is returning zero records with no errors.
Trino Hudi connector is working fine for Hudi tables that don't have partition projection enabled.
We have both Hive and Hudi connectors setup as follows:
Zero records are returned for Hudi tables whether we use awsdatacatalog or hudi catalog
select *
from awsdatacatalog.hudi_db.test_table_ro
where partition1 = "123"
and partition2 = "abc"
limit 10;
select *
from hudi.hudi_db.test_table_ro
where partition1 = "123"
and partition2 = "abc"
limit 10;
The text was updated successfully, but these errors were encountered:
drautela-scwx
changed the title
Trino returning zero records for Hudi tables in AWS Glue
Trino Hudi connector returning zero records for tables with partition projection enabled
Jan 14, 2025
Trino Hudi connector is returning zero records for tables with partition projection enabled. The connector works fine for tables that don't have partition projection enabled.
We are trying to setup the following in AWS:
Trino on EKS:
version 465HMS:
Glue.Queries for Hudi table with partition projection enabled is returning zero records with no errors.
Trino Hudi connector is working fine for Hudi tables that don't have partition projection enabled.
We have both Hive and Hudi connectors setup as follows:
(1)
/etc/trino/catalog/awsdatacatalog.properties
(2)
/etc/trino/catalog/hudi.properties
Zero records are returned for Hudi tables whether we use awsdatacatalog or hudi catalog
The text was updated successfully, but these errors were encountered: