Get Started
Quickstart Guide
Effortlessly transform Open Source experience to Cloud/Enterprise
Explore the full implementation in this Quickstart guide:
→ Python Notebook | TypeScript Example
Prerequisite:
Install the LanceDB SDK with your preferred language.
1. Connect to LanceDB Cloud/Enterprise
- For LanceDB Cloud users, the database URI (which starts with
db://
) and API key can both be retrieved from the LanceDB Cloud UI. For step-by-step instructions, refer to our onboarding tutorial. - For LanceDB Enterprise user, please contact our team to obtain your database URI, API key and host_override URL.
2. Load Dataset
3. Create a table and ingest data
4. Create a vector index
The create_index
/createIndex
operation executes asynchronously in LanceDB Cloud/Enterprise. To ensure the index is fully built,
you can use the wait_timeout
parameter or call wait_for_index
on the table.
5. Perform a vector search
6. Drop the table
Next Steps
- Dive into the
Work with Data
section to unlock LanceDB’s full potential. - Explore our python notebooks and typescript examples for real-world use cases.