What does safeBackup do - or what triggers it? #3027
-
Pretty much the title. I have OneDrive personal running in a docker and it's been running fine through the years before updates. However, recently, there's one file that its been creating FileName-safeBackup-001.dat and has been creating them every time the file has changed. Now there's about 100 safeBackup files in there. Even if I delete them all and delete the original file and upload the new one, the docker will synchronize and then about 5 minutes later, will create another safeBackup.dat file. Is there something wrong with the configuration or a way to suppress the creation of files? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
It backs up your file as it has changed outside the recorded online|local changes, outside of the normal sync process, normal use of the client.
Firstly, ask yourself how are you using the client:
Using the verbose logs, please read the documentation: https://github.com/abraunegg/onedrive/blob/master/docs/client-architecture.md to help you understand why they are being created. Look at all the sequence diagrams where data loss prevention is being flagged.
Look at your usage first, it is odd that the client is constantly doing this for one particular file. If you want to bypass data preservation, this is possible, but this should be a last resort item: Please read all the documentation. |
Beta Was this translation helpful? Give feedback.
@gunner007cd
It backs up your file as it has changed outside the recorded online|local changes, outside of the normal sync process, normal use of the client.
Firstly, ask yourself how are you using the client:
--resync
which is the main contributor here to performing a safe backup of your data. If this is the case - stop using--resync
unless the client actually tells you to use it.--verbose
to gain insight as to when these files are being createdUsing the verbose logs, please read the documentation: https://github.com/abraunegg/onedrive/blob/master/docs/client-architecture.md to help you…