I'm trying to use the "Significance Terms" aggregation on Twitter post, however, each time I try to I receive "No Results Found" (picture attached).
When I try to use the Significant Terms aggregation on the text in the tweet documents it only gives me the option for "text.keyword" instead of "text" field, which I believe the documentation says I need for Significant Term Aggregation? (i'm unsure about this)?
Here is the index mapping for my index, along with a few example documents.
Index:
"text" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
Please note that my text.keywords field actually displays the entire tweet instead of the specific tokens as well? I'm unsure why this is because according to the documentation, I believe the analyzer is suppose to tokenize the text field by default?
Can someone help me figure out what I'm doing wrong?

