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
4
votes
1 answer

Azure Search, filter by score

I would like to omit results with lower relevance. Can do the filtering by myself, but I don't find any documentation on the scoring range. for example, searching: "Sun protection", I would like to recive all results with "Sun protection" but…
Guy Assaf
  • 888
  • 9
  • 24
4
votes
2 answers

Azure Search SDK Regex?

I see that Azure Search supports Lucene Regex from here: https://msdn.microsoft.com/en-us/library/azure/mt589323.aspx#bkmk_regex but no where does it describe how to do this with the SDK. Before I abandon all hope, I was wondering if anyone has…
Brandon
  • 82
  • 4
4
votes
1 answer

understand azure search charFilters mapping

I create my index with following custom analyzer "analyzers":[ { "name":"shinglewhite_analyzer", "@odata.type":"#Microsoft.Azure.Search.CustomAnalyzer", "charFilters":[ "map_dash" ], "tokenizer":"whitespace", …
Tony
  • 135
  • 9
4
votes
2 answers

Azure Search Indexer error: "Document key cannot be missing or empty."

I have an index in azure search which is synced to an SQL server table through Change Tracking. I randomly start getting this error after I make some changes to the table (but not always, and I can't seem to replicate it consistently…
Francesco
  • 147
  • 1
  • 10
4
votes
1 answer

Azure Search Indexer Clears Documents

So I am moving from a Lucene based engine over to Azure Search.... All is going well except for when my Indexer runs, it removes all the documents from the Index and doesnt repopulate it with anything. If i delete and recreate the Index it shows…
Inept Adept
  • 414
  • 4
  • 11
4
votes
1 answer

Azure Search suggestions setup

I've created an instance of Azure Search and I'm trying to make use of the suggesters functionality but struggling to find any useful information on how to get started (poor and out of date documentation from Microsoft). I would like to use a…
Mike James
  • 461
  • 2
  • 4
  • 20
4
votes
1 answer

How do you include Azure Search's @search.score as part of your custom $orderby clause

According to this page, the default sort of Azure Search results is by Azure's own score (descending). However, you can supply an $orderby clause, which is defined as: A list of comma-separated expressions to sort the results by. Each expression…
Nate Jackson
  • 549
  • 4
  • 15
4
votes
1 answer

Misspelling & synonym support for Azure Search?

I've seen threads discussing both of these topics: Does Azure Search handle synonyms Fuzzy Search in the Search API I see that Liam Cavanagh from the Azure Search team seems to be the guy who's answered queries on these threads. Liam, are you able…
4
votes
4 answers

Distinct values in Azure Search Suggestions?

I am offloading my search feature on a relational database to Azure Search. My Products tables contains columns like serialNumber, PartNumber etc.. (there can be multiple serialNumbers with the same partNumber). I want to create a suggestor that can…
Avinash Gadiraju
  • 723
  • 1
  • 7
  • 16
4
votes
1 answer

Azure search doesn't distinguish between singular and plural

I'm using Azure search and in my indexed database table I have a row with the text 'Government Grants'. When i search 'Grant' it returns no results, If I search 'Grants' it returns results I have the same issue with 'Sales' and 'Sale' How can I…
4
votes
3 answers

Fuzzy Search in the Search API

The Azure search api offers a fuzzy paramter for suggestions. like this: https://blssuggestions.search.windows.net/indexes/cities/docs/suggest?api-version=2015-02-28&suggesterName=default&fuzzy=true&search=berlen Would return "Berlin" as a result…
Boas Enkler
  • 12,264
  • 16
  • 69
  • 143
4
votes
4 answers

Timeout during indexing view in Azure Search despite settings

I'm using Azure Search Indexer to index a view from Azure SQL DB. I've created Data Source (view) and set such settings in connection string (...)Trusted_Connection=False;Encrypt=True;Connection Timeout=1200;" }, The indexer still returns timeouts…
3
votes
1 answer

Azure Search N gram Tokenizer Configuration for infix searching

I am currently working with azure search and in order to achieve infix search like searching for 'win' in 'redwine' should find redwine in search results. In azure my configuration for N gram Tokenizer is below "analyzers": [ { …
Rana
  • 135
  • 2
  • 11
3
votes
2 answers

Azure Search with Postgres

I am new to Azure Cognitive Search and was able to get Azure Search work with SQL Server but I want to use Azure Search for PostgreSQL. I could not find it in the documents that Azure Search supports PostgreSQL. Can someone confirm that for me? I…
3
votes
2 answers

How to load data on azure search without create indexes on all the fields

I need to load some data(array of json object) into azure search, eachjson object contains 100 node, I dont want to create indexes on all the fields, I have created indexes on some of them but everytime I load data into azure search I'm getting this…