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
2 answers

Apply boosting factor for date values in the past and in the future

All my documents have date field and these dates can be in the past and in the future. What I need is to boost documents that correspond to dates in the range (now - 2 weeks, now + 2 weeks). But the documentation says: In the current service…
Yuriy Gavrishov
  • 4,341
  • 2
  • 17
  • 29
0
votes
1 answer

Boosting docs based on date range

I am to be able to filter documents based on a date, but what I really need is to boost certain date ranges higher. The following query returns results. { "queryType":"full", "search": "(priority:High^50 || Normal^10) AND (type:one^1 ||…
nmishr
  • 287
  • 3
  • 6
0
votes
1 answer

Azure Search - Searching in Specific Folder

I just wanna search into a specific folder in my Azure Blob Container. I'm using Azure Search Service. For example, I have the following structure: I desire to search all files regards to Client 01 who are into the "Cli01" folder. Thanks
Daniel Melo
  • 548
  • 5
  • 12
0
votes
1 answer

Use different search terms for different columns

We are using Azure Search to find courses from a list. We search on three fields. We need fuzzy searches on the Coursename and Keywords, but want only to include exact matches for the course code (which has sequential numeric codes like…
0
votes
2 answers

Pushing documents(blobs) for indexing - Azure Search

I've been working in Azure Search + Azure Blob Storage for while, and I'm getting trouble indexing the incremental changes for new files uploaded. How can I refresh the index after upload a new file into my blob container? Following my steps after…
0
votes
1 answer

Azure Search Scoring Profile Magnitude by Downloads

I am new to Azure Search so I just want to run this by before I try to implement it. We have a search setup on items and we want to score/rank the results based on its initial score and how many times the item has been used/downloaded. We want the…
77Vetter
  • 209
  • 3
  • 16
0
votes
2 answers

Azure Network Security Group inbound filter for Azure Search

In my Azure VNET I have an AppService that's using Azure Search. I'm trying to use NSG Inbound Rules to restrict access to the Azure Service using IPs. Unfortunately, in the NSG configuration blade, I can specify the destination only using the IP or…
webber
  • 1,834
  • 5
  • 24
  • 56
0
votes
1 answer

Possibly broken azure-search tokenizer - PathHierarchyTokenizerV2

Lately, I wanted to take advantage of a field on my search index that uses a custom analyzer with the PathHierarchyTokenizerV2 tokenizer. this same index used to work, and the custom analyzer did break the text into the correct path segments when…
Yoad Snapir
  • 528
  • 2
  • 10
0
votes
1 answer

Azure Search - left side match

What I need to achive is left side match. I'm using Query Type full. Please find my model and analyzer below: public class Product { [System.ComponentModel.DataAnnotations.Key] public string Id { get; set; } [IsSearchable,…
mbiernatek
  • 37
  • 8
0
votes
1 answer

Azure search not returning correct result with . (dot) in search query

We have stored documents into azure search. One of the document is having below field value. "Title": "statistics_query.compute_shader_invocations.secondary_inherited fails" We have defined custom analyzer on it as per the recommendation from MS…
user1233802
  • 573
  • 1
  • 5
  • 21
0
votes
1 answer

Azure Search Order

We have a search screen where the user can enter a phrase and then search Azure for rows that contain the phrase or any words of the phrase. They want to see the results ordered by the rows that contain the entire phrase first followed by rows that…
77Vetter
  • 209
  • 3
  • 16
0
votes
1 answer

Azure Search - Search by multi word string and then individual words

I am very new to Azure Search services and I have a requirement that the user can send in a search string "my search string". The Search should bring back all corresponding entries that contain the searchString and then it should also break the…
77Vetter
  • 209
  • 3
  • 16
0
votes
1 answer

azuresearch search.ismatch is ignoring "1" at the end

I have following records - { "RoleDetails": "0AC05D80-B1E2-4E13-B1E7-602F6C272117  pqr  1", "GroupDetails": "0AC05D80-B1E2-4E13-B1E7-602F6C272117  Abc Xyz  1", }, { "RoleDetails": "0AC05D80-B1E2-4E13-B1E7-602F6C272117  pqr  1", …
Anil Purswani
  • 1,857
  • 6
  • 35
  • 63
0
votes
1 answer

How to search only inside one string of a Collection in Azure Search?

I've a collection fields like: ["city of god"] ["god of war", "city of war"] I want to perform a search on the field with 'city' AND 'god' and I want only 'city of god' to be returned. Yet, the second field is also return regardless of the terms…
Carlos Alves Jorge
  • 1,919
  • 1
  • 13
  • 29
0
votes
1 answer

AzureSearch filter not working expected

I migrated my SQL data into AzureSearch document to try new search experience. I'm not able to filter data using .net sdk (3.0.4) public IActionResult Search(string state, string category, string search, short pageNumber = 1, short pageSize = 10) …
Pankaj Rawat
  • 4,037
  • 6
  • 41
  • 73