Class NoopIndexRecoveryService
java.lang.Object
com.atlassian.confluence.impl.index.NoopIndexRecoveryService
- All Implemented Interfaces:
IndexRecoveryService,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean
public class NoopIndexRecoveryService
extends Object
implements IndexRecoveryService, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
A noop implementation for when index recovery process is not required for nodes to join the cluster, e.g. when using externally-managed index such as OpenSearch.
- Since:
- 8.8
-
Constructor Summary
ConstructorsConstructorDescriptionNoopIndexRecoveryService(JournalStateStore journalStateStore, JournalDao journalDao, com.atlassian.event.api.EventPublisher eventPublisher, com.atlassian.plugin.PluginAccessor pluginAccessor) -
Method Summary
Modifier and TypeMethodDescriptionvoidbooleancreateIndexBackup(JournalIdentifier journalId, String indexDirName, IndexRecoverer indexRecoverer) Creates an index snapshot in the cluster shared home.voiddestroy()voidhandleStartingEvent(com.atlassian.plugin.event.events.PluginFrameworkResumingEvent event) booleanisIndexRecoveryRequired(JournalIdentifier journalId, String indexDirName) Checks to see whether the index needs to be recovered.booleanrecoverIndex(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.booleanrecoverIndexFromSharedHome(JournalIdentifier journalId, String indexDirName) Recovers the index snapshot stored in the shared home.
-
Constructor Details
-
NoopIndexRecoveryService
public NoopIndexRecoveryService(JournalStateStore journalStateStore, JournalDao journalDao, com.atlassian.event.api.EventPublisher eventPublisher, com.atlassian.plugin.PluginAccessor pluginAccessor)
-
-
Method Details
-
isIndexRecoveryRequired
Description copied from interface:IndexRecoveryServiceChecks 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:
isIndexRecoveryRequiredin 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:IndexRecoveryServiceRecovers 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:
recoverIndexin 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:IndexRecoveryServiceCreates an index snapshot in the cluster shared home.This will overwrite existing snapshots of the same index in the shared home.
- Specified by:
createIndexBackupin 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
-
handleStartingEvent
@EventListener public void handleStartingEvent(com.atlassian.plugin.event.events.PluginFrameworkResumingEvent event) -
afterPropertiesSet
- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
Exception
-
destroy
- Specified by:
destroyin interfaceorg.springframework.beans.factory.DisposableBean- Throws:
Exception
-