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

How to get a link to fetch next records from Azure Search?

currently I am creating an application where I need to call API of azure search. Here is the API : https://serviceName.search.windows.net/indexes/global-index/docs/search?api-version=2016-09-01 Here is my Java code : @Override public JSONObject…
Deva
  • 1,039
  • 1
  • 14
  • 40
0
votes
1 answer

Azure Search Index C# SDK

I'm new to Azure Search SDK, and currently within c# I can create a Blob Storage, Create and Index, DataSource and Indexer But I'm looking for some advice on how to best create an index that allows me to search on key details from an existing…
0
votes
2 answers

how azure search treat string like "Good Phase" To search on cloud db

I need technical help regarding my Azure document search below my sample code `var searchText = "Good Phase" var searchData = indexClient.Documents.Search(searchText,searchParameters)` I need to know this document search which is searchText = "Good…
Amit Singh Rawat
  • 559
  • 1
  • 9
  • 27
0
votes
1 answer

Azure search no longer indexing documents in blob storage

Up until a couple of weeks ago, I was successfully setting up a data source, index and indexer for documents stored within Azure blob storage. The documents were being indexed as I expected. Now, however, no matter what I do, the same documents are…
0
votes
2 answers

How can I use change detection when indexing a SQL view with an Azure Search indexer?

Have Azure search targeting a table now but we need to change it to target a view instead. After some reading realized cannot use the change tracking to do incremental indexer build, does it mean each time the indexer need to be fully rebuild then?…
TOMMY WANG
  • 1,382
  • 3
  • 16
  • 39
0
votes
1 answer

Trouble in decoding the Path of the Blob file in Azure Search

I have set a Azure search for blob storage and since the path of the file is a key property it is encoded to Base 64 format. While searching the Index, I need to decode the path and display it in the front end. But when I try to do that in few of…
user1500960
0
votes
1 answer

Azure search search.in returning error

I am trying to use azure search with search.in but it returns with following error { "error": { "code": "", "message": "Invalid expression: Unsupported function call: search.in. This function is not supported in this API…
Razor
  • 23
  • 3
0
votes
1 answer

SQL Indexes and Multicolumn Database search

I have to implement search that finds substring in the name of the user. User has FirstName and LastName in 2 columns. It is good enough to do WHERE FirstName LIKE '%searchText%' OR LastName LIKE '%searchText%' What is my problem that I want to…
0
votes
2 answers

How to search for # in Azure Search

Hi I have a string field which has an nGram analyzer. And our query goes like this. $count=true&queryType=full&searchFields=name&searchMode=any&$skip=0&$top=50&search=/(.*)Site#12(.*)/ The test we are searching for has Site#123 The above query…
TBA
  • 1,077
  • 5
  • 41
  • 80
0
votes
1 answer

Exclude File Name with extension in Azure Search .net sdk

I have written a .net sdk to create index and Indexer. How i Exclude some files from indexing based on the extension. I am not able to find sample/example to do the same Indexer indexer = new Indexer() { Name = indexerName, …
user1500960
0
votes
1 answer

Azure Search on blobs retrieve the blob itself after search

How would I retrieve the actual blob (pdf) itself via azure search? I know there are some Lookup possibilities but these only give me text representation of the content. I want a pdf download/stream of the underlaying document. How would I go over…
Viking
  • 465
  • 3
  • 15
0
votes
1 answer

Personalized search in Azure Search

I am looking at Azure Search for a message service. Very simplified, we have an Azure App Service (running .NET) and two tables on SQL Azure: Message: Id, Subject, Body, [...] MessageRecipient: Id, MessageId, UserId, [...] One message has 1:N…
Aio
  • 133
  • 1
  • 8
0
votes
2 answers

How to Index the Blob Storage in Azure?

How do we index the blob storage? Are there any .NET SDK available, If yes I am not able to find. What I can see is the API calls that one has to make to create Index and Indexers. Thanks
0
votes
0 answers

Azure search get starts with data from query

I am using azure search in my project.I just want to show only starts with query data in my autocomplete field.Example ; when user writes 'advert' on the autocomplete field it also shows 'Addresable Advertising' as suggestion.Here is my code below :…
Kenjutsu
  • 1
  • 1
0
votes
1 answer

Azure Search - giving our clients what they need with regard to scores/ranks - percentage match

We've been using Azure Search as our production search service for a couple months now, and our clients are starting to voice concerns about flexibility in ranking and scoring - the TF-IDF ratios are meaningless to them (which I can understand) and…
Stpete111
  • 3,109
  • 4
  • 34
  • 74