You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the file /curvine-cli/src/cmds/fs/commands.rs, we can see the implementation of the FsSubCommand::Put command. The program splits a file into multiple chunks and uploads them in a loop until the process is completed. However, no file upload progress recording mechanism is found in the process. When uploading large files, encountering unstable networks, or facing long-term transmissions, this may lead to the loss, duplication, or out-of-order of the uploaded file chunks. Consequently, the file may become corrupted and unnecessary file fragments may be generated.