FANNG1 commented on code in PR #6280: URL: https://github.com/apache/gravitino/pull/6280#discussion_r1942195074
########## clients/filesystem-fuse/src/open_dal_filesystem.rs: ########## @@ -210,19 +227,44 @@ impl FileReader for FileReaderImpl { struct FileWriterImpl { writer: opendal::Writer, + buffer: Vec<u8>, +} + +impl FileWriterImpl { + fn new(writer: opendal::Writer) -> Self { + Self { + writer, + buffer: Vec::with_capacity(OpenDalFileSystem::WRITE_BUFFER_SIZE + 4096), Review Comment: why add another `4096` to the capacity? -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org