Questions tagged [elasticsearch-percolate]
56 questions
0
votes
1 answer
Unify all Highlighting results in a single consolidated result ElasticSearch
We are working with Elasticsearch percolator.
We are trying to show all of the highlighted items in a single text and not getting many different results. But as far as we know, this is not possible with the current ElasticSearch version. Although we…

SalahAdDin
- 2,023
- 25
- 51
0
votes
1 answer
Elasticsearch 5.X Percolate: How to autogenerate copy_to fields?
In ES 2.3.3, many queries in the system I'm working on use the _all field. Sometimes these are registered to a percolate index, and when running percolator on the doc, _all is generated automatically.
In converting to ES 5.X _all is being…

Jon Dewitt
- 1
- 2
0
votes
1 answer
How to use NEST v6 to percolate
How do I use the percolator capabilities of ES to match an incoming document with my query?
my query is "biggest winner"
I'm using ES v6 and the same version of NEST lib.
this is my class
public class PercolatedQuery
{
public string Subject {…

Fereshteh Rabet
- 191
- 2
- 18
0
votes
0 answers
Elasticsearch query error in percolate query in ES
I am use the percolate query in ES. But I don't merge bool query and sort query:
My purpose:
Sort prices of added product today.
My existing index
PUT /product-alert
{
"mappings": {
"doctype": {
…

ercvs
- 337
- 1
- 5
- 13
0
votes
1 answer
Highlighting in Percolate function written in NEST Elasticsearch
I have a percolate function written in NEST (c#). I want to enable the highlighting functionality but did not work. The percolator works fine but the highlight did not return anything, and nothing found in NEST documentation. Any help is very…

Abdulaziz
- 3
- 2
0
votes
1 answer
Search options in Elasticsearch percolate function
My question is how can I use search options like multimatch, slop and fuzziness in a percolate function using NEST (c#)?
I want to implement a percolate function that returns exactly the opposite result of the following search function:
public…

Abdulaziz
- 3
- 2
0
votes
1 answer
Elasticsearch-py Bulk Percolate Functionality
Trying to get the bulk percolate functionality to work for Elasticsearch-py (i.e. mpercolate), but haven't been able to find an example online. I'm able to use the percolate function, so I can get this to work:
doc = {'doc' : {'field1' : 'this is a…

John
- 1,167
- 1
- 16
- 33
0
votes
1 answer
Search for queries into .percolator type
I have an Elasticsearch v2.4.2 index, I'm filling its .percolator type with a bunch of queries and some special values. query-docs looks like this:
"query" : {
"query_string" : {
"fields" : [ "title", "meta" ],
"query" :…

Victor Duran
- 70
- 7
0
votes
0 answers
Elascticsearch error while Searching for percolation
I use elasticsearch for percolation. And i find some error in log file:
Elascticsearch error IllegalArgumentException[Less than 2 subSpans.size():1]
[2016-08-04 10:24:53,673][DEBUG][action.percolate ] [test_node01] [liza_index][0],…

maxx
- 135
- 1
- 1
- 9
0
votes
1 answer
Pagination for percolate results in Elasticsearch
I'm using percolator of Elasticsearch to matches user's query by a new document.
I thought the percolate also works with from and size parameters but only for size.
Is there any way to implement paginating feature for percolate results on…

Hosang Jeon
- 1,373
- 1
- 17
- 37
0
votes
1 answer
unable to percolate : org.elasticsearch.index.percolator.PercolatorException: [myindex] failed to parse query [myDesignatedQueryName]
I am following this guide and converting this percolate api java code in scala but when i run this in SBT it throws following exceptions
[error] (run-main-0) org.elasticsearch.index.percolator.PercolatorException: [myindex] failed to parse query…

swaheed
- 3,671
- 10
- 42
- 103