Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-26 Thread via GitHub
barronw closed issue #72: Manifest List Writer Design URL: https://github.com/apache/iceberg-rust/issues/72 -- 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-ma

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-09 Thread via GitHub
liurenjie1024 commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1754168678 > > The ManifestList is a simple wrapper of Vec, so I think providing a method for iterator of entries would not be huge effort. > > I'm not sure I'm following. To clari

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-09 Thread via GitHub
barronw commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1754114530 > The ManifestList is a simple wrapper of Vec, so I think providing a method for iterator of entries would not be huge effort. I'm not sure I'm following. To clarify, I was wo

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-08 Thread via GitHub
ZENOTME commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1752043696 > Should we support appending entries like the Java and Python implementations instead of a single write? >> The ManifestList is a simple wrapper of Vec, so I think providing a m

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-07 Thread via GitHub
liurenjie1024 commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-175172 > Should we support appending entries like the Java and Python implementations instead of a single write? The `ManifestList` is a simple wrapper of `Vec`, so I think pro

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-07 Thread via GitHub
barronw commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1751731013 Thanks for the feedback folks! How do we feel about something like this? ```rust struct ManifestListWriter { output_file: OutputFile, format_version: FormatVer

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-06 Thread via GitHub
liurenjie1024 commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1751583913 > Thanks! We can integrate V1 and V2 into a writer > > ``` > struck ManifestListWriter { >... > } > > impl ManifestListWriter { > fn write_v1(&mu

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-05 Thread via GitHub
ZENOTME commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1749958215 cc @liurenjie1024 @Xuanwo @JanKaul @Fokko -- 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

Re: [I] Manifest List Writer Design [iceberg-rust]

2023-10-05 Thread via GitHub
ZENOTME commented on issue #72: URL: https://github.com/apache/iceberg-rust/issues/72#issuecomment-1749957317 We can integrate V1 and V2 into a writer ``` struck ManifestListWriter { ... } impl ManifestListWriter { fn write_v1(&mut self, manifest_list: ManifestL