Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backup is inefficient in space and time #685

Closed
DDvO opened this issue Jun 16, 2024 · 3 comments
Closed

Backup is inefficient in space and time #685

DDvO opened this issue Jun 16, 2024 · 3 comments

Comments

@DDvO
Copy link

DDvO commented Jun 16, 2024

Backup data takes much more space than it should (or at least reports).

Even in cases where the backup process reports that it took some 500 MB, the actual storage size is around 1500 MB.
And when re-doing a backup after a few minutes, at least in some cases this again takes rather long time and much more space is taken. Looks like backups are not incremental? Update: maybe this is just in cases where the earlier run was incomplete because of missing storage space.

Moreover, looks like a possibility is missing for the user to delete backups that are no more needed, in order to re-gain space.

This inefficiency is a big issue, both when using local storage (because usually not very much space is left on the device) and when using remote storage, where transfer often is painfully slow and in my case took about two hours.
Even worse, on any intermittent (e.g., network) error, backup fails (is not resilient to such issues), and on retry it partially takes, in total, even more space and time.

@DDvO DDvO changed the title Backup is very inefficient in space and time Backup is inefficient in space and time Jun 17, 2024
@grote
Copy link
Collaborator

grote commented Jun 17, 2024

Even in cases where the backup process reports that it took some 500 MB, the actual storage size is around 1500 MB.

That is most likely, because the other 1000MB are the apps themselves (APKs). We don't include those in the notification to not give users false security about how much data was backed up.

And when re-doing a backup after a few minutes, at least in some cases this again takes rather long time and much more space is taken. Looks like backups are not incremental? Update: maybe this is just in cases where the earlier run was incomplete because of missing storage space.

Yes when the backup fails, the system re-inits a complete copy of the backup. It even wants us to delete the old one which we don't do for your convenience.

Moreover, looks like a possibility is missing for the user to delete backups that are no more needed, in order to re-gain space.

This is #100

This inefficiency is a big issue, both when using local storage (because usually not very much space is left on the device) and when using remote storage

Thanks for letting us know that this is a big issue for you. Provided that we find a way in #566, it may help with this.

@grote grote closed this as completed Jun 17, 2024
@DDvO
Copy link
Author

DDvO commented Jun 17, 2024

Even in cases where the backup process reports that it took some 500 MB, the actual storage size is around 1500 MB.

That is most likely, because the other 1000MB are the apps themselves (APKs).

Hmm, this might be, but I doubt that those around 25 apps that allegedly got backed up correctly take as much as 1000 MB.

We don't include those in the notification to not give users false security about how much data was backed up.

So your notification just includes the data size? That is misleading.
Why not report both the data and apps sizes?

And when re-doing a backup after a few minutes, at least in some cases this again takes rather long time and much more space is taken. Looks like backups are not incremental?
Update: maybe this is just in cases where the earlier run was incomplete because of missing storage space.

Yes when the backup fails, the system re-inits a complete copy of the backup.
It even wants us to delete the old one which we don't do for your convenience.

I see.

Moreover, looks like a possibility is missing for the user to delete backups that are no more needed, in order to re-gain space.

This is #100

Good to know.
Yet not very promising that that FR is meanwhile nearly 4 years old.

This inefficiency is a big issue, both when using local storage (because usually not very much space is left on the device) and when using remote storage

Thanks for letting us know that this is a big issue for you. Provided that we find a way in #566, it may help with this.

Interesting.
What also could help more or less is to compress (using gzip) the apps and data, like for instance TitaniumBackup does.

@DJCrashdummy

This comment was marked as off-topic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants