pitrou commented on code in PR #44990: URL: https://github.com/apache/arrow/pull/44990#discussion_r1953077284
########## cpp/src/parquet/column_reader.cc: ########## @@ -306,8 +306,13 @@ class SerializedPageReader : public PageReader { // Please refer to the encryption specification for more details: // https://github.com/apache/parquet-format/blob/encryption/Encryption.md#44-additional-authenticated-data - // The ordinal fields in the context below are used for AAD suffix calculation. + // The CryptoContext used by this PageReader. CryptoContext crypto_ctx_; + // This PageReader has its own Decryptor instances in order to be thread-safe. Review Comment: As discussed in the comments already, the Decryptor instances are not thread-safe, so we must create separate ones for each column chunk. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org