-
Notifications
You must be signed in to change notification settings - Fork 418
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
Pore over all existing text fields to identify more that should be multi-fields #104
Comments
Not just text fields should be multifields. For example file.uid, gid, http.response.status_code is good to be integer (for comparison) but also very useful to be keyword (useful in visualisations, machine learning, ...). |
Actually discrete numbers like integers can be used for aggregations / visualizations. I don't think that's the case for floats, but integers definitely so. I often do visualizations on port fields, indexed only as integer. |
I know there are some limits I hit in the past. For example for multi metric machine learning job you can not split data per integer value. So I had to make http response code multi-field to be able to use it for split. |
Ah, this is great information! I'm not that familiar with ML yet. Thanks for pointing out, @vbohata |
I'm starting to think if we should make decisions about If we would add |
We're moving to almost exclusively A rewrite of the section about text indexing is coming up, where we'll suggest people who need text indexing on other fields add So closing this issue. |
Moving from
keyword
only indexing to multi-fields is a breaking change, so we need to make sure we're consistent with this.keyword
by default, the question will mostly be: would we benefit from the ability to do partial searches on these values? E.g. filter for "guest" or "wifi" in fieldnetwork.name
or "prod" inhost.name
.The text was updated successfully, but these errors were encountered: