Azure Cognitive Search is a fully managed Azure Cloud service that offers rich full-text indexing and search. Allows you to add search facility to both existing and new application either Line of Business application, public facing websites or mobile applications using REST API or .NET SDK.
Questions tagged [azure-cognitive-search]
1624 questions
0
votes
1 answer
How to mach all documents in Azure Search
I want to get all documents from azure search and filter out with NOT operator. For example, I want to get all documents without term wifi.
NOT operator can't be used on its own, from lucene documentation:
The NOT operator cannot be used with just…

Vasyl Senko
- 1,779
- 20
- 33
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
Connect Azure Search Service to SQL Server on Azure VM
I'm in the Azure Portal UI attempting to connect our new Azure Search service to our SQL Server on our Azure VM. The UI very simply asks me for a connection string, a username and password. I started by using the exact connection string that is…

Stpete111
- 3,109
- 4
- 34
- 74
0
votes
1 answer
Handling large files with Azure search blob extractor
Receiving errors from the Blob extractor that files are too large for the current tier, which is basic. I will be upgrading to a higher tier, but I notice that the max size is currently 256MB.
When I have PPTX files that are mostly video and audio,…

Paul Allen
- 349
- 1
- 9
0
votes
1 answer
Does Azure search return correct counts in facets when searching over millions of items
The reason I ask - we're using Algolia that is not able to return correct numbers for facets when we have 1-3mln+ of data items (~50GB) we search over. And it was confirmed by Algolia techs -> they're optimizing on retrieval timings, so prefer to…

zmische
- 809
- 3
- 13
- 23
0
votes
1 answer
Azure Search: Is there support for conjugation in the French or any language analyzer?
I am facing a business requirement for the French language that conjugation must be supported. For example, if the user searches for "Être" then it should also find variations of the form of the verb (voice, mood, tense, etc).
Based on what I have…

Andres Becerra
- 81
- 7
0
votes
1 answer
Azure Search Service top Value more than 1000
Iam getting documents via Search Documents (Azure Search Service REST API).
The problem is the the maximum value of top is 1000 shown here.
Now Iam testing the performance of getting 70000 documents which means I have to send a request 70 times.
I…

Moritz Schmidt
- 2,635
- 3
- 27
- 51
0
votes
2 answers
Azure-search: How to get documents which exactly contain search term
This question/answer dealt with a pretty similar topic, but I couldn't find the solution I was searching for.
How to practially use a keywordanalyzer in azure-search?
Starting situation:
I created a resource with multiple indexes. One of these…

maxhoefler
- 136
- 2
- 10
0
votes
1 answer
Azure search - Using Microsoft English Analyzer increases size of Index
Earlier my index was using lucene analyzer. I changed it to Microsoft. Now the size of index has largely increased. Why does the size increase so much . ? P.S. the attachment.

Saurabh
- 241
- 2
- 12
0
votes
1 answer
Autocomplete testing on Azure Search explorer
I am trying to build and test the auto complete feature on a master item lookup tables using Azure Search (for a ASP MVC application). The search index was done with the suggesterName SG set to ItemDisplayName
I was looking to test it first on Azure…

user7747166
- 3
- 3
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
Azure need to find Top searched phrase
I have a web application with a search tool in it, so I need to find most used searched phrase in azure(my allocation is in MVC), any idea how to do in azure like any tool which does this job.
e.g Users who have viewed or searched contact Names like…

harshu288
- 141
- 1
- 12
0
votes
1 answer
Azure Search: How do I ensure all combinations of gender and plurality are included in my results?
I am facing a business requirement for a French website that requires matching masculine/feminine/singular and plural versions of a word. The easiest way to describe this is to show the requirement itself in this question.
Req 1 - search for chien…

Andres Becerra
- 81
- 7
0
votes
2 answers
Azure Search Options (Have I understood Azure Search prcicng)
We have 100 million rows in table storage, each row has about 4 items of metadata, we would like to search by the metadata, looking at the pricing it going to be very expensive.
The Basic option supports 1M documents, is that the same as 1 million…

Steve Drake
- 1,968
- 2
- 19
- 41
0
votes
0 answers
Can't add Microsoft.Azure.Search 3.0.2 nuget package in VS2017
I load up a Visual Studio 2017 and create an empty ASP.NET Core console application. I go to manage nuget packages and "Install-Package Microsoft.Azure.Search" and get the following error:
Install-Package : One or more packages are incompatible…

schnitty
- 416
- 4
- 12