Class DefaultIndexRecoveryService
java.lang.Object
com.atlassian.confluence.impl.index.DefaultIndexRecoveryService
- All Implemented Interfaces:
IndexRecoveryService
,org.springframework.beans.factory.DisposableBean
,org.springframework.beans.factory.InitializingBean
public class DefaultIndexRecoveryService
extends Object
implements IndexRecoveryService, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
This is the default implementation of
IndexRecoveryService
.- Since:
- 5.8
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDefaultIndexRecoveryService
(JournalStateStore journalStateStore, JournalDao journalDao, com.atlassian.dc.filestore.api.FileStore.Path sharedHome, ClusterManager clusterManager, com.atlassian.event.api.EventPublisher eventPublisher, ClusterEventWrapperService clusterEventWrapperService, com.atlassian.plugin.PluginAccessor pluginAccessor, ClusterConfigurationHelper clusterConfigurationHelper, ConfluenceDirectories confluenceDirectories, BootstrapManager bootstrapManager, SearchPlatformConfig searchPlatformConfig) -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
createIndexBackup
(JournalIdentifier journalId, String indexDirName, IndexRecoverer indexRecoverer) Creates an index snapshot in the cluster shared home.void
destroy()
protected IndexRecovererModuleDescriptor
void
handleEvent
(ClusterEventWrapper eventWrapper) boolean
isIndexRecoveryRequired
(JournalIdentifier journalId, String indexDirName) Checks to see whether the index needs to be recovered.void
All plugins (including analytics) have been started successfully.void
boolean
recoverIndex
(JournalIdentifier journalId, String indexDirName) Recovers the index required by asking other nodes in the cluster for a snapshot of their index and copying it to its local home directory.boolean
recoverIndexFromSharedHome
(JournalIdentifier journalId, String indexDirName) Recovers the index snapshot stored in the shared home.protected void
-
Field Details
-
RECOVERED_JOURNAL_PREFIX
- See Also:
-
-
Constructor Details
-
DefaultIndexRecoveryService
public DefaultIndexRecoveryService(JournalStateStore journalStateStore, JournalDao journalDao, com.atlassian.dc.filestore.api.FileStore.Path sharedHome, ClusterManager clusterManager, com.atlassian.event.api.EventPublisher eventPublisher, ClusterEventWrapperService clusterEventWrapperService, com.atlassian.plugin.PluginAccessor pluginAccessor, ClusterConfigurationHelper clusterConfigurationHelper, ConfluenceDirectories confluenceDirectories, BootstrapManager bootstrapManager, SearchPlatformConfig searchPlatformConfig) - Since:
- 7.14
-
-
Method Details
-
isIndexRecoveryRequired
Description copied from interface:IndexRecoveryService
Checks to see whether the index needs to be recovered.This will be true if the index folder does not exist, or, if the index is copied over from a live system and is invalid, or, if the journal has been purged past where the node is currently processing, Note, this will always return false if the instance is not clustered.
- Specified by:
isIndexRecoveryRequired
in interfaceIndexRecoveryService
- Parameters:
journalId
- the index to check whether it needs to be recoveredindexDirName
- the name of the subdirectory containing the Lucene index
-
recoverIndex
Description copied from interface:IndexRecoveryService
Recovers the index required by asking other nodes in the cluster for a snapshot of their index and copying it to its local home directory.This will overwrite the local index files if it already exists.
- Specified by:
recoverIndex
in interfaceIndexRecoveryService
- Parameters:
journalId
- the index to recoverindexDirName
- the name of the subdirectory containing the Lucene index- Returns:
- true if index recovery was successful, false otherwise.
-
createIndexBackup
public boolean createIndexBackup(JournalIdentifier journalId, String indexDirName, IndexRecoverer indexRecoverer) Description copied from interface:IndexRecoveryService
Creates an index snapshot in the cluster shared home.This will overwrite existing snapshots of the same index in the shared home.
- Specified by:
createIndexBackup
in interfaceIndexRecoveryService
- Parameters:
journalId
- the index to backupindexDirName
- the name of the subdirectory containing the Lucene indexindexRecoverer
- the index recover module that will take the lucene index snapshot- Returns:
- true if successful
-
onPluginFrameworkStartedEvent
All plugins (including analytics) have been started successfully. -
triggerIndexRecovererModuleDescriptors
protected void triggerIndexRecovererModuleDescriptors() -
onReIndexFinishedEvent
-
handleEvent
- Throws:
Exception
-
getIndexRecovererModuleDescriptor
protected IndexRecovererModuleDescriptor getIndexRecovererModuleDescriptor(Predicate<IndexRecovererModuleDescriptor> predicate) - Returns:
- the IndexRecoverModuleDescriptor that satisfies the predicate
-
afterPropertiesSet
- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
- Throws:
Exception
-
destroy
- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
- Throws:
Exception
-