deniskuzZ commented on code in PR #70: URL: https://github.com/apache/hive-site/pull/70#discussion_r2483536452
########## content/docs/latest/language/writeordering.md: ########## @@ -0,0 +1,171 @@ +--- +title: "Apache Hive : Write Ordering" +date: 2025-10-31 +--- + +# Apache Hive : Write Ordering + +## Overview + +Write ordering controls the physical layout of data within table files. Unlike `SORT BY` which orders data during query execution, write ordering is applied at write time and persists in the stored files. + +Write ordering is supported for Iceberg tables and can be specified during table creation. + +Hive supports two write ordering strategies: +* **Regular Ordering**: Sort by one or more columns in a specified order +* **Z-Ordering**: Multi-dimensional clustering using space-filling curves + +--- + +## Regular Column Ordering Review Comment: maybe Lexicographical? -- 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]
