-
Notifications
You must be signed in to change notification settings - Fork 103
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 SingleStoreDB vendor profile #431
Conversation
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.
Thanks @apeng-singlestore - please see my initial comments.
"multi_vec": { | ||
"support": "full", | ||
"source_url": "", | ||
"comment": "Multiple vector columns can be created and queried" |
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.
Multi-vector means that the query contains multiple vectors and the results get scored by their proximity to the closest query vector. Is this what you had in mind here? Any way to check documentation for this?
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.
No direct documentation for this but this is possible:
SELECT
id,
name,
GREATEST(
vector_embedding <*> @query_vector1,
vector_embedding <*> @query_vector2,
vector_embedding <*> @query_vector3
) AS best_similarity
FROM
your_table
ORDER BY
best_similarity DESC
}, | ||
"multi_tenancy": { | ||
"support": "full", | ||
"source_url": "", |
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.
Could you please add documentation links for all the "full" suport features?
"github": "https://github.com/singlestore-labs", | ||
"website": "https://www.singlestore.com/", | ||
"vendor_discussion": "", | ||
"poc_github": "", |
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.
@apeng-singlestore could we add you as a point of contact here?
}, | ||
"license": { | ||
"value": "Proprietary", | ||
"source_url": "", |
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.
Link to your proprietary license?
"github": "https://github.com/singlestore-labs", | ||
"website": "https://www.singlestore.com/", | ||
"vendor_discussion": "", | ||
"poc_github": "", |
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 provide a GitHub username for the point of contact who we can reach, regarding any changes or verification of items for the DB in this table
"DOT_PRODUCT", | ||
"EUCLIDEAN", | ||
"COSINE" |
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.
These are distance metrics. This column is for supported index types like HNSW and IVF. Please check files for other DBs and revise
Adds information for SingleStoreDB.