├── .editorconfig ├── Azure_DevOps_Server_2019 ├── CleanUpShardDetails.ps1 ├── Common.psm1 ├── ExcludedTfvcFoldersForIndexing.ps1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetCollectionReIndexingActivityStatus.ps1 ├── GetElasticsearchDocCountPerRepository.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── GetRepositoryReIndexingActivityStatus.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── OptimizeElasticIndex.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SetIndexingStateRepository.ps1 ├── SqlScripts │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddFilesToBeIndexed.sql │ ├── AddRepositoryUpdateMetadataChangeEvent.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CleanUpShardDetailsTable.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeBulkIndexingInProgressRepositoryCount.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CodeIndexingCompletedCount.sql │ ├── CodeIndexingInProgressRepositories.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── GetReIndexingStatusOfFiles.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWikiIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueuePeriodicMaintenanceJob.sql │ ├── QueueWikiExtensionInstallIndexing.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWikiIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── TfvcExcludedFolders │ │ ├── AddFoldersInExclusionList.sql │ │ ├── DeleteAllFoldersInExclusionList.sql │ │ ├── FetchFoldersInExclusionList.sql │ │ └── RemoveFoldersFromExclusionList.sql │ ├── WikiAccountFaultInResult.sql │ ├── WikiFailedIndexingActivity.sql │ ├── WikiIndexingCompletedActivity.sql │ ├── WikiIndexingInProgressActivity.sql │ ├── WikiIndexingInProgressRepositories.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 ├── Troubleshooting │ ├── Actions │ │ ├── ActionRelations.Tests.ps1 │ │ ├── ActionRelations.ps1 │ │ ├── Enable-IndexingFeatureFlags.psm1 │ │ ├── Remove-Index.psm1 │ │ ├── Remove-OrphanIndexedDocuments.psm1 │ │ ├── Request-ConfigureSearch.psm1 │ │ ├── Request-FixElasticsearchClusterState.psm1 │ │ ├── Request-InstallSearchExtension.psm1 │ │ ├── Request-ReconfigureSearch.psm1 │ │ ├── Request-Upgrade.psm1 │ │ ├── Reset-ExtensionInstallationRegKeys.psm1 │ │ └── Restart-Indexing.psm1 │ ├── Analyzers │ │ ├── AnalyzerRelations.Tests.ps1 │ │ ├── AnalyzerRelations.ps1 │ │ ├── Test-ElasticsearchHealth.psm1 │ │ ├── Test-FaultInJobInInfiniteRetries.psm1 │ │ ├── Test-GeneralTfvcIssues.psm1 │ │ ├── Test-IndexingUnitPointsToDeletedIndex.psm1 │ │ ├── Test-IndicesHaveUnsupportedMappings.psm1 │ │ └── Test-SqlHealth.psm1 │ ├── Repair-Search.ps1 │ ├── SqlScripts │ │ ├── CleanUpCollectionIndexingState.sql │ │ ├── GetCollectionIndexingUnitDetails.sql │ │ ├── QueueJob.sql │ │ ├── SearchCollectionProperties.sql │ │ └── SearchIndexingIndices.sql │ └── Utils │ │ ├── Algorithms.ps1 │ │ └── Common.psm1 └── WipeOutAndResetElasticSearch.ps1 ├── Azure_DevOps_Server_2022 ├── CleanUpShardDetails.ps1 ├── Common.psm1 ├── ExcludedTfvcFoldersForIndexing.ps1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetCollectionReIndexingActivityStatus.ps1 ├── GetElasticsearchDocCountPerRepository.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── GetRepositoryReIndexingActivityStatus.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── OptimizeElasticIndex.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SetIndexingStateRepository.ps1 ├── SqlScripts │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddFilesToBeIndexed.sql │ ├── AddRepositoryUpdateMetadataChangeEvent.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CleanUpShardDetailsTable.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeBulkIndexingInProgressRepositoryCount.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CodeIndexingCompletedCount.sql │ ├── CodeIndexingInProgressRepositories.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── GetActiveIncompatibleIndex.sql │ ├── GetReIndexingStatusOfFiles.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWikiIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueuePeriodicMaintenanceJob.sql │ ├── QueueWikiExtensionInstallIndexing.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWikiIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── TfvcExcludedFolders │ │ ├── AddFoldersInExclusionList.sql │ │ ├── DeleteAllFoldersInExclusionList.sql │ │ ├── FetchFoldersInExclusionList.sql │ │ └── RemoveFoldersFromExclusionList.sql │ ├── WikiAccountFaultInResult.sql │ ├── WikiFailedIndexingActivity.sql │ ├── WikiIndexingCompletedActivity.sql │ ├── WikiIndexingInProgressActivity.sql │ ├── WikiIndexingInProgressRepositories.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 ├── Troubleshooting │ ├── Actions │ │ ├── ActionRelations.Tests.ps1 │ │ ├── ActionRelations.ps1 │ │ ├── Enable-IndexingFeatureFlags.psm1 │ │ ├── Remove-Index.psm1 │ │ ├── Remove-OrphanIndexedDocuments.psm1 │ │ ├── Request-ConfigureSearch.psm1 │ │ ├── Request-FixElasticsearchClusterState.psm1 │ │ ├── Request-InstallSearchExtension.psm1 │ │ ├── Request-ReconfigureSearch.psm1 │ │ ├── Request-Upgrade.psm1 │ │ ├── Reset-ExtensionInstallationRegKeys.psm1 │ │ └── Restart-Indexing.psm1 │ ├── Analyzers │ │ ├── AnalyzerRelations.Tests.ps1 │ │ ├── AnalyzerRelations.ps1 │ │ ├── Test-ElasticsearchHealth.psm1 │ │ ├── Test-FaultInJobInInfiniteRetries.psm1 │ │ ├── Test-GeneralTfvcIssues.psm1 │ │ ├── Test-IndexingUnitPointsToDeletedIndex.psm1 │ │ ├── Test-IndicesHaveUnsupportedMappings.psm1 │ │ └── Test-SqlHealth.psm1 │ ├── Repair-Search.ps1 │ ├── SqlScripts │ │ ├── CleanUpCollectionIndexingState.sql │ │ ├── GetCollectionIndexingUnitDetails.sql │ │ ├── QueueJob.sql │ │ ├── SearchCollectionProperties.sql │ │ └── SearchIndexingIndices.sql │ ├── Utils │ │ ├── Algorithms.ps1 │ │ └── Common.psm1 │ └── readme.txt ├── ViewDelete-IncompatibleIndices.ps1 └── WipeOutAndResetElasticSearch.ps1 ├── HealthCheck └── Database │ ├── Common.psm1 │ ├── RepoIUHierarchy.sql │ ├── RepositoryHealthCheck.ps1 │ ├── SearchCollectionProperties.sql │ ├── SearchDBSanityCheck.ps1 │ └── SearchFFData.sql ├── Java Migration ├── Azure_DevOps_Server_2019.md ├── README.md ├── TFS_2017 RTW.md ├── TFS_2017Update1.md ├── TFS_2017Update2.md ├── TFS_2017Update3.md ├── TFS_2018RTW.md ├── TFS_2018Update1.md ├── TFS_2018Update2.md ├── TFS_2018Update3.md ├── flow1.png ├── flow2.png └── java_home.png ├── README.md ├── SECURITY.md ├── SearchDiagonistics └── README.txt ├── TFS_2017RTW ├── CheckIndexingStatus.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingRepository.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SqlScripts │ ├── AccountFaultInResult.sql │ ├── AddDataRe-IndexingJob.sql │ ├── AddExtensionInstallJobData.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CountRepositoryIndexingCompleted.sql │ ├── IndexingInProgressRepositoryCount.sql │ ├── PauseCodeIndexing.sql │ ├── QueueExtensionInstallIndexing.sql │ ├── QueueRe-IndexingJob.sql │ ├── RepositoriesInFileDiscoveryPhase.sql │ └── ResumeCodeIndexing.sql ├── TriggerCollectionIndexing.ps1 └── WipeOutAndResetElasticSearch.ps1 ├── TFS_2017Update1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingRepository.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SqlScripts │ ├── AccountFaultInResult.sql │ ├── AddDataRe-IndexingJob.sql │ ├── AddExtensionInstallJobData.sql │ ├── BulkIndexingActivity.sql │ ├── BulkIndexingInProgressActivity.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── ContinuousIndexingActivity.sql │ ├── ContinuousIndexingInProgressActivity.sql │ ├── CountRepositoryIndexingCompleted.sql │ ├── FailedIndexingActivity.sql │ ├── FixIndexingIndexName.sql │ ├── IndexingInProgressRepositoryCount.sql │ ├── PauseCodeIndexing.sql │ ├── QueueExtensionInstallIndexing.sql │ ├── QueueRe-IndexingJob.sql │ └── ResumeCodeIndexing.sql ├── TriggerCollectionIndexing.ps1 └── WipeOutAndResetElasticSearch.ps1 ├── TFS_2017Update2 ├── Common.psm1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SqlScripts │ ├── AddCodeExtensionInstallJobData.sql │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddWorkItemExtensionInstallJobData.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CodeIndexingInProgressRepositoryCount.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 └── WipeOutAndResetElasticSearch.ps1 ├── TFS_2017Update3 ├── Common.psm1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SqlScripts │ ├── AddCodeExtensionInstallJobData.sql │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddFilesToBeIndexed.sql │ ├── AddWorkItemExtensionInstallJobData.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CodeIndexingInProgressRepositoryCount.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── GetReIndexingStatusOfFiles.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueuePeriodicMaintenanceJob.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 └── WipeOutAndResetElasticSearch.ps1 ├── TFS_2018RTW ├── Common.psm1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── OptimizeElasticIndex.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SetIndexingStateRepository.ps1 ├── SqlScripts │ ├── AddCodeExtensionInstallJobData.sql │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddFilesToBeIndexed.sql │ ├── AddRepositoryUpdateMetadataChangeEvent.sql │ ├── AddWorkItemExtensionInstallJobData.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeBulkIndexingInProgressRepositoryCount.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── GetReIndexingStatusOfFiles.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueuePeriodicMaintenanceJob.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 ├── Troubleshooting │ ├── Actions │ │ ├── ActionRelations.Tests.ps1 │ │ ├── ActionRelations.ps1 │ │ ├── Enable-IndexingFeatureFlags.psm1 │ │ ├── Remove-Index.psm1 │ │ ├── Remove-OrphanIndexedDocuments.psm1 │ │ ├── Request-ConfigureSearch.psm1 │ │ ├── Request-FixElasticsearchClusterState.psm1 │ │ ├── Request-InstallSearchExtension.psm1 │ │ ├── Request-ReconfigureSearch.psm1 │ │ ├── Request-TfvcSProcHotfix.psm1 │ │ ├── Request-Upgrade.psm1 │ │ ├── Reset-ExtensionInstallationRegKeys.psm1 │ │ └── Restart-Indexing.psm1 │ ├── Analyzers │ │ ├── AnalyzerRelations.Tests.ps1 │ │ ├── AnalyzerRelations.ps1 │ │ ├── Test-ElasticsearchHealth.psm1 │ │ ├── Test-FaultInJobInInfiniteRetries.psm1 │ │ ├── Test-GeneralTfvcIssues.psm1 │ │ ├── Test-IndexingUnitPointsToDeletedIndex.psm1 │ │ ├── Test-IndicesHaveUnsupportedMappings.psm1 │ │ ├── Test-InefficientTfvcCrawlingStoredProcedure.psm1 │ │ └── Test-SqlHealth.psm1 │ ├── Repair-Search.ps1 │ ├── SqlScripts │ │ ├── CleanUpCollectionIndexingState.sql │ │ ├── GetCollectionIndexingUnitDetails.sql │ │ ├── QueueJob.sql │ │ ├── SearchCollectionProperties.sql │ │ └── SearchIndexingIndices.sql │ └── Utils │ │ ├── Algorithms.ps1 │ │ └── Common.psm1 └── WipeOutAndResetElasticSearch.ps1 ├── TFS_2018Update1 ├── Common.psm1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── OptimizeElasticIndex.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SetIndexingStateRepository.ps1 ├── SqlScripts │ ├── AddCodeExtensionInstallJobData.sql │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddFilesToBeIndexed.sql │ ├── AddRepositoryUpdateMetadataChangeEvent.sql │ ├── AddWorkItemExtensionInstallJobData.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeBulkIndexingInProgressRepositoryCount.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── GetReIndexingStatusOfFiles.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueuePeriodicMaintenanceJob.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 ├── Troubleshooting │ ├── Actions │ │ ├── ActionRelations.Tests.ps1 │ │ ├── ActionRelations.ps1 │ │ ├── Enable-IndexingFeatureFlags.psm1 │ │ ├── Remove-Index.psm1 │ │ ├── Remove-OrphanIndexedDocuments.psm1 │ │ ├── Request-ConfigureSearch.psm1 │ │ ├── Request-FixElasticsearchClusterState.psm1 │ │ ├── Request-InstallSearchExtension.psm1 │ │ ├── Request-ReconfigureSearch.psm1 │ │ ├── Request-TfvcSProcHotfix.psm1 │ │ ├── Request-Upgrade.psm1 │ │ ├── Reset-ExtensionInstallationRegKeys.psm1 │ │ └── Restart-Indexing.psm1 │ ├── Analyzers │ │ ├── AnalyzerRelations.Tests.ps1 │ │ ├── AnalyzerRelations.ps1 │ │ ├── Test-ElasticsearchHealth.psm1 │ │ ├── Test-FaultInJobInInfiniteRetries.psm1 │ │ ├── Test-GeneralTfvcIssues.psm1 │ │ ├── Test-IndexingUnitPointsToDeletedIndex.psm1 │ │ ├── Test-IndicesHaveUnsupportedMappings.psm1 │ │ ├── Test-InefficientTfvcCrawlingStoredProcedure.psm1 │ │ └── Test-SqlHealth.psm1 │ ├── Repair-Search.ps1 │ ├── SqlScripts │ │ ├── CleanUpCollectionIndexingState.sql │ │ ├── GetCollectionIndexingUnitDetails.sql │ │ ├── QueueJob.sql │ │ ├── SearchCollectionProperties.sql │ │ └── SearchIndexingIndices.sql │ └── Utils │ │ ├── Algorithms.ps1 │ │ └── Common.psm1 └── WipeOutAndResetElasticSearch.ps1 ├── TFS_2018Update2 ├── Common.psm1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetCollectionReIndexingActivityStatus.ps1 ├── GetElasticsearchDocCountPerRepository.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── GetRepositoryReIndexingActivityStatus.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── OptimizeElasticIndex.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics │ ├── CollectionDBDiagnosticScripts │ │ ├── ClassificationNodeData.sql │ │ ├── DisabledFilesData.sql │ │ ├── IndexingUnitChangeEventData.sql │ │ ├── IndexingUnitData.sql │ │ ├── ItemLevelFailuresData.sql │ │ ├── JobYieldData.sql │ │ ├── ResourceLockData.sql │ │ └── SearchRegistryDataOfCollection.sql │ ├── CollectionDBSearchDiagnostics.ps1 │ ├── Common.psm1 │ ├── ConfigurationDBDiagnosticScripts │ │ ├── JobHistoryData.sql │ │ ├── JobQueueData.sql │ │ ├── JobThrottlingData.sql │ │ ├── SearchConnectionUrlData.sql │ │ ├── SearchRegistryData.sql │ │ └── ServiceHostData.sql │ ├── ConfigurationDBSearchDiagnostics.ps1 │ ├── ElasticsearchDiagnostics.ps1 │ └── README.txt ├── SetIndexingStateRepository.ps1 ├── SqlScripts │ ├── AddCodeRe-IndexingJobData.sql │ ├── AddFilesToBeIndexed.sql │ ├── AddRepositoryUpdateMetadataChangeEvent.sql │ ├── CleanUpCollectionIndexingState.sql │ ├── CleanUpCollectionIndexingState_IndexDelete.sql │ ├── CodeAccountFaultInResult.sql │ ├── CodeBulkIndexingActivity.sql │ ├── CodeBulkIndexingInProgressActivity.sql │ ├── CodeBulkIndexingInProgressRepositoryCount.sql │ ├── CodeContinuousIndexingActivity.sql │ ├── CodeContinuousIndexingInProgressActivity.sql │ ├── CodeFailedIndexingActivity.sql │ ├── CodeIndexingCompletedCount.sql │ ├── CodeIndexingInProgressRepositories.sql │ ├── CountCodeIndexingCompleted.sql │ ├── CountWorkItemIndexingCompleted.sql │ ├── FixIndexingIndexName.sql │ ├── GetReIndexingStatusOfFiles.sql │ ├── PauseCodeIndexing.sql │ ├── PauseWikiIndexing.sql │ ├── PauseWorkItemIndexing.sql │ ├── QueueCodeExtensionInstallIndexing.sql │ ├── QueueCodeRe-IndexingJob.sql │ ├── QueuePeriodicMaintenanceJob.sql │ ├── QueueWikiExtensionInstallIndexing.sql │ ├── QueueWorkItemExtensionInstallIndexing.sql │ ├── ResumeCodeIndexing.sql │ ├── ResumeWikiIndexing.sql │ ├── ResumeWorkItemIndexing.sql │ ├── UpdateCodeRepairJobToAllowJobDefinitionOverride.sql │ ├── WikiAccountFaultInResult.sql │ ├── WikiFailedIndexingActivity.sql │ ├── WikiIndexingCompletedActivity.sql │ ├── WikiIndexingInProgressActivity.sql │ ├── WikiIndexingInProgressRepositories.sql │ ├── WorkItemAccountFaultInResult.sql │ ├── WorkItemBulkIndexingActivity.sql │ ├── WorkItemBulkIndexingInProgressActivity.sql │ ├── WorkItemContinuousIndexingActivity.sql │ ├── WorkItemContinuousIndexingInProgressActivity.sql │ ├── WorkItemFailedIndexingActivity.sql │ └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 ├── Troubleshooting │ ├── Actions │ │ ├── ActionRelations.Tests.ps1 │ │ ├── ActionRelations.ps1 │ │ ├── Enable-IndexingFeatureFlags.psm1 │ │ ├── Remove-Index.psm1 │ │ ├── Remove-OrphanIndexedDocuments.psm1 │ │ ├── Request-ConfigureSearch.psm1 │ │ ├── Request-FixElasticsearchClusterState.psm1 │ │ ├── Request-InstallSearchExtension.psm1 │ │ ├── Request-ReconfigureSearch.psm1 │ │ ├── Request-TfvcSProcHotfix.psm1 │ │ ├── Request-Upgrade.psm1 │ │ ├── Reset-ExtensionInstallationRegKeys.psm1 │ │ └── Restart-Indexing.psm1 │ ├── Analyzers │ │ ├── AnalyzerRelations.Tests.ps1 │ │ ├── AnalyzerRelations.ps1 │ │ ├── Test-ElasticsearchHealth.psm1 │ │ ├── Test-FaultInJobInInfiniteRetries.psm1 │ │ ├── Test-GeneralTfvcIssues.psm1 │ │ ├── Test-IndexingUnitPointsToDeletedIndex.psm1 │ │ ├── Test-IndicesHaveUnsupportedMappings.psm1 │ │ ├── Test-InefficientTfvcCrawlingStoredProcedure.psm1 │ │ └── Test-SqlHealth.psm1 │ ├── Repair-Search.ps1 │ ├── SqlScripts │ │ ├── CleanUpCollectionIndexingState.sql │ │ ├── GetCollectionIndexingUnitDetails.sql │ │ ├── QueueJob.sql │ │ ├── SearchCollectionProperties.sql │ │ └── SearchIndexingIndices.sql │ └── Utils │ │ ├── Algorithms.ps1 │ │ └── Common.psm1 └── WipeOutAndResetElasticSearch.ps1 └── TFS_2018Update3 ├── Common.psm1 ├── ExcludedTfvcFoldersForIndexing.ps1 ├── ExtensionInstallIndexingStatus.ps1 ├── FixIndexingIndexName.ps1 ├── GetCollectionReIndexingActivityStatus.ps1 ├── GetElasticsearchDocCountPerRepository.ps1 ├── GetReIndexingStatusOfFiles.ps1 ├── GetRepositoryReIndexingActivityStatus.ps1 ├── MissingIndexFolderTriggerCollectionIndexing.ps1 ├── OptimizeElasticIndex.ps1 ├── PauseIndexing.ps1 ├── Re-IndexingCodeRepository.ps1 ├── ReIndexFiles.ps1 ├── RecentIndexingActivity.ps1 ├── ResumeIndexing.ps1 ├── SearchDiagonistics ├── CollectionDBDiagnosticScripts │ ├── ClassificationNodeData.sql │ ├── DisabledFilesData.sql │ ├── IndexingUnitChangeEventData.sql │ ├── IndexingUnitData.sql │ ├── ItemLevelFailuresData.sql │ ├── JobYieldData.sql │ ├── ResourceLockData.sql │ └── SearchRegistryDataOfCollection.sql ├── CollectionDBSearchDiagnostics.ps1 ├── Common.psm1 ├── ConfigurationDBDiagnosticScripts │ ├── JobHistoryData.sql │ ├── JobQueueData.sql │ ├── JobThrottlingData.sql │ ├── SearchConnectionUrlData.sql │ ├── SearchRegistryData.sql │ └── ServiceHostData.sql ├── ConfigurationDBSearchDiagnostics.ps1 ├── ElasticsearchDiagnostics.ps1 └── README.txt ├── SetIndexingStateRepository.ps1 ├── SqlScripts ├── AddCodeRe-IndexingJobData.sql ├── AddFilesToBeIndexed.sql ├── AddRepositoryUpdateMetadataChangeEvent.sql ├── CleanUpCollectionIndexingState.sql ├── CleanUpCollectionIndexingState_IndexDelete.sql ├── CodeAccountFaultInResult.sql ├── CodeBulkIndexingActivity.sql ├── CodeBulkIndexingInProgressActivity.sql ├── CodeBulkIndexingInProgressRepositoryCount.sql ├── CodeContinuousIndexingActivity.sql ├── CodeContinuousIndexingInProgressActivity.sql ├── CodeFailedIndexingActivity.sql ├── CodeIndexingCompletedCount.sql ├── CodeIndexingInProgressRepositories.sql ├── CountCodeIndexingCompleted.sql ├── CountWorkItemIndexingCompleted.sql ├── FixIndexingIndexName.sql ├── GetReIndexingStatusOfFiles.sql ├── PauseCodeIndexing.sql ├── PauseWikiIndexing.sql ├── PauseWorkItemIndexing.sql ├── QueueCodeExtensionInstallIndexing.sql ├── QueueCodeRe-IndexingJob.sql ├── QueuePeriodicMaintenanceJob.sql ├── QueueWikiExtensionInstallIndexing.sql ├── QueueWorkItemExtensionInstallIndexing.sql ├── ResumeCodeIndexing.sql ├── ResumeWikiIndexing.sql ├── ResumeWorkItemIndexing.sql ├── TfvcExcludedFolders │ ├── AddFoldersInExclusionList.sql │ ├── DeleteAllFoldersInExclusionList.sql │ ├── FetchFoldersInExclusionList.sql │ └── RemoveFoldersFromExclusionList.sql ├── UpdateCodeRepairJobToAllowJobDefinitionOverride.sql ├── WikiAccountFaultInResult.sql ├── WikiFailedIndexingActivity.sql ├── WikiIndexingCompletedActivity.sql ├── WikiIndexingInProgressActivity.sql ├── WikiIndexingInProgressRepositories.sql ├── WorkItemAccountFaultInResult.sql ├── WorkItemBulkIndexingActivity.sql ├── WorkItemBulkIndexingInProgressActivity.sql ├── WorkItemContinuousIndexingActivity.sql ├── WorkItemContinuousIndexingInProgressActivity.sql ├── WorkItemFailedIndexingActivity.sql └── WorkItemIndexingInProgressRepositoryCount.sql ├── TriggerCollectionIndexing.ps1 ├── Troubleshooting ├── Actions │ ├── ActionRelations.Tests.ps1 │ ├── ActionRelations.ps1 │ ├── Enable-IndexingFeatureFlags.psm1 │ ├── Remove-Index.psm1 │ ├── Remove-OrphanIndexedDocuments.psm1 │ ├── Request-ConfigureSearch.psm1 │ ├── Request-FixElasticsearchClusterState.psm1 │ ├── Request-InstallSearchExtension.psm1 │ ├── Request-ReconfigureSearch.psm1 │ ├── Request-Upgrade.psm1 │ ├── Reset-ExtensionInstallationRegKeys.psm1 │ └── Restart-Indexing.psm1 ├── Analyzers │ ├── AnalyzerRelations.Tests.ps1 │ ├── AnalyzerRelations.ps1 │ ├── Test-ElasticsearchHealth.psm1 │ ├── Test-FaultInJobInInfiniteRetries.psm1 │ ├── Test-GeneralTfvcIssues.psm1 │ ├── Test-IndexingUnitPointsToDeletedIndex.psm1 │ ├── Test-IndicesHaveUnsupportedMappings.psm1 │ └── Test-SqlHealth.psm1 ├── Repair-Search.ps1 ├── SqlScripts │ ├── CleanUpCollectionIndexingState.sql │ ├── GetCollectionIndexingUnitDetails.sql │ ├── QueueJob.sql │ ├── SearchCollectionProperties.sql │ └── SearchIndexingIndices.sql └── Utils │ ├── Algorithms.ps1 │ └── Common.psm1 └── WipeOutAndResetElasticSearch.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/.editorconfig -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/CleanUpShardDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/CleanUpShardDetails.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Common.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/ExcludedTfvcFoldersForIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/ExcludedTfvcFoldersForIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/GetCollectionReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/GetCollectionReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/GetElasticsearchDocCountPerRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/GetElasticsearchDocCountPerRepository.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/GetRepositoryReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/GetRepositoryReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/OptimizeElasticIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/OptimizeElasticIndex.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/PauseIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SetIndexingStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SetIndexingStateRepository.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CleanUpShardDetailsTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CleanUpShardDetailsTable.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeIndexingCompletedCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeIndexingCompletedCount.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CodeIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CodeIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/PauseWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/PauseWikiIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/QueueWikiExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/QueueWikiExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/ResumeWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/ResumeWikiIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/TfvcExcludedFolders/AddFoldersInExclusionList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/TfvcExcludedFolders/AddFoldersInExclusionList.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WikiAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WikiAccountFaultInResult.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WikiFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WikiFailedIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WikiIndexingCompletedActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WikiIndexingCompletedActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WikiIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WikiIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WikiIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WikiIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/ActionRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/ActionRelations.Tests.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/ActionRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/ActionRelations.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Remove-Index.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Remove-Index.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Request-ConfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Request-ConfigureSearch.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Request-ReconfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Request-ReconfigureSearch.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Request-Upgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Request-Upgrade.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Actions/Restart-Indexing.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Actions/Restart-Indexing.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Analyzers/AnalyzerRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Analyzers/AnalyzerRelations.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Analyzers/Test-SqlHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Analyzers/Test-SqlHealth.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Repair-Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Repair-Search.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/SqlScripts/QueueJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/SqlScripts/QueueJob.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/SqlScripts/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/SqlScripts/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/SqlScripts/SearchIndexingIndices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/SqlScripts/SearchIndexingIndices.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Utils/Algorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Utils/Algorithms.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/Troubleshooting/Utils/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/Troubleshooting/Utils/Common.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2019/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2019/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/CleanUpShardDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/CleanUpShardDetails.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Common.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/ExcludedTfvcFoldersForIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/ExcludedTfvcFoldersForIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/GetCollectionReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/GetCollectionReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/GetElasticsearchDocCountPerRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/GetElasticsearchDocCountPerRepository.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/GetRepositoryReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/GetRepositoryReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/OptimizeElasticIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/OptimizeElasticIndex.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/PauseIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SetIndexingStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SetIndexingStateRepository.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CleanUpShardDetailsTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CleanUpShardDetailsTable.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeIndexingCompletedCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeIndexingCompletedCount.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CodeIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CodeIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/GetActiveIncompatibleIndex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/GetActiveIncompatibleIndex.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/PauseWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/PauseWikiIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/QueueWikiExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/QueueWikiExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/ResumeWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/ResumeWikiIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WikiAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WikiAccountFaultInResult.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WikiFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WikiFailedIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WikiIndexingCompletedActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WikiIndexingCompletedActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WikiIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WikiIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WikiIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WikiIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/ActionRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/ActionRelations.Tests.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/ActionRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/ActionRelations.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Remove-Index.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Remove-Index.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Request-ConfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Request-ConfigureSearch.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Request-ReconfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Request-ReconfigureSearch.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Request-Upgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Request-Upgrade.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Actions/Restart-Indexing.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Actions/Restart-Indexing.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Analyzers/AnalyzerRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Analyzers/AnalyzerRelations.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Analyzers/Test-SqlHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Analyzers/Test-SqlHealth.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Repair-Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Repair-Search.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/SqlScripts/QueueJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/SqlScripts/QueueJob.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/SqlScripts/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/SqlScripts/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/SqlScripts/SearchIndexingIndices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/SqlScripts/SearchIndexingIndices.sql -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Utils/Algorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Utils/Algorithms.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/Utils/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/Utils/Common.psm1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/Troubleshooting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/Troubleshooting/readme.txt -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/ViewDelete-IncompatibleIndices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/ViewDelete-IncompatibleIndices.ps1 -------------------------------------------------------------------------------- /Azure_DevOps_Server_2022/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Azure_DevOps_Server_2022/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /HealthCheck/Database/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/HealthCheck/Database/Common.psm1 -------------------------------------------------------------------------------- /HealthCheck/Database/RepoIUHierarchy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/HealthCheck/Database/RepoIUHierarchy.sql -------------------------------------------------------------------------------- /HealthCheck/Database/RepositoryHealthCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/HealthCheck/Database/RepositoryHealthCheck.ps1 -------------------------------------------------------------------------------- /HealthCheck/Database/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/HealthCheck/Database/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /HealthCheck/Database/SearchDBSanityCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/HealthCheck/Database/SearchDBSanityCheck.ps1 -------------------------------------------------------------------------------- /HealthCheck/Database/SearchFFData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/HealthCheck/Database/SearchFFData.sql -------------------------------------------------------------------------------- /Java Migration/Azure_DevOps_Server_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/Azure_DevOps_Server_2019.md -------------------------------------------------------------------------------- /Java Migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/README.md -------------------------------------------------------------------------------- /Java Migration/TFS_2017 RTW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2017 RTW.md -------------------------------------------------------------------------------- /Java Migration/TFS_2017Update1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2017Update1.md -------------------------------------------------------------------------------- /Java Migration/TFS_2017Update2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2017Update2.md -------------------------------------------------------------------------------- /Java Migration/TFS_2017Update3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2017Update3.md -------------------------------------------------------------------------------- /Java Migration/TFS_2018RTW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2018RTW.md -------------------------------------------------------------------------------- /Java Migration/TFS_2018Update1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2018Update1.md -------------------------------------------------------------------------------- /Java Migration/TFS_2018Update2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2018Update2.md -------------------------------------------------------------------------------- /Java Migration/TFS_2018Update3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/TFS_2018Update3.md -------------------------------------------------------------------------------- /Java Migration/flow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/flow1.png -------------------------------------------------------------------------------- /Java Migration/flow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/flow2.png -------------------------------------------------------------------------------- /Java Migration/java_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/Java Migration/java_home.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2017RTW/CheckIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/CheckIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/Re-IndexingRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/Re-IndexingRepository.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/DisabledFilesData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/DisabledFilesData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/IndexingUnitData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/IndexingUnitData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/ResourceLockData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/ResourceLockData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobHistoryData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobHistoryData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobQueueData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobQueueData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/ServiceHostData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/ServiceHostData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/AccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/AccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/AddDataRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/AddDataRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/AddExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/AddExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/CountRepositoryIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/CountRepositoryIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/IndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/IndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/QueueExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/QueueExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/QueueRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/QueueRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/RepositoriesInFileDiscoveryPhase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/RepositoriesInFileDiscoveryPhase.sql -------------------------------------------------------------------------------- /TFS_2017RTW/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017RTW/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017RTW/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017RTW/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/Re-IndexingRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/Re-IndexingRepository.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2017Update1/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/AccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/AccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/AddDataRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/AddDataRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/AddExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/AddExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/BulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/BulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/BulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/BulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/ContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/ContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/ContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/ContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/CountRepositoryIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/CountRepositoryIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/FailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/FailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/IndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/IndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/QueueExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/QueueExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/QueueRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/QueueRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2017Update1/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update1/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update1/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update1/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/Common.psm1 -------------------------------------------------------------------------------- /TFS_2017Update2/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2017Update2/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/AddCodeExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/AddCodeExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/AddWorkItemExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/AddWorkItemExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CodeIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CodeIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update2/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2017Update2/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update2/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update2/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/Common.psm1 -------------------------------------------------------------------------------- /TFS_2017Update3/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2017Update3/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/AddCodeExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/AddCodeExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/AddWorkItemExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/AddWorkItemExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CodeIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CodeIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2017Update3/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2017Update3/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2017Update3/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2017Update3/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/OptimizeElasticIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/OptimizeElasticIndex.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/DisabledFilesData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/DisabledFilesData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/IndexingUnitData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/IndexingUnitData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/ResourceLockData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/CollectionDBDiagnosticScripts/ResourceLockData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobHistoryData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobHistoryData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobQueueData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/JobQueueData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/ServiceHostData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/ConfigurationDBDiagnosticScripts/ServiceHostData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2018RTW/SetIndexingStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SetIndexingStateRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/AddCodeExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/AddCodeExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/AddWorkItemExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/AddWorkItemExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018RTW/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018RTW/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/ActionRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/ActionRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/ActionRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/ActionRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Remove-Index.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Remove-Index.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Request-ConfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Request-ConfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Request-InstallSearchExtension.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Request-InstallSearchExtension.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Request-ReconfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Request-ReconfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Request-TfvcSProcHotfix.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Request-TfvcSProcHotfix.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Request-Upgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Request-Upgrade.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Actions/Restart-Indexing.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Actions/Restart-Indexing.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/AnalyzerRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/AnalyzerRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/Test-IndexingUnitPointsToDeletedIndex.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/Test-IndexingUnitPointsToDeletedIndex.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Analyzers/Test-SqlHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Analyzers/Test-SqlHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Repair-Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Repair-Search.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/SqlScripts/QueueJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/SqlScripts/QueueJob.sql -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/SqlScripts/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/SqlScripts/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/SqlScripts/SearchIndexingIndices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/SqlScripts/SearchIndexingIndices.sql -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Utils/Algorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Utils/Algorithms.ps1 -------------------------------------------------------------------------------- /TFS_2018RTW/Troubleshooting/Utils/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/Troubleshooting/Utils/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018RTW/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018RTW/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/OptimizeElasticIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/OptimizeElasticIndex.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2018Update1/SetIndexingStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SetIndexingStateRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/AddCodeExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/AddCodeExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/AddWorkItemExtensionInstallJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/AddWorkItemExtensionInstallJobData.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update1/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018Update1/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/ActionRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/ActionRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/ActionRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/ActionRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Remove-Index.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Remove-Index.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Request-ConfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Request-ConfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Request-InstallSearchExtension.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Request-InstallSearchExtension.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Request-ReconfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Request-ReconfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Request-TfvcSProcHotfix.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Request-TfvcSProcHotfix.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Request-Upgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Request-Upgrade.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Actions/Restart-Indexing.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Actions/Restart-Indexing.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/AnalyzerRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/AnalyzerRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Analyzers/Test-SqlHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Analyzers/Test-SqlHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Repair-Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Repair-Search.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/SqlScripts/QueueJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/SqlScripts/QueueJob.sql -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/SqlScripts/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/SqlScripts/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/SqlScripts/SearchIndexingIndices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/SqlScripts/SearchIndexingIndices.sql -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Utils/Algorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Utils/Algorithms.ps1 -------------------------------------------------------------------------------- /TFS_2018Update1/Troubleshooting/Utils/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/Troubleshooting/Utils/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update1/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update1/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/GetCollectionReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/GetCollectionReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/GetElasticsearchDocCountPerRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/GetElasticsearchDocCountPerRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/GetRepositoryReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/GetRepositoryReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/OptimizeElasticIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/OptimizeElasticIndex.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2018Update2/SetIndexingStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SetIndexingStateRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeIndexingCompletedCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeIndexingCompletedCount.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CodeIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CodeIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/PauseWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/PauseWikiIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/QueueWikiExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/QueueWikiExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/ResumeWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/ResumeWikiIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/UpdateCodeRepairJobToAllowJobDefinitionOverride.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/UpdateCodeRepairJobToAllowJobDefinitionOverride.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WikiAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WikiAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WikiFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WikiFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WikiIndexingCompletedActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WikiIndexingCompletedActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WikiIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WikiIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WikiIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WikiIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update2/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018Update2/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/ActionRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/ActionRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/ActionRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/ActionRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Remove-Index.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Remove-Index.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Request-ConfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Request-ConfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Request-InstallSearchExtension.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Request-InstallSearchExtension.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Request-ReconfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Request-ReconfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Request-TfvcSProcHotfix.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Request-TfvcSProcHotfix.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Request-Upgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Request-Upgrade.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Actions/Restart-Indexing.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Actions/Restart-Indexing.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/AnalyzerRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/AnalyzerRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Analyzers/Test-SqlHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Analyzers/Test-SqlHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Repair-Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Repair-Search.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/SqlScripts/QueueJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/SqlScripts/QueueJob.sql -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/SqlScripts/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/SqlScripts/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/SqlScripts/SearchIndexingIndices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/SqlScripts/SearchIndexingIndices.sql -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Utils/Algorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Utils/Algorithms.ps1 -------------------------------------------------------------------------------- /TFS_2018Update2/Troubleshooting/Utils/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/Troubleshooting/Utils/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update2/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update2/WipeOutAndResetElasticSearch.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/ExcludedTfvcFoldersForIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/ExcludedTfvcFoldersForIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/ExtensionInstallIndexingStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/ExtensionInstallIndexingStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/FixIndexingIndexName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/FixIndexingIndexName.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/GetCollectionReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/GetCollectionReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/GetElasticsearchDocCountPerRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/GetElasticsearchDocCountPerRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/GetReIndexingStatusOfFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/GetReIndexingStatusOfFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/GetRepositoryReIndexingActivityStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/GetRepositoryReIndexingActivityStatus.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/MissingIndexFolderTriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/MissingIndexFolderTriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/OptimizeElasticIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/OptimizeElasticIndex.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/PauseIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/PauseIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Re-IndexingCodeRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Re-IndexingCodeRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/ReIndexFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/ReIndexFiles.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/RecentIndexingActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/RecentIndexingActivity.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/ResumeIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/ResumeIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SearchDiagonistics/CollectionDBDiagnosticScripts/JobYieldData.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SearchDiagonistics/CollectionDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/SearchDiagonistics/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SearchDiagonistics/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SearchDiagonistics/ConfigurationDBSearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/SearchDiagonistics/ElasticsearchDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SearchDiagonistics/ElasticsearchDiagnostics.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/SearchDiagonistics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SearchDiagonistics/README.txt -------------------------------------------------------------------------------- /TFS_2018Update3/SetIndexingStateRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SetIndexingStateRepository.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/AddCodeRe-IndexingJobData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/AddCodeRe-IndexingJobData.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/AddFilesToBeIndexed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/AddFilesToBeIndexed.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/AddRepositoryUpdateMetadataChangeEvent.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CleanUpCollectionIndexingState_IndexDelete.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeBulkIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeIndexingCompletedCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeIndexingCompletedCount.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CodeIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CodeIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CountCodeIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CountCodeIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/CountWorkItemIndexingCompleted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/CountWorkItemIndexingCompleted.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/FixIndexingIndexName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/FixIndexingIndexName.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/GetReIndexingStatusOfFiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/GetReIndexingStatusOfFiles.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/PauseCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/PauseCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/PauseWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/PauseWikiIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/PauseWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/PauseWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/QueueCodeExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/QueueCodeExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/QueueCodeRe-IndexingJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/QueueCodeRe-IndexingJob.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/QueuePeriodicMaintenanceJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/QueuePeriodicMaintenanceJob.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/QueueWikiExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/QueueWikiExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/QueueWorkItemExtensionInstallIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/ResumeCodeIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/ResumeCodeIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/ResumeWikiIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/ResumeWikiIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/ResumeWorkItemIndexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/ResumeWorkItemIndexing.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/TfvcExcludedFolders/AddFoldersInExclusionList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/TfvcExcludedFolders/AddFoldersInExclusionList.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/TfvcExcludedFolders/DeleteAllFoldersInExclusionList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/TfvcExcludedFolders/DeleteAllFoldersInExclusionList.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/TfvcExcludedFolders/FetchFoldersInExclusionList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/TfvcExcludedFolders/FetchFoldersInExclusionList.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/TfvcExcludedFolders/RemoveFoldersFromExclusionList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/TfvcExcludedFolders/RemoveFoldersFromExclusionList.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/UpdateCodeRepairJobToAllowJobDefinitionOverride.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/UpdateCodeRepairJobToAllowJobDefinitionOverride.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WikiAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WikiAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WikiFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WikiFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WikiIndexingCompletedActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WikiIndexingCompletedActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WikiIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WikiIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WikiIndexingInProgressRepositories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WikiIndexingInProgressRepositories.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemAccountFaultInResult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemAccountFaultInResult.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemBulkIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemBulkIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemBulkIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemContinuousIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemContinuousIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemContinuousIndexingInProgressActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemFailedIndexingActivity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemFailedIndexingActivity.sql -------------------------------------------------------------------------------- /TFS_2018Update3/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/SqlScripts/WorkItemIndexingInProgressRepositoryCount.sql -------------------------------------------------------------------------------- /TFS_2018Update3/TriggerCollectionIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/TriggerCollectionIndexing.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/ActionRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/ActionRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/ActionRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/ActionRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Enable-IndexingFeatureFlags.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Remove-Index.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Remove-Index.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Remove-OrphanIndexedDocuments.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Request-ConfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Request-ConfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Request-FixElasticsearchClusterState.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Request-InstallSearchExtension.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Request-InstallSearchExtension.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Request-ReconfigureSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Request-ReconfigureSearch.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Request-Upgrade.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Request-Upgrade.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Reset-ExtensionInstallationRegKeys.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Actions/Restart-Indexing.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Actions/Restart-Indexing.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/AnalyzerRelations.Tests.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/AnalyzerRelations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/AnalyzerRelations.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/Test-ElasticsearchHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/Test-FaultInJobInInfiniteRetries.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/Test-GeneralTfvcIssues.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/Test-IndicesHaveUnsupportedMappings.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Analyzers/Test-SqlHealth.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Analyzers/Test-SqlHealth.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Repair-Search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Repair-Search.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/SqlScripts/CleanUpCollectionIndexingState.sql -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/SqlScripts/GetCollectionIndexingUnitDetails.sql -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/SqlScripts/QueueJob.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/SqlScripts/QueueJob.sql -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/SqlScripts/SearchCollectionProperties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/SqlScripts/SearchCollectionProperties.sql -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/SqlScripts/SearchIndexingIndices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/SqlScripts/SearchIndexingIndices.sql -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Utils/Algorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Utils/Algorithms.ps1 -------------------------------------------------------------------------------- /TFS_2018Update3/Troubleshooting/Utils/Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/Troubleshooting/Utils/Common.psm1 -------------------------------------------------------------------------------- /TFS_2018Update3/WipeOutAndResetElasticSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Code-Search/HEAD/TFS_2018Update3/WipeOutAndResetElasticSearch.ps1 --------------------------------------------------------------------------------