qingwen220 commented on code in PR #3600: URL: https://github.com/apache/incubator-opendal/pull/3600#discussion_r1396835726
########## core/src/services/hdfs/backend.rs: ########## @@ -31,12 +32,25 @@ use crate::*; /// [Hadoop Distributed File System (HDFS™)](https://hadoop.apache.org/) support. #[doc = include_str!("docs.md")] -#[derive(Debug, Default)] +#[derive(Debug)] pub struct HdfsBuilder { root: Option<String>, name_node: Option<String>, kerberos_ticket_cache_path: Option<String>, user: Option<String>, + enable_append: bool, Review Comment: the default behavior before this changes is the system has append support. If enable_append=false, the compatibility is not ok. Right? -- 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]
