Have an issue with match query

Hi,

We have an issue with the match query of elastic search implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment
Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query":
"allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic
allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "holistic allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

--
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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

I guess it's caused by:

  "type": "phrase_prefix"

Just a note: why searching with a boost=0?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 08:30, Anoop P R anoopkumaranalloor@gmail.com a écrit :

Hi,

We have an issue with the match query of Elasticsearch implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query": "allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
"query": "allergist",
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
"query": "holistic allergist",
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com.
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/4891ACE2-EBA9-472F-8237-65EC52B01D70%40pilato.fr.
For more options, visit https://groups.google.com/d/optout.

David,

Its not work for me!

Is it possible to split the keyword with whitespace and search on the
fields.

Boost "0" doesn't make seance and I removed that, Thanks for the note.

On Thursday, January 1, 2015 1:14:53 PM UTC+5:30, David Pilato wrote:

I guess it's caused by:

  "type": "phrase_prefix"

Just a note: why searching with a boost=0?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 08:30, Anoop P R <anoopkuma...@gmail.com <javascript:>>
a écrit :

Hi,

We have an issue with the match query of Elasticsearch implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment
Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query":
"allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic
allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "holistic allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

--
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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/c4e1ba5e-5374-49cd-b22b-c09c3946c091%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/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Well. Hard to say without seeing your mapping and a full reproduction...

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 12:40, Anoop P R anoopkumaranalloor@gmail.com a écrit :

David,

Its not work for me!

Is it possible to split the keyword with whitespace and search on the fields.

Boost "0" doesn't make seance and I removed that, Thanks for the note.

On Thursday, January 1, 2015 1:14:53 PM UTC+5:30, David Pilato wrote:
I guess it's caused by:

  "type": "phrase_prefix"

Just a note: why searching with a boost=0?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 08:30, Anoop P R anoopkuma...@gmail.com a écrit :

Hi,

We have an issue with the match query of Elasticsearch implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query": "allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
"query": "allergist",
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
"query": "holistic allergist",
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com.
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/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%40googlegroups.com.
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/7F4B9EE2-FE03-4550-997D-57C44A074678%40pilato.fr.
For more options, visit https://groups.google.com/d/optout.

Here is the mapping

{
"demo_local": {
"mappings": {
"tradesman": {
"properties": {
"account_status": {
"type": "boolean"
},
"business_name": {
"type": "string"
},
"business_name_sort": {
"type": "string"
},
"categories": {
"type": "string"
},
"general_desc": {
"type": "string"
},
"keywords": {
"type": "string"
},
"long_descriptions": {
"type": "string"
},
"member_id": {
"type": "string"
},
"pin": {
"properties": {
"location": {
"type": "geo_point"
}
}
},
"professionalism_rank": {
"type": "long"
},
"punctuality_rank": {
"type": "long"
},
"recommend_rank": {
"type": "long"
},
"service_location": {
"type": "long"
},
"service_titles": {
"type": "string"
},
"state": {
"type": "boolean"
},
"status": {
"type": "long"
},
"unique_name": {
"type": "string"
},
"value_rank": {
"type": "long"
}
}
}
}
}
}

On Thursday, January 1, 2015 5:51:08 PM UTC+5:30, David Pilato wrote:

Well. Hard to say without seeing your mapping and a full reproduction...

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 12:40, Anoop P R <anoopkuma...@gmail.com <javascript:>>
a écrit :

David,

Its not work for me!

Is it possible to split the keyword with whitespace and search on the
fields.

Boost "0" doesn't make seance and I removed that, Thanks for the note.

On Thursday, January 1, 2015 1:14:53 PM UTC+5:30, David Pilato wrote:

I guess it's caused by:

  "type": "phrase_prefix"

Just a note: why searching with a boost=0?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 08:30, Anoop P R anoopkuma...@gmail.com a écrit :

Hi,

We have an issue with the match query of Elasticsearch implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment
Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query":
"allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic
allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "holistic allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

--
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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/c4e1ba5e-5374-49cd-b22b-c09c3946c091%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/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%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/c6abc327-eda9-43c8-8735-c36b24470d2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Do you have a doc which contains all terms?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 2 janv. 2015 à 06:21, Anoop P R anoopkumaranalloor@gmail.com a écrit :

Here is the mapping

{
"demo_local": {
"mappings": {
"tradesman": {
"properties": {
"account_status": {
"type": "boolean"
},
"business_name": {
"type": "string"
},
"business_name_sort": {
"type": "string"
},
"categories": {
"type": "string"
},
"general_desc": {
"type": "string"
},
"keywords": {
"type": "string"
},
"long_descriptions": {
"type": "string"
},
"member_id": {
"type": "string"
},
"pin": {
"properties": {
"location": {
"type": "geo_point"
}
}
},
"professionalism_rank": {
"type": "long"
},
"punctuality_rank": {
"type": "long"
},
"recommend_rank": {
"type": "long"
},
"service_location": {
"type": "long"
},
"service_titles": {
"type": "string"
},
"state": {
"type": "boolean"
},
"status": {
"type": "long"
},
"unique_name": {
"type": "string"
},
"value_rank": {
"type": "long"
}
}
}
}
}
}

On Thursday, January 1, 2015 5:51:08 PM UTC+5:30, David Pilato wrote:
Well. Hard to say without seeing your mapping and a full reproduction...

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 12:40, Anoop P R anoopkuma...@gmail.com a écrit :

David,

Its not work for me!

Is it possible to split the keyword with whitespace and search on the fields.

Boost "0" doesn't make seance and I removed that, Thanks for the note.

On Thursday, January 1, 2015 1:14:53 PM UTC+5:30, David Pilato wrote:
I guess it's caused by:

  "type": "phrase_prefix"

Just a note: why searching with a boost=0?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 08:30, Anoop P R anoopkuma...@gmail.com a écrit :

Hi,

We have an issue with the match query of Elasticsearch implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query": "allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
"query": "allergist",
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
"query": "holistic allergist",
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com.
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%40googlegroups.com.
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/c6abc327-eda9-43c8-8735-c36b24470d2b%40googlegroups.com.
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/509BB0B1-394F-4271-AF94-A35268879E86%40pilato.fr.
For more options, visit https://groups.google.com/d/optout.

Please find the attached doc for the mapping, index and query we use
currently.

On Friday, January 2, 2015 2:10:00 PM UTC+5:30, David Pilato wrote:

Do you have a doc which contains all terms?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 2 janv. 2015 à 06:21, Anoop P R <anoopkuma...@gmail.com <javascript:>>
a écrit :

Here is the mapping

{
"demo_local": {
"mappings": {
"tradesman": {
"properties": {
"account_status": {
"type": "boolean"
},
"business_name": {
"type": "string"
},
"business_name_sort": {
"type": "string"
},
"categories": {
"type": "string"
},
"general_desc": {
"type": "string"
},
"keywords": {
"type": "string"
},
"long_descriptions": {
"type": "string"
},
"member_id": {
"type": "string"
},
"pin": {
"properties": {
"location": {
"type": "geo_point"
}
}
},
"professionalism_rank": {
"type": "long"
},
"punctuality_rank": {
"type": "long"
},
"recommend_rank": {
"type": "long"
},
"service_location": {
"type": "long"
},
"service_titles": {
"type": "string"
},
"state": {
"type": "boolean"
},
"status": {
"type": "long"
},
"unique_name": {
"type": "string"
},
"value_rank": {
"type": "long"
}
}
}
}
}
}

On Thursday, January 1, 2015 5:51:08 PM UTC+5:30, David Pilato wrote:

Well. Hard to say without seeing your mapping and a full reproduction...

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 12:40, Anoop P R anoopkuma...@gmail.com a écrit :

David,

Its not work for me!

Is it possible to split the keyword with whitespace and search on the
fields.

Boost "0" doesn't make seance and I removed that, Thanks for the note.

On Thursday, January 1, 2015 1:14:53 PM UTC+5:30, David Pilato wrote:

I guess it's caused by:

  "type": "phrase_prefix"

Just a note: why searching with a boost=0?

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 1 janv. 2015 à 08:30, Anoop P R anoopkuma...@gmail.com a écrit :

Hi,

We have an issue with the match query of Elasticsearch implementation.

Our index for categories field is as below.

"categories": [
"DJ’s",
"Entertainment Entertainment Entertainment
Entertai",
"Allergist",
"Transportation Services"
],

We are getting result when searched using the following input, with "query":
"allergist". Please see the query below.
{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

But not getting the result when using the input with "query": "holistic
allergist". Please see the query below.

{
"query": {
"bool": {
"must": [
{
"term": {
"status": 1
}
},
{
"term": {
"account_status": 1
}
}
],
"should": {
"multi_match": {
* "query": "holistic allergist",*
"fields": [
"categories^5",
"service_titles^4",
"keywords^3",
"long_descriptions^2",
"general_desc^1",
"business_name^0"
],
"type": "phrase_prefix"
}
},
"minimum_should_match": 1
}
},
"sort": {
"recommend_rank": {
"order": "desc"
}
},
"from": 0,
"size": "10"
}

I would appreciate your help on solving this issue.

Regards,
Anoop.

--
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/c4e1ba5e-5374-49cd-b22b-c09c3946c091%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/c4e1ba5e-5374-49cd-b22b-c09c3946c091%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.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/5a5dc3a9-50e0-4060-8f96-cf13719fc5fd%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/c6abc327-eda9-43c8-8735-c36b24470d2b%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/c6abc327-eda9-43c8-8735-c36b24470d2b%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/e6998354-630f-43ef-ada5-16cfcce62153%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.