Statistical facet on length of string field

I would like to retrieve statistical data about a string field like the
min, max and average length (by counting the number of characters inside
the string). I am using CURL to do this and I have what I have tried so far

"query":{
"match_all": {}
},
"facets":{
"stats":{
"statistical":{
"field":"title"}
}
}

returns me exception because the facet expects a number field. How can I
achieve my goal? 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/3c1a08f2-e467-47c3-a667-43837ac9b352%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Hello Cristina ,

This is not possible using stat facet. It expect the field to be a number
and it calculates max/min etc based on its different values.

A way to do this would be to add a new field while indexing which would be
the length of the title.
Then performing stats over it might work.

There might be other solutions based on scripting , but i need to explore
...

Thanks
Vineeth

On Sat, Apr 12, 2014 at 3:25 PM, Cristina Garbacea <
cr1st1na.garbacea@gmail.com> wrote:

I would like to retrieve statistical data about a string field like the
min, max and average length (by counting the number of characters inside
the string). I am using CURL to do this and I have what I have tried so far

"query":{
"match_all": {}
},
"facets":{
"stats":{
"statistical":{
"field":"title"}
}
}

returns me exception because the facet expects a number field. How can I
achieve my goal? 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/3c1a08f2-e467-47c3-a667-43837ac9b352%40googlegroups.comhttps://groups.google.com/d/msgid/elasticsearch/3c1a08f2-e467-47c3-a667-43837ac9b352%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/CAGdPd5mPjyDiGtodYWQEMxZy%2BjOVnd1pXV4AYW%2BrrmRLWRh6qw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Thank you very much for your reply. I tried using script fields, like
this:

"query":{
"match_all": {}
},
"script_fields":{
"test1":{
"script": "_source.title.length"}
}
}

but my issue now is that I get "PropertyAccessException: Could not access
length". My title field is of type string and I was expecting Elasticsearch
to know about it. I am also using CURL for queries, is there any way to
overcome this error?

Thank you,
Cristina

On Saturday, April 12, 2014 2:50:04 PM UTC+2, vineeth mohan wrote:

Hello Cristina ,

This is not possible using stat facet. It expect the field to be a number
and it calculates max/min etc based on its different values.

A way to do this would be to add a new field while indexing which would be
the length of the title.
Then performing stats over it might work.

There might be other solutions based on scripting , but i need to explore
...

Thanks
Vineeth

On Sat, Apr 12, 2014 at 3:25 PM, Cristina Garbacea <cr1st1na...@gmail.com<javascript:>

wrote:

I would like to retrieve statistical data about a string field like the
min, max and average length (by counting the number of characters inside
the string). I am using CURL to do this and I have what I have tried so far

"query":{
"match_all": {}
},
"facets":{
"stats":{
"statistical":{
"field":"title"}
}
}

returns me exception because the facet expects a number field. How can I
achieve my goal? 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/3c1a08f2-e467-47c3-a667-43837ac9b352%40googlegroups.comhttps://groups.google.com/d/msgid/elasticsearch/3c1a08f2-e467-47c3-a667-43837ac9b352%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/8245a839-4374-4235-a942-0a531c79cdfa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Oh, I found out! I was supposed to use length(). Thanks a lot, you pointed
me in the right direction! :slight_smile:

On Saturday, April 12, 2014 4:15:59 PM UTC+2, CC wrote:

Thank you very much for your reply. I tried using script fields, like
this:

"query":{
"match_all": {}
},
"script_fields":{
"test1":{
"script": "_source.title.length"}
}
}

but my issue now is that I get "PropertyAccessException: Could not access
length". My title field is of type string and I was expecting Elasticsearch
to know about it. I am also using CURL for queries, is there any way to
overcome this error?

Thank you,
Cristina

On Saturday, April 12, 2014 2:50:04 PM UTC+2, vineeth mohan wrote:

Hello Cristina ,

This is not possible using stat facet. It expect the field to be a number
and it calculates max/min etc based on its different values.

A way to do this would be to add a new field while indexing which would
be the length of the title.
Then performing stats over it might work.

There might be other solutions based on scripting , but i need to explore
...

Thanks
Vineeth

On Sat, Apr 12, 2014 at 3:25 PM, Cristina Garbacea <cr1st1na...@gmail.com

wrote:

I would like to retrieve statistical data about a string field like the
min, max and average length (by counting the number of characters inside
the string). I am using CURL to do this and I have what I have tried so far

"query":{
"match_all": {}
},
"facets":{
"stats":{
"statistical":{
"field":"title"}
}
}

returns me exception because the facet expects a number field. How can I
achieve my goal? 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/3c1a08f2-e467-47c3-a667-43837ac9b352%40googlegroups.comhttps://groups.google.com/d/msgid/elasticsearch/3c1a08f2-e467-47c3-a667-43837ac9b352%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/8fbb42c1-636b-41f6-b22d-4e4bbaf21719%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Thank you very much for your reply. I tried using script fields, like this:

"query":{
"match_all": {}
},
"script_fields":{
"test1":{
"script": "_source.title.length()"}
}
}

but what I get back from ES are only counts for the top 10 docs. How can I
get values like max length, min length and average length for my title
field? Thank you!

On Saturday, April 12, 2014 2:50:04 PM UTC+2, vineeth mohan wrote:

Hello Cristina ,

This is not possible using stat facet. It expect the field to be a number
and it calculates max/min etc based on its different values.

A way to do this would be to add a new field while indexing which would be
the length of the title.
Then performing stats over it might work.

There might be other solutions based on scripting , but i need to explore
...

Thanks
Vineeth

On Sat, Apr 12, 2014 at 3:25 PM, Cristina Garbacea <cr1st1na...@gmail.com<javascript:>

wrote:

I would like to retrieve statistical data about a string field like the
min, max and average length (by counting the number of characters inside
the string). I am using CURL to do this and I have what I have tried so far

"query":{
"match_all": {}
},
"facets":{
"stats":{
"statistical":{
"field":"title"}
}
}

returns me exception because the facet expects a number field. How can I
achieve my goal? 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/3c1a08f2-e467-47c3-a667-43837ac9b352%40googlegroups.comhttps://groups.google.com/d/msgid/elasticsearch/3c1a08f2-e467-47c3-a667-43837ac9b352%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/8bd3444c-5095-463c-adb9-60ea2eb42e57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Use the script feature in the stats facet -

The value computed can also be a script, using the value_script instead of
value_field, in which case the lang can control its language, and params allow
to provide custom parameters (as in other scripted components).

On Sun, Apr 13, 2014 at 2:51 PM, CC cr1st1na.garbacea@gmail.com wrote:

Thank you very much for your reply. I tried using script fields, like
this:

"query":{
"match_all": {}
},
"script_fields":{
"test1":{
"script": "_source.title.length()"}
}
}

but what I get back from ES are only counts for the top 10 docs. How can
I get values like max length, min length and average length for my title
field? Thank you!

On Saturday, April 12, 2014 2:50:04 PM UTC+2, vineeth mohan wrote:

Hello Cristina ,

This is not possible using stat facet. It expect the field to be a number
and it calculates max/min etc based on its different values.

A way to do this would be to add a new field while indexing which would
be the length of the title.
Then performing stats over it might work.

There might be other solutions based on scripting , but i need to explore
...

Thanks
Vineeth

On Sat, Apr 12, 2014 at 3:25 PM, Cristina Garbacea <cr1st1na...@gmail.com

wrote:

I would like to retrieve statistical data about a string field like the
min, max and average length (by counting the number of characters inside
the string). I am using CURL to do this and I have what I have tried so far

"query":{
"match_all": {}
},
"facets":{
"stats":{
"statistical":{
"field":"title"}
}
}

returns me exception because the facet expects a number field. How can I
achieve my goal? 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/3c1a08f2-e467-47c3-a667-43837ac9b352%
40googlegroups.comhttps://groups.google.com/d/msgid/elasticsearch/3c1a08f2-e467-47c3-a667-43837ac9b352%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/8bd3444c-5095-463c-adb9-60ea2eb42e57%40googlegroups.comhttps://groups.google.com/d/msgid/elasticsearch/8bd3444c-5095-463c-adb9-60ea2eb42e57%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/CAGdPd5%3D-49cUg-nU9eyR6hkPd%2BisgR915hcH2ZuhtOC7Nm72JA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.