Re: Problems with reading ORC files with S3 filesystem

2021-08-17 Thread Piotr Jagielski
cause currently there seems to be now easy way to switch the FS > implementation (I've just quickly checked OrcFile class, so this might not > be 100% accurate). > > [1] https://issues.apache.org/jira/browse/FLINK-10989 > [2] https://stackoverflow.com/a/53435359 > > Best, > D. &g

Problems with reading ORC files with S3 filesystem

2021-08-14 Thread Piotr Jagielski
Hi, I want to use Flink SQL filesystem to read ORC file via S3 filesystem on Flink 1.13. My table definition looks like this: create or replace table xxx (..., startdate string) partitioned by (startdate) with ('connector'='filesystem', 'format'='orc', 'path'='s3://xxx/orc/yyy') I followed