trino read file from s3a #21717
Replies: 1 comment 1 reply
-
How does that CSV file exist in S3? I mean what method do you use to ingest that CSV file? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I really need your help. I am newbee to iceberg and trino
My architecture is trino iceberg s3a on kubernetes.
I did iceberg connector and it works.
i can create iceberg table and show it in my object storage
however, if i want to read my csv data from object storage, it gets error. I know that https://trino.io/docs/current/connector/iceberg.html trino iceberg connector allows 3 types of file format
so my question is the easiest way is put parquet file into my object storage and read
but I want to know is there any way to read csv data file from obs using iceberg connector( I think question is awkward)
maybe put hive metastore connector that i can read csv data from object storage
does anyone put two connectors? (It seems not inefficent I guess)
create table hive.trino_test.csv_table (
no int,
user varchar,
salary int
)
with (format = 'csv', location = 's3a://trino_test/data/a.csv')
Beta Was this translation helpful? Give feedback.
All reactions