databricks-vector-search

Create and query Databricks vector search endpoints and indexes.

4|4|Updated Jan 5, 2026
One-click install
npx skills add https://github.com/RamVegiraju/databricks-samples --skill databricks-vector-search-ramvegiraju
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: databricks-vector-search
Source: https://github.com/RamVegiraju/databricks-samples/tree/main/.claude/skills/databricks-vector-search
Command: npx skills add https://github.com/RamVegiraju/databricks-samples --skill databricks-vector-search-ramvegiraju

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Databricks Vector Search enables teams to build, index, and query vector search endpoints and indexes within the Databricks platform to power retrieval-augmented generation, semantic search, and similarity matching across large Delta tables.

Core Features & Use Cases

  • Create and manage endpoints (Standard or Storage-Optimized) for vector search workloads.
  • Create Delta Sync (Managed or Self-Managed) indexes or Direct Access indexes to store and query embeddings and vectors.
  • Perform text, vector, and hybrid queries with filtering, embeddings, and scalable memory patterns to support RAG pipelines and enterprise search use cases.

Quick Start

Create a standard endpoint and a delta-sync index, then query the index to retrieve the most relevant documents.

Frequently Asked Questions about databricks-vector-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build vector search indexes on Delta tables for RAG in Databricks?

To build vector search indexes on Delta tables for RAG in Databricks, you create a vector search endpoint, then configure a Delta Sync or Direct Access index to store and query embeddings across your Delta tables.

What is the difference between Delta Sync and Direct Access vector search indexes in Databricks?

Delta Sync indexes automatically synchronize data from Delta tables, while Direct Access indexes let you upsert and query vectors directly without a Delta table, offering different latency and management trade-offs for RAG pipelines.

Can I perform hybrid text and vector queries with filtering in Databricks Vector Search?

Yes, Databricks Vector Search supports hybrid queries that combine text and vector similarity matching with filtering, allowing you to retrieve relevant documents using embedding models alongside metadata constraints.

When should I use Standard versus Storage-Optimized vector search endpoints in Databricks?

Standard vector search endpoints suit general-purpose RAG workloads, while Storage-Optimized endpoints are designed for larger-scale vector search workloads requiring scalable memory patterns and cost-efficient storage across Delta tables.

How do I upsert embeddings into a Databricks vector search index?

To upsert embeddings into a Databricks vector search index, you configure your index to ingest embedding vectors and associated metadata, ensuring your Delta table or direct access pipeline updates the index for accurate semantic search retrieval.