Replies: 1 comment
-
Hi, EmbeddedStorageManager storageManager = EmbeddedStorage.start();
...
ADirectory backupDirectory = NioFileSystem.New().ensureDirectoryPath("/stoarge/backup");
storageManager.issueFullBackup(backupDirectory); The docu is here: https://docs.eclipsestore.io/manual/storage/configuration/backup/full-backup.html |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am writing full backups of my data every hour into my Azure blob storage. With more and more data I am facing the issue that Java is not able to write the backup because since it is a Zip file Java neads to load the whole data into the heap and I run into the followign Exception:
Is there a way to not write the backup as a Zip?
For now I have increased the available heap space but this is not a solution.
Thank you very much in advance!
Beta Was this translation helpful? Give feedback.
All reactions