Class SiteBackupService
java.lang.Object
com.atlassian.confluence.impl.backuprestore.backup.AbstractBackupService
com.atlassian.confluence.impl.backuprestore.backup.SiteBackupService
Service responsible for site backup operations.
- Since:
- 7.17.0
-
Field Summary
FieldsFields inherited from class com.atlassian.confluence.impl.backuprestore.backup.AbstractBackupService
DELETE_TEMP_BACKUPS_OLDER_THAN_HOURS -
Constructor Summary
ConstructorsConstructorDescriptionSiteBackupService(org.hibernate.SessionFactory sessionFactory, org.springframework.transaction.PlatformTransactionManager platformTransactionManager, BackupContainerWriterFactory backupContainerWriterFactory, BackupRestoreProviderManager backupRestoreProviderManager, com.atlassian.event.api.EventPublisher eventPublisher, ExportableEntityInfoFactory exportableEntityInfoFactory, BackupRestoreJobDao backupRestoreJobDao, BackupRestoreFilesystemManager backupRestoreFilesystemManager, StatisticsCollectorFactory statisticsCollectorFactory, ParallelTasksExecutorFactory parallelTasksExecutorFactory) -
Method Summary
Modifier and TypeMethodDescriptionprotected JobStatisticsInfobackupAllEntitiesAndAttachments(BackupRestoreJob job, BackupRestoreSettings settings, ParallelTasksExecutor parallelTasksExecutor, BackupContainerWriter containerWriter) Backups all entities (including plugin data) and attachments.voiddoBackupSynchronously(BackupRestoreJob job, BackupRestoreSettings settings) Run the backup process synchronously.protected voidwritePluginData(BackupContainerWriter containerWriter, DatabaseExporterHelper databaseExporterHelper) Methods inherited from class com.atlassian.confluence.impl.backuprestore.backup.AbstractBackupService
performBackup, postBackupJobUpdate, validateBackupJob
-
Field Details
-
BACKUP_THREADS_NUMBER
public static final int BACKUP_THREADS_NUMBER
-
-
Constructor Details
-
SiteBackupService
public SiteBackupService(org.hibernate.SessionFactory sessionFactory, org.springframework.transaction.PlatformTransactionManager platformTransactionManager, BackupContainerWriterFactory backupContainerWriterFactory, BackupRestoreProviderManager backupRestoreProviderManager, com.atlassian.event.api.EventPublisher eventPublisher, ExportableEntityInfoFactory exportableEntityInfoFactory, BackupRestoreJobDao backupRestoreJobDao, BackupRestoreFilesystemManager backupRestoreFilesystemManager, StatisticsCollectorFactory statisticsCollectorFactory, ParallelTasksExecutorFactory parallelTasksExecutorFactory)
-
-
Method Details
-
doBackupSynchronously
public void doBackupSynchronously(BackupRestoreJob job, BackupRestoreSettings settings) throws BackupRestoreException, InterruptedException Run the backup process synchronously. The function either returns the result object with all required information when the backup process finishes or throws an exception (if the backup fails). At this moment, we call the legacy xml exporter here. This function will be replaced when we get the new backup/restore functionality.- Specified by:
doBackupSynchronouslyin classAbstractBackupService- Throws:
BackupRestoreExceptionInterruptedException
-
backupAllEntitiesAndAttachments
protected JobStatisticsInfo backupAllEntitiesAndAttachments(BackupRestoreJob job, BackupRestoreSettings settings, ParallelTasksExecutor parallelTasksExecutor, BackupContainerWriter containerWriter) throws ExecutionException, InterruptedException, TimeoutException Backups all entities (including plugin data) and attachments. Descriptor properties are not written on this step.- Specified by:
backupAllEntitiesAndAttachmentsin classAbstractBackupService- Returns:
- statistics object.
- Throws:
ExecutionExceptionInterruptedExceptionTimeoutException
-
writePluginData
protected void writePluginData(BackupContainerWriter containerWriter, DatabaseExporterHelper databaseExporterHelper)
-