With the new version of SharePoint a new type of crawl appeared in 2013 named « Continuous Crawl ». For Old schools like me on SharePoint 2010 we had 2 crawls available and configurable on our Search Service Application.
The disadvantage of these crawls, is that once launched, you are not able to launch a second in parallel (on the same content source), and therefore the content changed in the meantime we will need to wait until the current crawl is finished (crawl and another) to be integrated into the index, and therefore to be found via search. An example :
So, we can’t keep an updated index with the latest changes, because latency is invited in each crawling process. It is possible that in most of cases this operation is suitable and favorable for your clients, but for those who want to search their content immediately or after their integration into SharePoint there is now a new solution in SharePoint: "Continuous Crawl".
The Continuous Crawl So resuming: The "Continuous Crawl" is a type of crawl that aims to maintain the index as current as possible.
His operation is simple: once activated, it will launch the crawl at regular intervals. The major difference with incremental crawl is that the crawl can run in parallel, and do not expect that the crawl is completed prior to launch.
Important Points:
If we take our example above with "Continuous Crawl":
In Central Administration, click on your search service application, and then in the menu on the "Content Sources"
Clique on « New Content Source » at the menu
Chose « SharePoint Sites »
Select « Enable Continuous Crawls »
Click on your service application search then "Crawl Log" in the section "Diagnostics".
Select your Content Source and click on « View crawl history »
Or via PowerShell Execute the followoing cmdlets $SearchSA = « Search Service» Get-SPEnterpriseSearchCrawlContentSource -SearchApplication $SearchSA | select *
Impact on our Servers
The impact of a "Continuous Crawl" is the same as an incremental crawl. At the parallel execution of crawls, the "Continuous Crawl" within the parameters defined in the "Crawler Impact Rule" which controls the maximum number of requests that can be executed by the server (default 8).
This feature is not available in SharePoint Online 2013. You can read it here: http://technet.microsoft.com/en-us/library/jj819291.aspx
Ed Price - MSFT edited Original. Comment: Title & Tags. Some bullets formatted