GrigorievNick edited a comment on issue #2917:
URL: https://github.com/apache/iceberg/issues/2917#issuecomment-891135950
@RussellSpitzer Thx, the first approach is exactly what I am looking for,
and because I know manifests and snapshots I will be able to reproduce the
exact state.
The goal of this task is to implement file coupling based on a specific
column in the table and flatMap iceberg files to rows.
>If you just want to read files it may make sense to just pass the file
paths to the normal spark reading code rather than doing it through the Iceberg
Datasource. Something like
I was not able to use it with ORC files.
```
Type 3 has an unknown kind.
java.io.IOException: Type 3 has an unknown kind.
```
Orc table create statement
```
CREATE TABLE $testTable (
id bigint,
data string,
ts timestamp,
idRange String)
USING iceberg
PARTITIONED BY (idRange, days(ts))
TBLPROPERTIES (write.format.default='orc')
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]