Skip to main content

TFS 2018–TFVC_RepositoryCodeIndexing Job Failing

Back from Holliday with a sequel for my last post. To quickly summarize our problem, we noticed very long wait times before jobs executed by the TFSJobAgent where executed. Things like triggering builds or releases, sending notifications and emails took hours before they got executed.

Will diving into the TFS administration pages, we identified the TFVC_RepositoryCodeIndexing jobs used for search as the root cause of the issue.

Let’s drill deeper into the problem by looking at a specific job log:

Events (46099) completed with status FailedAndRetry. Event 46099 completed with message 'Patch-PeriodicCatchUp: Code patch operation for Repository Id 96f8a036-54bc-47dc-9c37-08fc23d4a07b failed with error Error code -----> MaxAcceptableFractionOfFailedItemsInCrawlerThresholdBreached Exception message -----> Could not download content of lots of files, hence failing this Job. Failed Items Count: 38, Total Items: 38. Exception type -----> Microsoft.VisualStudio.Services.Search.Common.CrawlerException Exception source -----> Microsoft.VisualStudio.Services.Search.Crawler Stack trace, at Microsoft.VisualStudio.Services.Search.Crawler.Definitions.AbstractCrawler.ThrowIfFailedCrawlItemsBreachThreshold(Int32 failedRecordsCount, Int32 totalItemsToBeCrawled) at Microsoft.VisualStudio.Services.Search.Crawler.Extensions.Code.Tfvc.TfvcPatchHttpCrawler.TfvcCodeTraverser(TfvcPatchIndexCrawlSpec crawlSpec, TfvcHttpClientWrapper tfvcHttpWrapper, CrawlSinkParams crawlSinkParams) at Microsoft.VisualStudio.Services.Search.Crawler.Definitions.AbstractCrawler.Run(IndexingExecutionContext indexingExecutionContext) --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at Microsoft.VisualStudio.Services.Search.Crawler.Definitions.AbstractCrawler.Run(IndexingExecutionContext indexingExecutionContext) at Microsoft.VisualStudio.Services.Search.Server.Jobs.Operations.SingleStageCPF.ExecutePipeline(PipelineContext pipelineContext, StringBuilder resultMessage, BookkeepOperation bookkeepOp) at Microsoft.VisualStudio.Services.Search.Server.Jobs.Operations.SingleStageCPF.Run(PipelineContext pipelineContext, StringBuilder resultMessage) --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at Microsoft.VisualStudio.Services.Search.Server.Jobs.Operations.SingleStageCPF.Run(PipelineContext pipelineContext, StringBuilder resultMessage) at Microsoft.VisualStudio.Services.Search.Server.Jobs.Operations.Code.RepositoryCodeIndexingOperation.ExecuteCrawlerParserAndFeeder(PipelineContext pipelineContext, StringBuilder resultMessage) at Microsoft.VisualStudio.Services.Search.Server.Jobs.Operations.Code.RepositoryCodePatchOperation.RunOperation(IndexingExecutionContext indexingExecutionContext) [Crawler phase Total items crawled = 0. Time Taken = 15962320ms for Crawl spec type 'Microsoft.VisualStudio.Services.Search.Crawler.CrawlSpecs.TfvcPatchIndexCrawlSpec', Crawler extension 'Microsoft.VisualStudio.Services.Search.Crawler.Extensions.Code.Tfvc.TfvcPatchHttpCrawler'. ]'. OnPremiseTelemetryProperties :{"TFS.Search.Indexing.ParentCorrelationId":"5e7dfff9-485c-42ad-9101-8a258f530276","TFS.Search.Indexing.CorrelationId":"c911ee0a-2001-43fb-987d-96bb4bb8d826","TFS.Search.Indexing.CollectionName":"DefaultCollection","TFS.Search.Indexing.CollectionId":"ce06fba0-ec2f-466a-8569-1e9a13789614","TFS.Search.Indexing.ProjectName":"Ner","TFS.Search.Indexing.ProjectId":"96f8a036-54bc-47dc-9c37-08fc23d4a07b","TFS.Search.Indexing.ProjectIndexingUnitId":"144","TFS.Search.Indexing.RepositoryName":"$/Ner","TFS.Search.Indexing.RepositoryId":"96f8a036-54bc-47dc-9c37-08fc23d4a07b","TFS.Search.Indexing.RepositoryIndexingUnitId":"145","TFS.Search.Indexing.CrawlerServiceFailure":"1","TFS.Search.Indexing.CrawlerServiceFailureReason":"Microsoft.VisualStudio.Services.Search.Common.CrawlerException","TFS.Search.Indexing.CrawlingTime":"15962320","TFS.Search.Indexing.OperationStatus":"Failed","TFS.Search.Indexing.EntityType":"Code","TFS.Search.Indexing.IndexingUnitType":"TFVC_Repository","TFS.Search.Indexing.ChangeType":"Patch","TFS.Search.Indexing.JobExecutionTime":"15962332"}

We were able to see the specific items that failed to index by executing the following query on the collection databases:

select [IndexingUnitId] from [<collection_db>].[Search].[tbl_IndexingUnit] where TFSEntityId like ‘96f8a036-54bc-47dc-9c37-08fc23d4a07b’

select * from [<collection_db>].[Search].[tbl_ItemLevelFailures] where IndexingUnitId = <IndexingUnitId fetched above>

Unfortunately this didn’t bring us any closer to a solution.

In the end we choose the most drastic approach, removed the Search extensions from all collections and removed ElasticSearch itself(https://bartwullems.blogspot.com/2017/11/tfs-2018-remove-elasticsearch.html).

After everything was removed, we reinstalled ElasticSearch, added the Search extensions again and this time everything seemed to work…

Popular posts from this blog

.NET 8–Keyed/Named Services

A feature that a lot of IoC container libraries support but that was missing in the default DI container provided by Microsoft is the support for Keyed or Named Services. This feature allows you to register the same type multiple times using different names, allowing you to resolve a specific instance based on the circumstances. Although there is some controversy if supporting this feature is a good idea or not, it certainly can be handy. To support this feature a new interface IKeyedServiceProvider got introduced in .NET 8 providing 2 new methods on our ServiceProvider instance: object? GetKeyedService(Type serviceType, object? serviceKey); object GetRequiredKeyedService(Type serviceType, object? serviceKey); To use it, we need to register our service using one of the new extension methods: Resolving the service can be done either through the FromKeyedServices attribute: or by injecting the IKeyedServiceProvider interface and calling the GetRequiredKeyedServic...

Azure DevOps/ GitHub emoji

I’m really bad at remembering emoji’s. So here is cheat sheet with all emoji’s that can be used in tools that support the github emoji markdown markup: All credits go to rcaviers who created this list.

Kubernetes–Limit your environmental impact

Reducing the carbon footprint and CO2 emission of our (cloud) workloads, is a responsibility of all of us. If you are running a Kubernetes cluster, have a look at Kube-Green . kube-green is a simple Kubernetes operator that automatically shuts down (some of) your pods when you don't need them. A single pod produces about 11 Kg CO2eq per year( here the calculation). Reason enough to give it a try! Installing kube-green in your cluster The easiest way to install the operator in your cluster is through kubectl. We first need to install a cert-manager: kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.yaml Remark: Wait a minute before you continue as it can take some time before the cert-manager is up & running inside your cluster. Now we can install the kube-green operator: kubectl apply -f https://github.com/kube-green/kube-green/releases/latest/download/kube-green.yaml Now in the namespace where we want t...