mapleFU commented on issue #40800: URL: https://github.com/apache/arrow/issues/40800#issuecomment-2021239273
@nurpax If you want to write in RAM, you may face the same problem for S3 part upload 🤔 https://github.com/apache/arrow/blob/434f87274e8e9adab4f0434ae494f30dc955ca6e/python/pyarrow/parquet/core.py#L1108 maybe an abort interface would be ok here, like: ``` def abort(self): """ Close the connection to the Parquet file. """ if self.is_open: # ... if self.file_handle is not None: self.file_handle.abort() # abort S3 ``` -- 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]
