-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Add synthetic source support for binary fields #107549
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
Add synthetic source support for binary fields #107549
Conversation
Documentation preview: |
Pinging @elastic/es-storage-engine (Team:StorageEngine) |
Hi @lkts, I've created a changelog YAML for you. |
import java.util.Map; | ||
import java.util.stream.Stream; | ||
|
||
public abstract class BinaryDocValuesSyntheticFieldLoader implements SourceLoader.SyntheticFieldLoader { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is introduced in #107081 which is not yet merged.
@elasticmachine update branch |
@elasticmachine update branch |
@elasticmachine update branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
#107554 part is missing, but is required the fully support synthetic source for the binary field type. This will be added in a follow up.
This PR adds synthetic source support for
binary
fields. Synthetic source is only supported when doc values are enabled.Contributes to #106460.