Facets and "Other"

I am getting facet counts with a query across 6 indexes for a field that
should always be a string, and as far as I know, it is. There are about
13million documents.

However my facet results include a very high count (6mil+) for "Other". How
can I enumerate some of the values for "Other" or at least do a query to
list the docs?

thx!

{
"query" : {
"match_all" : { }
},
"facets" : {
"page_ids" : {
"terms" : {
"field" : "page_id",
"size" : 10
}
}
},
"size":1
}

--
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.
For more options, visit https://groups.google.com/groups/opt_out.

The number of facet entries returned is limited by the size field. Any
document not within the first 10 (in your case) facets will be placed in
Other. If you require more values, increase the size.

--
Ivan

On Tue, Apr 2, 2013 at 9:46 AM, ES_Newb phill.rosen@gmail.com wrote:

I am getting facet counts with a query across 6 indexes for a field that
should always be a string, and as far as I know, it is. There are about
13million documents.

However my facet results include a very high count (6mil+) for "Other".
How can I enumerate some of the values for "Other" or at least do a query
to list the docs?

thx!

{
"query" : {
"match_all" : { }
},
"facets" : {
"page_ids" : {
"terms" : {
"field" : "page_id",
"size" : 10
}
}
},
"size":1
}

--
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.
For more options, visit https://groups.google.com/groups/opt_out.

--
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.
For more options, visit https://groups.google.com/groups/opt_out.