Disk space estimation for locally stored content files #105
-
Hello, We have quite number of Confluence spaces to migrate, Is there any calculation so that I don't have to worry about the storage running out of spaces in the middle of migration? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
WikiTraccs by default uses the logged-in user's profile to store attachments downloaded from Confluence. You can change this location. Ultimately at the chosen location there must be enough free space available to store the attachments of a migration run. Attachments will be downloaded for each migrated page, and pages are migrated one after another, so the space needed rises gradually. WikiTraccs checks if there is enough space available and will pause a running migration if available disk space is below a certain threshold (~2 GB). This will be shown in the console with a corresponding message. When there is enough space available again it will continue. You can control in which directory WikiTraccs stores downloaded attachments during the migration to SharePoint, using appsettings.json. See this article for a sample configuration: Change temporary storage folder pathes. WikiTraccs won't clean up those files by itself, but you can delete them at any time. If files are missing in this directory they will be downloaded again. With regard to storage requirements - Atlassian shows how to calculate the size of attachments: How to find the total size of all attachments in Confluence. The approach taken is to look at the Confluence database, and this is also an often used approach I see in migration projects. Let me know if you need more information. |
Beta Was this translation helpful? Give feedback.
-
Thank you again for sharing your knowledge. In my humble opinion regarding that simple button, it never feels 'simple' to me - as it could mean updates on the existing UI and logic |
Beta Was this translation helpful? Give feedback.
@novice002
WikiTraccs by default uses the logged-in user's profile to store attachments downloaded from Confluence. You can change this location. Ultimately at the chosen location there must be enough free space available to store the attachments of a migration run. Attachments will be downloaded for each migrated page, and pages are migrated one after another, so the space needed rises gradually. WikiTraccs checks if there is enough space available and will pause a running migration if available disk space is below a certain threshold (~2 GB). This will be shown in the console with a corresponding message. When there is enough space available again it will continue.
You can control in wh…