How to Enable and Modify Continuous Crawl Interval in SharePoint 2013 Search Service Application – Content Source

Sathish Nadarajan
 
Solution Architect
November 22, 2013
 
Rate this article
 
Views
16275

In this article, let us see, how to enable Continuous crawl in SharePoint 2013 Search and modify the Crawl Interval of Continuous Crawl.

The steps are as follows. Go to Central Administration -> Application Management -> Manage Service Application.

clip_image002

Open Search Service Application

clip_image004

On the left Menu, click Content Source.

clip_image006

By Default, the Content Source will be available. Click on the Edit.

clip_image008

On the Crawl Settings section, select the Radio Button, Enable Continuous Crawl.

clip_image010

That’s it. Continuous Crawl has been enabled.

The default interval for the Continuous Crawl is 15 mins. There is no way you can modify it, either to decrease or increase the time. But by using the following power shell script, we can modify that.

 $ssa = Get-SPEnterpriseSearchServiceApplication
 $ssa.SetProperty("ContinuousCrawlInterval", 1)
 

By this, we can understand the power of powershell. Since in many scenario, even if the SharePoint doesn’t provide any UI interface to do something, there would be a way by PowerShell.

Happy Coding.

Sathish Nadarajan.

Author Info

Sathish Nadarajan
 
Solution Architect
 
Rate this article
 
Sathish is a Microsoft MVP for SharePoint (Office Servers and Services) having 15+ years of experience in Microsoft Technologies. He holds a Masters Degree in Computer Aided Design and Business ...read more
 

Leave a comment