-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
_transform API does not support missing_bucket #55102
Comments
Pinging @elastic/ml-core (:ml/Transform) |
@gatling822 Thanks for your input. I am afraid there is no workaround. As you already stated, its a missing feature in transform as already described in #48243. Is there anything in addition to what is already in #48243, if not I will close this as duplicate. |
Is there a reason we can't use missing_bucket, which seems to be supported under Composite aggregations and does a similar task? Can a work around be to set a null_value in the index mapping, do you know how this will affect indexing or storage? |
The reason is as simple as "not implemented", transform is still quite new, other things are missing, too.
Good idea. This sounds like a good workaround, however it requires that you can change your data or ingesting new data, for existing/old data it requires a reindex. As long as you choose a reasonably sized value, I do not think you notice any performance or sizing problems. |
Thanks for the help @hendrikmuhs |
There is no published roadmap, neither a private one. Why? Because that's not how we work. Elasticsearch does time based releases, therefore a new feature is not strictly tied to a release number. This does not mean, that we have no plan, we actually strive for releasing a new feature in a certain version. However, the release train does not stop, if we miss it, we take the next one. We do not delay a release for a new feature, because there is always another one that seems important. We delay for quality and worst case we even revert a feature, if it does not meet the quality bar. That said, this is one of the reasons why we do not publish release dates upfront. However, if you work with the stack for some time, you notice, there is always something new within 2-3 months. Long story, short: We appreciate feedback, especially on rather new features like transform. Up-voting helps us to prioritize. The best way to follow the development is using github. If you want to follow certain features, we have labels like If you miss a certain feature, great, please open an issue, but please look for an existing one first. Feel free to add to the existing one, if it turns out that its not a duplicate, we will spawn a new issue from it. Again, the simplest form of feedback is an up-vote using the built-in github voting, this is welcome, too. Unsure, unclear, request for help? This is better placed on discuss. |
Elasticsearch/Kibana Version 7.5.2 running in on-prem ECE
While working with the _transaform API I noticed that documents were only getting grouped if all fields in the group by section had a value. Some reading in the composite aggregation documentation I see that this can be fixed by setting
missing_bucket
to true. The terms aggregation also has amissing
parameter that can be set but that appears to no be supported either #48243Composite Aggregation
Any idea how we can get around this?
Error:
The text was updated successfully, but these errors were encountered: