.NET SDK (3.0.4 및 4.0.0 미리보기 모두)에 존재하지 않는 색인에 대한 색인이 있는지 확인하려고하면 ExistsAsync
(Exists
및 ExistsWithHttpMessagesAsync
도 마찬가지 임) 다음 예외가 throw됩니다.Azure Search for .NET에 인덱스가 있는지 확인하는 경우 NullReferenceException이 발생합니다.
System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.Azure.Search.IndexesOperations.<GetWithHttpMessagesAsync>d__12.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.Azure.Search.ExistsHelper.<ExistsFromGetResponse>d__0`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.Azure.Search.IndexesOperationsExtensions.<ExistsAsync>d__3.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at InphizCore.MiddleLayer.Services.AzureSearch.Services.AzureSearchWriter`1.<AssertIndexExists>d__8.MoveNext() in C:\xxx\AzureSearchWriter.cs:line 109
우편함에서 http rest를 사용하면 색인이 없다는 메시지가 반환됩니다.
public async Task AssertIndexExists()
{
try
{
if (await searchServiceClient.Indexes.ExistsAsync(options.Value.IndexName) == false)
{
searchServiceClient.Indexes.Create(new Index(options.Value.IndexName, FieldBuilder.BuildForType<SearchableItemModel>(), corsOptions: new CorsOptions(new List<string> { "*" })));
}
}
catch (Exception e)
{
logger.LogError($"Azure Search Index '{options.Value.IndexName}' could not be created. ({e.Message})");
throw e;
}
}
의미있는 방식으로 문제를 해결하려면 어떻게해야합니까?
UPDATE :
이것은 어떻게 단위 테스트에서 실행할 때 클라이언트가 같습니다
이 그것을 AspNetCore MVC에서 모습입니다 :
검색 클라이언트가 FirstMessageHandler
,의 인스턴스를 만들지 못하는 것 같습니다및 HttpClientHandler
. 왜 던지지 않니?
는이에 대한 GitHub의에 문제를 여는시겠습니까를? repo는 여기에 있습니다 : https://github.com/azure/azure-sdk-for-net/issues 제목의 처음에 [Azure Search SDK]를 입력하십시오. 감사! –
예! 생성 됨 https://github.com/Azure/azure-sdk-for-net/issues/3991 –
안녕하세요, Jonas, NullReferenceException의 원인에 대한 가설이 있습니다. 자세한 내용은 GitHub 문제를 참조하십시오. –