Hi All,
Just had a Visualisation/Functionality question regarding Kibana's "Show Terms" functionality.
I am visualising the top 5 Customers (Text, Keyword) by Transaction Amount Total (Sum, Number).
When I limit the number of customers to be displayed to 5, (Based on Descending Sum of Transaction Amount). I get:
Customer A (with 100k),
Customer B (with 90k),
Customer C (with 80k),
Customer D (with 70k),
Customer E (with 60k)
(Aliased for privacy reasons).
However, When I expand this to double check my working, to the top 1000, the first 5 entries are no longer A, B, C, D, E, and are instead
Customer A (100k),
Customer J (95k),
Customer B (90k),
Customer M (88k),
Customer Z (85k)
Any Idea why I would be getting incorrect information when i reduce the size of the Terms shown? I am using Customer_Name.Keyword field as per below,
"Customer_Name": {
"type": "text",
"fields":
{
"keyword":
{
"type":"keyword"
}
}
},