I’m writing data from Kafka to Minio using the Confluent Iceberg sink. The catalog is a REST catalog.
I can see the tables in the catalog:
trino> show tables from iceberg.callcenter;
Table
-------------
calldetails
calls
customers
I see the columns of a table:
trino> describe iceberg.callcenter.customers;
Column | Type | Extra | Comment
------------+---------+-------+---------
customerid | bigint | |
name | varchar | |
address | varchar | |
membership | varchar | |
class | varchar | |
(5 rows)
But when I want to query the tables I get the following message:
trino> select customerid, name, address from iceberg.callcenter.customers;
Query 20240926_181431_00023_dx4ne failed: Error processing metadata for table callcenter.customers
I don’t understand the problem here
2