elasticsearch-percolate Questions

1

Solved

We are working with percolators in ElasticSearch, and we need get a complete highlighting by phrase instead word by word: As example, we have the next search: curl -X GET "localhost:9200/my-inde...
Deneb asked 7/5, 2018 at 15:54

1

Index: { "settings": { "index.percolator.map_unmapped_fields_as_text": true, }, "mappings": { "properties": { "query": { "type": "percolator" } } } } This test percolator query works ...
Sotted asked 31/10, 2019 at 21:58

0

What we usually do is index documents and get them back by querying. What the percolator allows to do in a nutshell is index queries and percolate documents against the indexed queries to know whic...
Boyett asked 10/7, 2017 at 14:24

1

Solved

I'm indexing my query as follows: client.Index(new PercolatedQuery { Id = "std_query", Query = new QueryContainer(new MatchQuery { Field = Infer.Field<LogEntryModel>(entry => entry.Me...
Procora asked 18/11, 2016 at 18:36

1

Im trying to make suggestions to users based on several factors: •Suggestions MUST only be students from the same college •Suggestions MUST match at least one other field I thought I had it but...
Healy asked 26/8, 2015 at 8:43

1

Solved

Is there a way to improve memory performance when using an elasticsearch percolator index? I have created a separate index for my percolator. I have roughly 1 000 000 user created saved searches (...
Outrelief asked 3/2, 2015 at 7:43

1

I'm trying to query ElasticSearch for all the percolator queries that are currently stored on the system. My first thought was to do a match_all with a type filter but from my testing they don't se...
Ferdelance asked 13/11, 2014 at 0:18

2

Solved

Current Situation I am using the percolate feature of elasticsearch. It works all well - I get the matching percolate-ids back for a new document and can build basically an inverse search. Up unti...
Bertrando asked 20/6, 2014 at 21:12
1

© 2022 - 2024 — McMap. All rights reserved.