1
votes

I'm new on Apache Flink and I cannot find a way to read a parquet file from the file system. I came from Spark where a simple "spark.read.parquet("...")" did the job. Is it possible?

Thank you in advance

1

1 Answers

0
votes

Actually, it depends on the way your are going to read the parquet. If you are trying to simply read parquet files and want to leverage a DataStream connector, this stackoverflow question can be the entry point and a working example.

If you prefer the Table API, Table & SQL Connectors - Parquet Format can be helpful to start from.