Vector Index format.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 06:08 PM
On of the key benefits of a delta table format is that it's open. Is this also the case for vector indexes as well? If so where could I find it's specification?
In Databricks today, we see that we can create and manage a vector index using API's. (https://docs.databricks.com/api/azure/workspace/vectorsearchindexes/createindex). Is this also possible using spark data frame operations as well?
thanks
Krishna
- Labels:
-
Developer Experience
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2024 06:09 AM
The Delta table format is indeed open, which is one of its key benefits. However, the same cannot be said for vector indexes. The specifications for vector indexes are not openly available in the same way as Delta tables.
Regarding the creation and management of vector indexes, it is currently possible to do so using the Databricks UI, the Python SDK, and the REST API. The documentation does not mention the ability to create and manage vector indexes directly using Spark DataFrame operations.
For more detailed information on creating and managing vector indexes, you can refer to the following resources:
- How to create and query a vector search index
Visit URL: https://docs.databricks.com/en/generative-ai/create-query-vector-search.html - https://docs.databricks.com/api/azure/workspace/vectorsearchindexes/createindex
These resources provide comprehensive guidance on using the UI, Python SDK, and REST API for vector index operations.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2024 06:01 PM
Thank you for your response. Is there a view on making these as open as the delta format?

