wgtmac commented on code in PR #242:
URL: https://github.com/apache/parquet-format/pull/242#discussion_r1603571848


##########
README.md:
##########
@@ -113,6 +119,55 @@ chunks they are interested in.  The columns chunks should 
then be read sequentia
 
  ![File 
Layout](https://raw.github.com/apache/parquet-format/master/doc/images/FileLayout.gif)
 
+### Parquet 3
+
+Parquet 3 files have the following overall structure:
+
+```
+4-byte magic number "PAR1"
+4-byte magic number "PAR3"
+8-byte offset of File Metadata v3
+8-byte length of File Metadata v3

Review Comment:
   What about this?
   
   ```
   4-byte magic number "PAR1"
   4-byte magic number "PAR3"
   ...
   File Metadata v3
   4-byte length in bytes of file metadata v3 (little endian)
   4-byte magic number "PAR3"
   File Metadata
   4-byte length in bytes of file metadata (little endian)
   4-byte magic number "PAR1"
   ```



-- 
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]

Reply via email to