-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Rename DiskBBQ format to a versioned name #134234
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
Rename DiskBBQ format to a versioned name #134234
Conversation
Pinging @elastic/es-search-relevance (Team:Search Relevance) |
public static final String NAME = "IVFVectorsFormat"; | ||
public static final String NAME = "ES920DiskBBQVectorsFormat"; | ||
// centroid ordinals -> centroid values, offsets | ||
public static final String CENTROID_EXTENSION = "cenivf"; |
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.
Just to say it out loud the file extensions will still have 'ivf' in them. This seems fine and I can't think of a more elegant naming convention.
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.
I think this is ok. File name extensions are always, ugh.
not sure it's worth changing these but similar to my last comment just to say it out loud we yaml tests that both reference 'ivf' and have 'ivf' in the name of the test like.
|
@john-wagster yeah, there are other things as well that we might want to rename, but I wanted to get the format rename and moving out of the way so it doesn't block folks on any code changes there. |
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.
Looked and did some searching for instances of ivf. I think what you've renamed here for the format makes sense and I didn't see anything obviously missing. lgtm
This renames our format to be a versioned name like all our other formats.