CTTY commented on code in PR #1872:
URL: https://github.com/apache/iceberg-rust/pull/1872#discussion_r2554561114


##########
crates/iceberg/src/spec/table_properties.rs:
##########
@@ -137,6 +137,12 @@ impl TableProperties {
     pub const PROPERTY_WRITE_TARGET_FILE_SIZE_BYTES: &str = 
"write.target-file-size-bytes";
     /// Default target file size
     pub const PROPERTY_WRITE_TARGET_FILE_SIZE_BYTES_DEFAULT: usize = 512 * 
1024 * 1024; // 512 MB
+
+    /// Whether to use `FanoutWriter` for partitioned tables (handles unsorted 
data).
+    /// If false, uses `ClusteredWriter` (requires sorted data, more memory 
efficient).
+    pub const PROPERTY_WRITE_FANOUT_ENABLED: &str = "write.fanout.enabled";

Review Comment:
   ```suggestion
       pub const PROPERTY_DATAFUSION_WRITE_FANOUT_ENABLED: &str = 
"write.datafusion.fanout.enabled";
   ```



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