Suspends (pauses) the Sitecore index.
Suspend-SearchIndex -Index <ISearchIndex>
Suspend-SearchIndex [-Name <String>]
Suspend-SearchIndex [-Name <String>]
The Suspend-SearchIndex command suspends (pauses) the Sitecore index.
© 2010-2019 Adam Najmanowicz, Michael West. All rights reserved. Sitecore PowerShell Extensions
Aliases | |
---|---|
Required? | true |
Position? | named |
Default Value | |
Accept Pipeline Input? | true (ByValue) |
Accept Wildcard Characters? | false |
The name of the index to suspend (pause).
Aliases | |
---|---|
Required? | false |
Position? | named |
Default Value | |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
The input type is the type of the objects that you can pipe to the cmdlet.
- Sitecore.ContentSearch.ISearchIndex or System.String
The output type is the type of the objects that the cmdlet emits.
- None
Help Author: Adam Najmanowicz, Michael West
The following suspends (pauses) the indexing process from running.
PS master:\> Suspend-SearchIndex -Name sitecore_master_index
The following suspends (pauses) the indexing process from running.
PS master:\> Get-SearchIndex -Name sitecore_master_index | Suspend-SearchIndex