Kina_Shah
(Kina Shah)
March 26, 2014, 3:24pm
1
Hi,
I am trying to apply the custom filter score to a filtered query. The
filtered query works fine, but when I wrap the custom filter score with
filters around it it gives me error. Listed below is the query. Can
someone tell me what's wrong with it?
POST _search
{
"query":
{
"custom_filters_score":
{
"query":
{
"filtered":
{
"query":
{
"match_all": {}
},
"filter":
{
"or":
[
{
"geo_distance" :
{
"distance" : "20km",
"senGeoPointLst" :
{
"lat" : 31.8655875846,
"lon" : 65.8461840664
}
}
},
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
}
}
]
}
}
},
" filters":
[
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
},
"boost":3
}
]
}
}
}
The error I get is :QueryParsingException[[hws] [custom_filters_score]
query does not support [ filters]]; }]",
Thanks!
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com .
For more options, visit https://groups.google.com/d/optout .
Ivan
(Ivan Brusic)
March 26, 2014, 6:05pm
2
Which version of Elasticsearch are you using? The custom filters score
query was deprecated in 0.90,4 and removed in 1.0.
Power insights and outcomes with the Elasticsearch Platform and AI. See into your data and find answers that matter with enterprise solutions designed to help you build, observe, and protect. Try Elasticsearch free today.
Look into using function score queries.
--
Ivan
On Wed, Mar 26, 2014 at 8:24 AM, Kina Shah kinashah0@gmail.com wrote:
Hi,
I am trying to apply the custom filter score to a filtered query. The
filtered query works fine, but when I wrap the custom filter score with
filters around it it gives me error. Listed below is the query. Can
someone tell me what's wrong with it?
POST _search
{
"query":
{
"custom_filters_score":
{
"query":
{
"filtered":
{
"query":
{
"match_all": {}
},
"filter":
{
"or":
[
{
"geo_distance" :
{
"distance" : "20km",
"senGeoPointLst" :
{
"lat" : 31.8655875846,
"lon" : 65.8461840664
}
}
},
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
}
}
]
}
}
},
" filters":
[
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
},
"boost":3
}
]
}
}
}
The error I get is :QueryParsingException[[hws] [custom_filters_score]
query does not support [ filters]]; }]",
Thanks!
--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout .
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CALY%3DcQCwwY8w67gpVxfqgUrtOjG0o78unsn6uPEH5pJ%2BBY0wJA%40mail.gmail.com .
For more options, visit https://groups.google.com/d/optout .
Kina_Shah
(Kina Shah)
March 26, 2014, 7:43pm
3
Ivan,
Thanks for your reply. Yes, I am using 1.0. I went over the Function Score
documentation, but its bit confusing. Do you have any example of Function
Score queries?
Thanks!
On Wednesday, March 26, 2014 2:05:09 PM UTC-4, Ivan Brusic wrote:
Which version of Elasticsearch are you using? The custom filters score
query was deprecated in 0.90,4 and removed in 1.0.
Elasticsearch Platform — Find real-time answers at scale | Elastic http://www.google.com/url?q=http%3A%2F%2Fwww.elasticsearch.org%2Fguide%2Fen%2Felasticsearch%2Freference%2F0.90%2Fquery-dsl-custom-filters-score-query.html&sa=D&sntz=1&usg=AFQjCNEdX_xYmhxziBbqEV_sPF6Dvwb5mg
Look into using function score queries.
--
Ivan
On Wed, Mar 26, 2014 at 8:24 AM, Kina Shah <kina...@gmail.com <javascript:>
wrote:
Hi,
I am trying to apply the custom filter score to a filtered query. The
filtered query works fine, but when I wrap the custom filter score with
filters around it it gives me error. Listed below is the query. Can
someone tell me what's wrong with it?
POST _search
{
"query":
{
"custom_filters_score":
{
"query":
{
"filtered":
{
"query":
{
"match_all": {}
},
"filter":
{
"or":
[
{
"geo_distance" :
{
"distance" : "20km",
"senGeoPointLst" :
{
"lat" : 31.8655875846,
"lon" : 65.8461840664
}
}
},
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
}
}
]
}
}
},
" filters":
[
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
},
"boost":3
}
]
}
}
}
The error I get is :QueryParsingException[[hws] [custom_filters_score]
query does not support [ filters]]; }]",
Thanks!
--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearc...@googlegroups.com <javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout .
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/796ce883-453e-4a43-b183-285bebf651b9%40googlegroups.com .
For more options, visit https://groups.google.com/d/optout .
Ivan
(Ivan Brusic)
March 26, 2014, 9:17pm
4
There is a skeleton example at the very bottom:
Power insights and outcomes with the Elasticsearch Platform and AI. See into your data and find answers that matter with enterprise solutions designed to help you build, observe, and protect. Try Elasticsearch free today.
--
Ivan
On Wed, Mar 26, 2014 at 12:43 PM, Kina Shah kinashah0@gmail.com wrote:
Ivan,
Thanks for your reply. Yes, I am using 1.0. I went over the Function Score
documentation, but its bit confusing. Do you have any example of Function
Score queries?
Thanks!
On Wednesday, March 26, 2014 2:05:09 PM UTC-4, Ivan Brusic wrote:
Which version of Elasticsearch are you using? The custom filters score
query was deprecated in 0.90,4 and removed in 1.0.
Elasticsearch Platform — Find real-time answers at scale | Elastic
reference/0.90/query-dsl-custom-filters-score-query.htmlhttp://www.google.com/url?q=http%3A%2F%2Fwww.elasticsearch.org%2Fguide%2Fen%2Felasticsearch%2Freference%2F0.90%2Fquery-dsl-custom-filters-score-query.html&sa=D&sntz=1&usg=AFQjCNEdX_xYmhxziBbqEV_sPF6Dvwb5mg
Look into using function score queries.
--
Ivan
On Wed, Mar 26, 2014 at 8:24 AM, Kina Shah kina...@gmail.com wrote:
Hi,
I am trying to apply the custom filter score to a filtered query. The
filtered query works fine, but when I wrap the custom filter score with
filters around it it gives me error. Listed below is the query. Can
someone tell me what's wrong with it?
POST _search
{
"query":
{
"custom_filters_score":
{
"query":
{
"filtered":
{
"query":
{
"match_all": {}
},
"filter":
{
"or":
[
{
"geo_distance" :
{
"distance" : "20km",
"senGeoPointLst" :
{
"lat" : 31.8655875846,
"lon" : 65.8461840664
}
}
},
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
}
}
]
}
}
},
" filters":
[
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
},
"boost":3
}
]
}
}
}
The error I get is :QueryParsingException[[hws] [custom_filters_score]
query does not support [ filters]]; }]",
Thanks!
--
You received this message because you are subscribed to the Google
Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to elasticsearc...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/
msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%
40googlegroups.com https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout .
--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/796ce883-453e-4a43-b183-285bebf651b9%40googlegroups.com https://groups.google.com/d/msgid/elasticsearch/796ce883-453e-4a43-b183-285bebf651b9%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout .
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CALY%3DcQCajt%3DvsHLm%3DCv6ESd1nY1_TXFojdbxjgc2BTHd8t7w1Q%40mail.gmail.com .
For more options, visit https://groups.google.com/d/optout .
Kina_Shah
(Kina Shah)
March 27, 2014, 4:16pm
5
Thanks, Ivan! Any such example using java api?
On Wednesday, March 26, 2014 5:17:56 PM UTC-4, Ivan Brusic wrote:
There is a skeleton example at the very bottom:
Elasticsearch Platform — Find real-time answers at scale | Elastic
--
Ivan
On Wed, Mar 26, 2014 at 12:43 PM, Kina Shah <kina...@gmail.com <javascript:>
wrote:
Ivan,
Thanks for your reply. Yes, I am using 1.0. I went over the Function
Score documentation, but its bit confusing. Do you have any example of
Function Score queries?
Thanks!
On Wednesday, March 26, 2014 2:05:09 PM UTC-4, Ivan Brusic wrote:
Which version of Elasticsearch are you using? The custom filters score
query was deprecated in 0.90,4 and removed in 1.0.
Elasticsearch Platform — Find real-time answers at scale | Elastic
reference/0.90/query-dsl-custom-filters-score-query.htmlhttp://www.google.com/url?q=http%3A%2F%2Fwww.elasticsearch.org%2Fguide%2Fen%2Felasticsearch%2Freference%2F0.90%2Fquery-dsl-custom-filters-score-query.html&sa=D&sntz=1&usg=AFQjCNEdX_xYmhxziBbqEV_sPF6Dvwb5mg
Look into using function score queries.
--
Ivan
On Wed, Mar 26, 2014 at 8:24 AM, Kina Shah kina...@gmail.com wrote:
Hi,
I am trying to apply the custom filter score to a filtered query. The
filtered query works fine, but when I wrap the custom filter score with
filters around it it gives me error. Listed below is the query. Can
someone tell me what's wrong with it?
POST _search
{
"query":
{
"custom_filters_score":
{
"query":
{
"filtered":
{
"query":
{
"match_all": {}
},
"filter":
{
"or":
[
{
"geo_distance" :
{
"distance" : "20km",
"senGeoPointLst" :
{
"lat" : 31.8655875846,
"lon" : 65.8461840664
}
}
},
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
}
}
]
}
}
},
" filters":
[
{
"geo_distance" :
{
"distance" : "20km",
"fcGeoPointLst" :
{
"lat" : 88.1,
"lon" : -120.1
}
},
"boost":3
}
]
}
}
}
The error I get is :QueryParsingException[[hws] [custom_filters_score]
query does not support [ filters]]; }]",
Thanks!
--
You received this message because you are subscribed to the Google
Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to elasticsearc...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/
msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%
40googlegroups.com https://groups.google.com/d/msgid/elasticsearch/0f7141d1-bb1f-49b5-ac5b-a4dc0c785138%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout .
--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearc...@googlegroups.com <javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/796ce883-453e-4a43-b183-285bebf651b9%40googlegroups.com https://groups.google.com/d/msgid/elasticsearch/796ce883-453e-4a43-b183-285bebf651b9%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout .
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/3c7e840e-3e72-40d5-b6f7-168291df2607%40googlegroups.com .
For more options, visit https://groups.google.com/d/optout .