Skip to content
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

Merged
merged 8 commits into from
Aug 8, 2024

Conversation

apeng-singlestore
Copy link
Contributor

Adds information for SingleStoreDB.

@apeng-singlestore apeng-singlestore requested a review from a team as a code owner July 31, 2024 19:39
Copy link
Contributor

@svonava svonava left a 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.

docs/tools/vdb_table/data/singlestoredb.json Show resolved Hide resolved
docs/tools/vdb_table/data/singlestoredb.json Show resolved Hide resolved
"multi_vec": {
"support": "full",
"source_url": "",
"comment": "Multiple vector columns can be created and queried"
Copy link
Contributor

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?

Copy link
Contributor Author

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": "",
Copy link
Contributor

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?

docs/tools/vdb_table/data/singlestoredb.json Show resolved Hide resolved
docs/tools/vdb_table/data/singlestoredb.json Show resolved Hide resolved
"github": "https://github.com/singlestore-labs",
"website": "https://www.singlestore.com/",
"vendor_discussion": "",
"poc_github": "",
Copy link
Contributor

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": "",
Copy link
Contributor

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": "",
Copy link
Contributor

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

Comment on lines 154 to 156
"DOT_PRODUCT",
"EUCLIDEAN",
"COSINE"
Copy link
Contributor

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

@dhruv-anand-aintech dhruv-anand-aintech merged commit 401f054 into superlinked:main Aug 8, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants