Questions tagged [azure-search-.net-sdk]
260 questions
0
votes
2 answers
How to Index the Blob Storage in Azure?
How do we index the blob storage? Are there any .NET SDK available, If yes I am not able to find. What I can see is the API calls that one has to make to create Index and Indexers.
Thanks
user1500960
0
votes
1 answer
Does Azure Search result guarantee order for * query?
I'd like to manage AzSearch documents (indexed items) by AzSearch C# SDK.
What I try to do is to list up documents by query result (mostly * result) continuously and edit values of them.
To list up query result is as below;
public async…

Youngjae
- 24,352
- 18
- 113
- 198
0
votes
1 answer
Sync mechanism to azure search - How Reliable is azure search insertion?
How reliable is the insertion mechanism to azure search?
Say, a call on average to upload to azure search. Are there any slas on this? average insertion time for one document, average failure rate for one document.
I'm trying to send data from my…

Kevin Cohen
- 1,211
- 2
- 15
- 22
0
votes
1 answer
Find relevance of search results in Azure Search
I have a Azure search index containing address information of users with fields and corresponding weights as follows:
weights= @{
HouseNumber = '40'
StreetName = '36'
…

Vivek Sharma
- 87
- 2
- 7
0
votes
2 answers
Azure Search .Net SDK throws InvalidOperationException with SerializationBinder
I'm playing around with Azure Search .NET SDK on .NET Core (specifically, cloning the sample from Github - https://github.com/Azure-Samples/search-dotnet-getting-started)
When entering any operation with index (create, delete...) it throws an…

Nhan Nguyen
- 106
- 1
- 8
0
votes
0 answers
Azure search is not working with Unicode character
I am working with azure search and I have been facing a weird issue since few days.
I am azure search nuget package 3.0.4 to query the azure search service, I have one field called filename in my index and one of the document contains this unicode…

kartik ghodasara
- 67
- 1
- 8
0
votes
1 answer
Azure Search, One or more errors occurred. Unable to connect to the remote server
It is a Cloud Service in Azure working against the Azure Search service.
It all works fine but sometimes we get the following exception,
An error occurred while sending the request. Unable to connect to the
remote server
Is there a way to trace…

Guy Assaf
- 888
- 9
- 24
0
votes
1 answer
Getting "Task was cancelled" while creating indexer in azure search for blob storage
While creating indexer for azure blob storage in azure search I am getting this "Task was canceled" error, no other detail provided.
It suddenly started to throw this error, it was working perfectly this morning.
Any idea what can cause this issue?

kartik ghodasara
- 67
- 1
- 8
0
votes
1 answer
Azure Search API/SDK Analyzer Attribute Alternative
I am setting up my Azure Search index using the API/SDK attributes. But I want to be able to change the Analyzer for a specific index based on an app setting (i.e. User sets language to French, so this index will use the French Analyzer).
Example of…

YodasMyDad
- 9,248
- 24
- 76
- 121
0
votes
1 answer
How do I get "best match" within a Azure Search service query, if all matches are filtered out?
Google offers a "did you mean..." feature that allows for alternative matches in case you misspell or confuse something in the search.
In my case, I want users to discover a "best match", even if it was excluded by the facets.
Example:
Suppose I…

makerofthings7
- 60,103
- 53
- 215
- 448
0
votes
1 answer
How to search based on field in azure search?
i am using a azure search, and i have a console app with the code as below, which is working fine.
DocumentSearchResult results;
Console.WriteLine("Search started\n");
results =…

hilda_sonica_vish
- 727
- 3
- 10
- 31
0
votes
1 answer
Prioritize search results based on certain parameter in AzureSearch.
I have an index on AzureSearch similar to this one:
"fields": [
{
"name": "key",
"type": "Edm.String",
"filterable": true,
},
{
"name": "title",
"type": "Edm.String",
"searchable": true
…

Ashutosh
- 324
- 1
- 11
0
votes
0 answers
How to set DataChangePolicy Azure search sdk 3.0.3
I have enabled change policy my db
ALTER Database EMR
SET CHANGE_TRACKING = ON
(CHANGE_RETENTION = 2 DAYS, AUTO_CLEANUP = ON)
ALTER TABLE EMR.dbo.ICDCodePCS
ENABLE CHANGE_TRACKING
WITH (TRACK_COLUMNS_UPDATED = OFF)
and on azure index…

Justin Homes
- 3,739
- 9
- 49
- 78
0
votes
1 answer
How to create Index with custom analyzers from json file in Azure Search .NET SDK?
I had read that the Azure Search .NET SDK uses NewtonSoft.Json to convert it's models to/from json in it's underlying REST API calls so I've been doing the same in my own app.
I have a simple app which creates a new Index using the .NET SDK. To do…

pantryfight
- 338
- 1
- 3
- 13
0
votes
1 answer
Can I use .NET SDK to create Azure Table datasource for Azure Search index?
I would like to configure datasource including ia. field mapping for json string containing collection.

Otigo
- 575
- 1
- 5
- 5