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 an index and search
The create_index
/createIndex
executes asynchronously. To ensure the index is fully built,
implement the status verification demonstrated above to monitor the index build progress.
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.