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 on EKS: version 465 HMS: Glue. We have database for both Hudi and non-Hudi external tables for parquet files.
Currently we are able to query non-Hudi tables successfully.
For Hudi tables the query executes without any error but returns zero records. We have confirmed that records should be returned by executing the same query in Athena.
We do have partition projection enabled for Hudi tables.
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;
Any suggestions on how to figure out the reason for zero records being returned? Any specific logging that could be turned on that would help in debugging this issue?
The text was updated successfully, but these errors were encountered:
We are trying to setup the following in AWS:
Trino on EKS:
version 465HMS:
Glue. We have database for both Hudi and non-Hudi external tables for parquet files.Currently we are able to query non-Hudi tables successfully.
For Hudi tables the query executes without any error but returns zero records. We have confirmed that records should be returned by executing the same query in Athena.
We have two connectors setup as follows:
(1)
/etc/trino/catalog/awsdatacatalog.properties
(2)
/etc/trino/catalog/hudi.properties
We do have partition projection enabled for Hudi tables.
Zero records are returned for Hudi tables whether we use awsdatacatalog or hudi catalog
Any suggestions on how to figure out the reason for zero records being returned? Any specific logging that could be turned on that would help in debugging this issue?
The text was updated successfully, but these errors were encountered: