Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search Facets: Histogram Facets #215

Closed
kimchy opened this issue Jun 8, 2010 · 1 comment
Closed

Search Facets: Histogram Facets #215

kimchy opened this issue Jun 8, 2010 · 1 comment

Comments

@kimchy
Copy link
Member

kimchy commented Jun 8, 2010

Support histogram facets for numeric data. The idea is that values are rounded into the closest bucket based on the interval provided (for example, for interval 100, then 1055 will be rounded to 1000) and then for each bucket the count, total, and mean values are provided.

Here is an example:

{
    query : {
        "match_all" : {}
    },
    facets : {
        "histo1" : {
            "histogram" : {
                "field" : "multi_num",
                "interval" : 100
            }
        }
    }
}
@kimchy
Copy link
Member Author

kimchy commented Jun 8, 2010

Search Facets: Histogram Facets, closed by 47b3a81

williamrandolph pushed a commit to williamrandolph/elasticsearch that referenced this issue Jun 4, 2020
Fix elastic#215

(cherry picked from commit a9973cf6611c307372062ea80a614fd3ea0e4d5a)
williamrandolph pushed a commit to williamrandolph/elasticsearch that referenced this issue Jun 4, 2020
Backport ObjectReader from Jackson to 1.5 for easy, non-initializing
parsing of the json doc

fix elastic#215

(cherry picked from commit c621b999a288626dbd83e22b3b463c1063fd3c42)
mindw pushed a commit to mindw/elasticsearch that referenced this issue Sep 5, 2022
…lastic#215)

MPC-1849: Add transciption access for backend


Approved-by: Gideon Avida
cbuescher pushed a commit to cbuescher/elasticsearch that referenced this issue Oct 2, 2023
…stic#215)

also fix some random whitespace issues in the README.
emilykmarx pushed a commit to emilykmarx/elasticsearch that referenced this issue Dec 26, 2023
require "concurrent_ruby" --> require "concurrent"

Fixes elastic#213.

Fixes elastic#215
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant