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
Search Facets with values using Azure search
I am building a search service in angular2 to call Azure search.
I did a post with this data:
{
count:true,
facets:["type", "status"],
queryType:"full",
search:"company && type:value1 || status:value2",
skip:0,
top:10
}
I want to bring all the…

Samy Sammour
- 2,298
- 2
- 31
- 66
0
votes
2 answers
How do I search within a word within a searchable field? "Contains" search
I have a search index with 4 custom analyzers. Two of them are for language specific searching, and the other 2 are for "exact" searching (no need for lemmatization). For simplicity, I am including only the info for the language specific custom…

Andres Becerra
- 81
- 7
0
votes
1 answer
Azure Search - database table is 2 million records but Azure Search index is 9 million
Our SQL Server database table consists of approximately 2 million records. The Azure Search index we have that imports from it is now up to 9.5 million documents. Our indexer is set to run every 24 hours. We have Change Tracking turned ON in our…

Stpete111
- 3,109
- 4
- 34
- 74
0
votes
2 answers
redux with angular2 does not return results
I am using redux with angular2 and trying to call windows azure search.
I wrote this code:
types.ts
export interface IAppState {
languageState?: LanguageState;
searchState?: SearchState;
}
export type SearchState = si.Immutable<{
…

Samy Sammour
- 2,298
- 2
- 31
- 66
0
votes
1 answer
Angular4 with Azure Search search string not working
I am developing an Angular4 Application with Azure Search. I need to make a call to get products according to a search string.
the HTML is:
0
votes
1 answer
Microsoft.Azure.Search.IndexBatchException:1 of 1000 indexing actions in the batch failed
I am getting following error while pushing the data into Azure Search Index from OnPremSql database through ADF.
Copy activity encountered a user error at Sink side:…

Jai
- 416
- 6
- 20
0
votes
1 answer
How to match following queries in Azure Search
I have the default Analyzer set for my index and the fields in Azure Search.
I have following values for a field - name.
Demo 001
Demo Site 001
001 Demo Site
I am trying to get matching values for following . My sample queries are…

TBA
- 1,077
- 5
- 41
- 80
0
votes
1 answer
Azure Search - add to API the ability to translate non-Latin characters
We have just finished building our REST API for our Azure Search indexes. We've just been given the following new requirement:
"When the client makes a Call with a query consisting of a string of, for example, Chinese characters (or other…

Stpete111
- 3,109
- 4
- 34
- 74
0
votes
1 answer
How can I calculate sub-aggregates with azure search?
In azure search I have documents with the following format which comes from IoT realm:
device identifier: string
event_level: int
I'd like to facet(group) the count by device identifier and event level together. I can do basic facet at each…

user1116536
- 373
- 1
- 5
- 11
0
votes
1 answer
Prefix queries (*) in Azure Search don't return expected results
While searching on azure using Rest API provided by Microsoft Search API
Not behaving correctly when search string contains '@'.
Example: I've 3 rows in Azure Document
CES
CES@123
CES@1234
When My search string was CES* then all 3 were the…

Shekhar Kumar
- 71
- 9
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
0 answers
Azure search index not updating field
I have two indexes, index1 is the old and currently used index and the new index2 contains additionally a new string array field myArray1.
Azure Search is using documentdb collection as a source and myArray1 is filled out properly there. However…

doorman
- 15,707
- 22
- 80
- 145
0
votes
1 answer
How can I ensure language analysis is applied to a token generated by WordDelimiterTokenFilter
This issue is a new situation I am facing after applying a fix for FEMMES.COM not properly tokenizing ( How do I get french text FEMMES.COM to index as language variants of FEMMES )
Failing Test Case: #FEMMES2017 should tokenize to Femmes, Femme,…

Andres Becerra
- 81
- 7
0
votes
2 answers
How do I get french text FEMMES.COM to index as language variants of FEMMES
I need FEMMES.COM to get tokenized as singular + plural forms of the base word FEMME.
Custom Analyzer Config
"analyzers": [ { "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer", "name":…

Andres Becerra
- 81
- 7
0
votes
1 answer
Azure Search - Match value from comma-separated values string
How do you structure a Azure POST REST call to match a value on a comma-separated list string?
For Example:
I want to search for "GWLAS" or "SAMGV" within the Azure field "ProductCategory".
The "ProductCategory" field in the documents will have a…

jbrekke
- 88
- 6