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

Azure Search Indexer Optimization, Notification

I am looking for two things from Azure Search. I want to be notified by the Azure Search Service when the Indexer completes the process. Is there a way I can optimize the performance of Indexer such that if it's completing in one hour now, can be…
0
votes
1 answer

How to filter a Collection filter by two strings in Azure Search?

Imagine I have a Collection of ids like: [1,11,21] [1,5,6] [11,35,56] I need to filter the Collection in order only to get the field which contains both 1 and 11. By doing a search.in I get 1 OR 11. What would be the correct way of performing a…
Carlos Alves Jorge
  • 1,919
  • 1
  • 13
  • 29
0
votes
1 answer

Run Azure Search (Indexers.RunAsync()) and then Documents.SearchAsync()

I have an application where the client side update a blob. After the blob is updated, I run the Indexer so that it updates the index. After I do a search on the updated index to retrieve the updated event to show it in the frontend. The problem is…
Puzzle
  • 23
  • 1
  • 4
0
votes
1 answer

Azure Search - hard-code a string value into a field in an index

This one is for the MS Azure Search team, unless someone else has run into this and found a resolution for it. I'm creating an index which is importing data from a SQL Server Database. I would like to add a field to the index whose value is just…
Stpete111
  • 3,109
  • 4
  • 34
  • 74
0
votes
1 answer

Azure Search for Person macthing with multiple fields and scoring profile

I am trying to see if i can use Azure search to do a Person match. i try to match person based on different attributes score them based on match and higher than certain threshold is considered that this person is a match against my azure search…
Justin Homes
  • 3,739
  • 9
  • 49
  • 78
0
votes
1 answer

Azure Search filter on collections

Our index looks like (this is from the query explorer) : "value": [ { "@search.score": 1.5390168, "key": "xxx", "content": null, "fileSize": null, "filenames": [ …
Steve Drake
  • 1,968
  • 2
  • 19
  • 41
0
votes
2 answers

Indexing CSV blobs does not work in Azure Search

I have a number of TSV files as Azure blobs that have following as the first four tab-separated columns: metadata_path, document_url, access_date, content_type I want to index them as described here:…
0
votes
1 answer

Can I pass a parameter to a Magnitude scoring function in Azure Search?

I can see from the documentation that I can use referencePointParameter and tagsParameter to pass parameters into the disance and tags scoring functions respectively. I'd like to do the same with the magnitude scoring function, but can't see from…
Chris Payne
  • 1,700
  • 1
  • 16
  • 33
0
votes
1 answer

Is it possible to change the scoring profile based on the number of tags?

I have a document with a collection of strings representing the number of times that document appears in a region (tags). For example: [{ "id": "A" // other properties "regions": ["3", "3", "3", "2"] // Appears 3 times in region "3" and once…
Jonas Stawski
  • 6,682
  • 6
  • 61
  • 106
0
votes
1 answer

Azure Search support to index on Image /Binary data types in SQL Server, is it possible? or there any alternative possibilities?

We came with a requirement to Search SQL table which contain documents data in Image/binary column type. we are trying to do this with Elastic-search and Azure Search. we can able to proceed with Elastic-search but hit roadblock on Azure Search as…
0
votes
1 answer

Azure Search, mapping, merge collections

I have the following data : From SELECT c.addresses[0] address, [ c.name ] filenames FROM c [ { "address": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", "filenames": [ "File 01.docx" ] }, { …
Steve Drake
  • 1,968
  • 2
  • 19
  • 41
0
votes
0 answers

Azure Search service long running index

I have created a Blob storage in which 1000s of .pdf files stored. I have verified for 600 documents, It was working fine. so I started for all documents stored in the blobs. I saw after 16 hours it was still running but there is no process document…
0
votes
1 answer

Azure Search, skip large blobs but still index metadata

We have a set of blobs, all sorts of content. We need to index the metadata and the content, but we are happy to just skip the content for unsupported file types and very large files. For example we have File One.docx - supported type - Indexes…
Steve Drake
  • 1,968
  • 2
  • 19
  • 41
0
votes
0 answers

Certain Edm.Int32 and Edm.DateTimeOffset Column are showing null values in Azure Search

I uploaded some records to azure search, but when tried to search the data in the portal, it is showing null values. "Date":"2000-10-29T00:00:33.000Z" (Edm.DateTimeOffset) ,"Year":2000 (Edm.Int32) ,"Month":10 (Edm.Int32) In the Azure Search…
Arron
  • 1,134
  • 2
  • 13
  • 32
0
votes
1 answer

Creating Azure Search Index with DynamicObjects as documents

I am attempting to upload a series of documents, belonging to a class which derives from DynamicObject. I require this due to the fact that the index fields might change when the index is recreated. Everything works fine with the index creation,…