Questions tagged [azure-cognitive-search]

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.

1624 questions
5
votes
1 answer

How to practially use a keywordanalyzer in azure-search?

a little relating and continuing to this question: Azure Search Analyzer I want to use a keywordanalyzer for word collections. We have documents (products) with different fields like product_name, brand, categorie and so on. To implement a keyword…
ldenkewi
  • 53
  • 1
  • 3
5
votes
1 answer

Is it possible to export an Azure Search index schema?

Is it possible to export an index schema ? I'm looking for best practices on how to create the same index schema into different staging areas (Dev, Test, Prod). I can't find any export in the portal, so I guess the recommended approach is to always…
Guillaume Morin
  • 3,910
  • 6
  • 25
  • 40
5
votes
1 answer

Azure search scale down/suspend

I'm having problems with the cost of Azure Search standard level. Is it possible to change the level of Azure search from standard to Basic? Is it possible to suspend Azure search standard temporarily? I dont see the controls for this in the portal.…
JurgenW
  • 307
  • 2
  • 4
  • 18
5
votes
2 answers

Azure Search .net SDK- How to use "FindFailedActionsToRetry"?

Using the Azure Search .net SDK, when you try to index documents you might get an exception IndexBatchException. From the documentation here: try { var batch = IndexBatch.Upload(documents); …
richard
  • 12,263
  • 23
  • 95
  • 151
5
votes
2 answers

Azure Search - order by expression

We would like to know, whether Azure Search makes possible undermentioned scenario. Let us have an Azure Search index with three columns: 1. Id [Edm.String] 2. Tags [Collection(Edm.String)] 3. MaxScore [Edm.Int32] The index contains the…
Keeble
  • 66
  • 1
  • 6
5
votes
4 answers

CORS issues on Azure Search

We've changed the CORS options on our existing azure-search index to "allow all origins" but the querying the api from the browser still throws the "No 'Access-Control-Allow-Origin' header is present..." exception. Are there some specific…
mpetar92
  • 75
  • 1
  • 7
5
votes
2 answers

How does Auto-indexing/sync of Azure SQL DB with Azure Search Works?

As per the below articles, http://feedback.azure.com/forums/263029-azure-search/suggestions/6540846-auto-indexing-of-azure-sql-db and…
Ilyas F
  • 503
  • 4
  • 12
5
votes
1 answer

Azure Search scoring

I have sets of 3 identical (in Text) items in Azure Search varying on Price and Points. Cheaper products with higher points are boosted higher. (Price is boosted more then Points, and is boosted inversely). However, I keep seeing search results…
hocho
  • 1,753
  • 1
  • 11
  • 14
5
votes
2 answers

Azure blob document - Full text search

I am using Azure for hosting my project and chosen blob to store all by files (as they are in megabyte and count is huge). I have a requirement to search within all my files in blob (kind of like full text search). I tried integrating it with Azure…
5
votes
2 answers

How Can i use Azure Search Like Syntax

In my Azure Search , i have two document , one column is call "Description" And two record like this [ {"Description": "XARATM | KONE"}, {"Description": "ATM | RCOR"} ] my problem is , when i use Azure Search to search my record like:…
King Jk
  • 1,069
  • 14
  • 22
5
votes
4 answers

How do I backup my azure search index?

I am using Azure search and would like to make sure I can recover from a self inflicted disaster before I push more docs in there. How do I backup my index? Is creating Azure Search replicas equivalent to making a backup? How would one restore…
Rob Foree
  • 375
  • 3
  • 15
4
votes
1 answer

Azure Search v11: Indexing nullable Collection of Complex Type

I'm updating the SDK for the Azure Cognitive Search service, from v10 to v11. I have followed all the steps in the guide in order to upgrade, however I have noticed a strange behavior about the indexing (merge or upload) operation: the…
MFF
  • 137
  • 8
4
votes
4 answers

take a list in python3 and make into a string but escape double quotes in order to pass as search parameter for azure search

I have an application in python that accepts a list of text (strings) that we want to use as search terms in Azure Cognitive Search. The search parameter needs to be a string, so if I have a list of words I can do something…
Imu
  • 545
  • 5
  • 15
4
votes
1 answer

Azure Search searching by not full word with special characters is not working

I want to search string which contains special characters using Azure Search .NET SDK. I've tried escaping every special character, tried using full query syntax and tried wildcards, nothing worked as expected. Here is the method: public virtual…
4
votes
2 answers

Do high cardinality fields affect performance for searches?

The Azure Search docs state that: A high cardinality field consists of a facetable or filterable field that has a significant number of unique values, and as a result, consumes significant resources when computing results But it's not clear on…
Richard Szalay
  • 83,269
  • 19
  • 178
  • 237