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 for name when input text is separated
I want to be able to search for a prductname, for example : Product C202
But If a user inputs "Product C 202", i want to be able to find that anyway.
We are using this now and it works for 99% of the time, but not when the above is given.
"search":…

Flubber
- 51
- 1
- 6
0
votes
1 answer
Custom meta data in static html is not being indexed in Azure search
I have nearly 500 static html files. all of them have different custom metadata tags like , ,, , etc.. I have uploaded the static htmls in to ablob and indexed the blob, as per azure documentation.
I was successful in searching the index fields &…

Shanky
- 1
0
votes
1 answer
No fields beyond id found when importing into Azure Search from CosmosDB
I am attempting to import data into azure search from cosmosdb and the import wizard does not detect any fields beyond id. If I import from Azure Table or the Sample data set then the import works as expected. Is there something I am overlooking,…

Tedford
- 2,842
- 2
- 35
- 45
0
votes
1 answer
Azure search : Proximity search with wild cards
Proximity with phrase search using wild cards is not maintaining the order and giving the wrong result
I am trying to search “Bal* Peti*”~5 for which the result should have both the specified words in the same order within a proximity of 5.
but the…
0
votes
1 answer
How to treat the whole sentence as one token in Azure Search
We are facing a problem of performing exact matching and ignore case-sensitivity by using Azure Search.
For example, we have a field called Description and it can be a small sentence or long sentence (For example: Welcome to Azure Search). We are…

Mike
- 205
- 2
- 10
0
votes
1 answer
How to automatically update data source and index for a view in Azure Search
How can I update the exiting data source which is create from azure SQL view.
What are steps I need to follow once when dealing with azure search for Database view.
My Data source& index should be updated once my view gets updates.

Champ
- 690
- 1
- 7
- 13
0
votes
1 answer
Using Azure Search index to index blobs in Azure Blob Storage (Images and Videos)
I want to index blob of type image and video.
From what I have read Azure Search cannot index image and video types.
What I have done is that I was thinking of using the blob's metadata_storage_path. However that is my key and it is…

Puzzle
- 23
- 1
- 4
0
votes
1 answer
Azure search lookup key
I don`t see in search results any 'key' that I can use in Lookup document.
Can somebody point me how I can fetch it in search results?

Gaploid
- 89
- 5
0
votes
1 answer
Azure search: Multiple custom attributes of the same type found
we are facing with a very strange problem with azure search which only happens on our live environment.
This is the code
var aaa= new SearchServiceClient("name", new SearchCredentials("XXX"));
Literally one line of code, directly under…

Peter
- 87
- 9
0
votes
2 answers
Azure Search using REST c#
I am trying to run the following code:
public class Item
{
[JsonProperty(PropertyName = "api-key")]
public string apikey { get; set; }
}
[[some method]]{
var url = "https://[search service…

Nok Dev
- 5
- 3
0
votes
1 answer
In Azure Search .NET SDK, how to pass the search text?
I am trying to build the lucene fulltext search with the wildcard expression to represent "Contains" /*./*, but in the Buildparameter model which is provided by the Azure Search library does not have the search properties.
I am using…

Dinesh
- 193
- 2
- 14
0
votes
1 answer
Azure Search - Query
So I'm using the C# nuget wrapper around Azure Search. My problem is I have a index of products:
public class ProductDocument
{
[System.ComponentModel.DataAnnotations.Key]
public string Key { get; set; }
[IsSearchable]
public string…

user1829226
- 125
- 1
- 8
0
votes
1 answer
Need help on Azure search with search term having asterisk(*)
We are facing an issue with Azure search API when hit with search term with asterisk(*) at the end and also with special characters.
We are hitting our production Azure search API with below json object and get no results. Notice the search term…
0
votes
1 answer
Azure Search performance while uploading content
Lately I'm facing some performance issues while querying over my Azure search service index. I'm trying to figure out what happens. I came across the following article:
Azure Search performance and optimization considerations
It says:
Uploading of…

Volodymyr Gorodytskyi
- 482
- 4
- 18
0
votes
3 answers
Move data from Data Lake Store (JSON file ) to Azure Search using Azure Data Factory
I am trying to move a json file from Azure Data Lake to Azure Search using Data Factory.
But it is showing the following error,
Copy activity encountered a user error at Source side:…

Arron
- 1,134
- 2
- 13
- 32