-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[ENH] Propagate segment information from frontend to query node #3255
[ENH] Propagate segment information from frontend to query node #3255
Conversation
Reviewer ChecklistPlease leverage this checklist to ensure your code review is thorough before approving Testing, Bugs, Errors, Logs, Documentation
System Compatibility
Quality
|
d95943c
to
cb282ca
Compare
40bad39
to
4575446
Compare
cb282ca
to
3be574d
Compare
4575446
to
513c387
Compare
3be574d
to
e02d7a5
Compare
513c387
to
2b7a94b
Compare
7069b15
to
fdc1b25
Compare
23d9d3e
to
5519de7
Compare
fdc1b25
to
56c2d2d
Compare
5519de7
to
db74461
Compare
7ce2047
to
1022564
Compare
90b3cb9
to
bf4901b
Compare
1022564
to
81e1a4e
Compare
bf4901b
to
c43586d
Compare
94cb043
to
4003aa8
Compare
@@ -6,9 +6,15 @@ import "chromadb/proto/chroma.proto"; | |||
|
|||
message ScanOperator { | |||
Collection collection = 1; | |||
// Deprecated |
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.
nit: add a bit more information as to why it has been deprecated and what is the new course of action?
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 will be removed in the next PR
|
||
let record_uuid = SegmentUuid::from_str(&scan.record_id) | ||
.map_err(|_| Status::invalid_argument("Invalid UUID for Record segment"))?; | ||
let metadata_uuid = |
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.
Please add a comment here on the unwrap_or
behavior
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 a temporary impl that will be removed in the next PR
9a70ee3
to
fcda18a
Compare
69436a2
to
b3b4a88
Compare
b3b4a88
to
a3cf8dd
Compare
Description of changes
Summarize the changes made by this PR.
Test plan
How are these changes tested?
pytest
for python,yarn test
for js,cargo test
for rustDocumentation Changes
Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the docs repository?
N/A