You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that when using terms aggregation on a numeric field, the Key is always null in ES respons.
Is this normal behaviour? (or ES default)...
I am using an query to count the times a numeric value is used in a specifc period by examining log data. (example value 123 exists 3x as a stored document).
123 blalalaksks
123 igugugjgjgj
123 firirurututu
144 something else...
//Aggregate per article to count saves per article
.Aggregations(aaa => aaa
.Terms(FilterNames.Record.ToString(), u => u
.Field(fl => fl.record) //Record is numeric field (long)
.Size(0) //Retrieves all unique terms in buckets
)
)
The text was updated successfully, but these errors were encountered:
Hi,
It seems that when using terms aggregation on a numeric field, the Key is always null in ES respons.
Is this normal behaviour? (or ES default)...
I am using an query to count the times a numeric value is used in a specifc period by examining log data. (example value 123 exists 3x as a stored document).
123 blalalaksks
123 igugugjgjgj
123 firirurututu
144 something else...
The text was updated successfully, but these errors were encountered: