-
Notifications
You must be signed in to change notification settings - Fork 264
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
feat: create index from projection #1244
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xzdandy
reviewed
Oct 1, 2023
The design looks good. For record, the plan we are creating is |
xzdandy
added
Optimizations
Features/Bugs related to optimizations
Feature Request ✨
New feature or request
labels
Oct 1, 2023
gaurav274
reviewed
Oct 2, 2023
I might be missing something, but I could not understand how "automatic index updates" is done in the code. |
gaurav274
approved these changes
Oct 2, 2023
jiashenC
force-pushed
the
vector-index-insert
branch
from
October 2, 2023 14:36
8a80a14
to
12ced8b
Compare
jiashenC
added a commit
that referenced
this pull request
Oct 4, 2023
Break the feature into multiple PRs. We can merge this PR after #1244.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Oct 30, 2023
The first step to do automatic index updates on insertions. Replace the old version of creating an index, which directly reads data from the storage engine. It now reads data from the children's plans: SeqScan and Storage.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Oct 30, 2023
Break the feature into multiple PRs. We can merge this PR after georgia-tech-db#1244.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Oct 30, 2023
The first step to do automatic index updates on insertions. Replace the old version of creating an index, which directly reads data from the storage engine. It now reads data from the children's plans: SeqScan and Storage.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Oct 30, 2023
Break the feature into multiple PRs. We can merge this PR after georgia-tech-db#1244.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Nov 22, 2023
The first step to do automatic index updates on insertions. Replace the old version of creating an index, which directly reads data from the storage engine. It now reads data from the children's plans: SeqScan and Storage.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Nov 22, 2023
Break the feature into multiple PRs. We can merge this PR after georgia-tech-db#1244.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Nov 22, 2023
The first step to do automatic index updates on insertions. Replace the old version of creating an index, which directly reads data from the storage engine. It now reads data from the children's plans: SeqScan and Storage.
a0x8o
pushed a commit
to alexxx-db/eva
that referenced
this pull request
Nov 22, 2023
Break the feature into multiple PRs. We can merge this PR after georgia-tech-db#1244.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The first step to do automatic index updates on insertions.
Replace the old version of creating an index, which directly reads data from the storage engine.
It now reads data from the children's plans: SeqScan and Storage.