aokolnychyi opened a new pull request #2362: URL: https://github.com/apache/iceberg/pull/2362
This WIP PR is an attempt to pass around `Table` object instead of individual things like spec, sort order, etc. Originally, we used to separately pass `FileIO`, `LocationProvider`, properties as our `Table` objects were not serializable. We have to modify a lot of places each time we need add one more item to pass (e.g. sort order). That’s why passing `Table` instances to executors should simplify the configuration and make APIs easier. Since recently, `BaseTable` is serializable but the current way is not sufficient for two reasons: - We don’t handle Kryo serialization. - It is not a good idea to read the metadata file from each executor. -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
