Create a RAG Pipeline with Couchbase Capella
Last updated
Last updated
Approximate time to complete: 5-10 minutes, excluding prerequisites
This quickstart will walk you through creating and scheduling a pipeline that collects data from an Amazon S3 bucket, creates vector embeddings using an OpenAI embedding model, and writes the vectors to your Couchbase Capella index.
Before starting, ensure you have access to the credentials, connection parameters, and API keys as appropriate for the following:
A Vectorize account (Create one free here ↗ )
Amazon S3 bucket & IAM access keys (Walkthrough documentation)
An OpenAI API Key (How to article)
A Couchbase Capella account (Create one on Couchbase ↗ )
If you've just created your Couchbase account, you'll be prompted to create a Provisioned Trial Cluster. Select Provisioned Trial.
Choose AWS as the cloud provider, select your preferred region, and click Deploy Now.
Navigate to the Couchbase Capella dashboard ↗. Select the Operational Clusters tab, then click Create Cluster.
You'll be asked to select an existing project to associate your cluster with, then select Continue. If you'd like to create a new project, click on the provided link to create it, then return to the cluster dashboard and click Create Cluster.
Choose AWS as the cloud provider, select your preferred region, and adjust the configuration as desired, then click Create Cluster.
Navigate to the Couchbase Capella dashboard ↗. Click on your cluster's name to go to the home page for your cluster.
From the cluster's home page, click Data Tools, then select Create.
In the pop-up, click New under Bucket. Check the box under Scope to use _default for the scope and collection, then click Create.
Save this JSON file. It contains the index definition you'll need to create your index.
Navigate to the Couchbase Capella dashboard ↗. Click on your cluster's name to go to the home page for your cluster, then select Data Tools.
Go to the Search section in the second menu, then click Create Search Index.
Upload the index definition.
Select Advanced Mode.
Click Import from File, then upload the JSON file you just saved.
Configure your index.
Select the bucket to use.
Adjust the index name as desired.
Click Create Index to complete the process.
Capella will adjust the JSON in the index definition to include your bucket name and your modified index name.
To configure an integration with Vectorize, you'll need credentials to access your cluster. Navigate to the Couchbase Capella dashboard ↗. Click on your cluster's name to go to the home page for your cluster, then click Settings. Under Security, click on Cluster Access, then select Create Cluster Access.
Enter the following details, then click Create Cluster Access.
Cluster Access Name: The name you'll use to access this cluster.
Password: The password you'll use to access this cluster.
Bucket: Select the bucket you created earlier.
Scope: Select _default for the scope.
Access: Select Read/Write.
Navigate to the Couchbase Capella dashboard ↗. Click on your cluster's name to go to the home page for your cluster, then click Settings. Under Networking_, click on Allowed IP Addresses, then select Add Allowed IP.
Select Allow Access from Anywhere. After confirming your selection, click Add Allowed IP.
Navigate to the Couchbase Capella dashboard ↗. Click on your cluster's name to go to the home page for your cluster, then select Connect.
Click the copy icon next to the connection string to copy it and store it safely. You'll need it for accessing your cluster through Vectorize.
Open the Vectorize Application Console ↗
From the dashboard, click on + New RAG Pipeline
under the "RAG Pipelines" section.
Enter a name for your pipeline. For example, you can name it quickstart-pipeline
.
Click on + New Vector DB
to create a new vector database.
Select Couchbase Capella from the list of vector databases.
In the Couchbase Capella configuration screen, enter the following details, then click Create Capella Access.
Name: The name you'll use to refer to this integration in Vectorize.
Username: The cluster access name you created earlier.
Password: The cluster access password you created earlier.
Connection String: The connection string you saved earlier.
Once your Capella integration has been created, you'll set configuration values for your pipeline. Enter the following details:
Name: The name you'll use to refer to this pipeline in Vectorize.
Bucket Name: The Capella bucket you created earlier.
Scope Name: Enter _default, which is what you used earlier when configuring your cluster.
Connection Name: Enter _default, which is what you used earlier when configuring your cluster.
Search Index Name: The name of the Capella search index you created earlier.
Click on + New AI Platform
.
Select OpenAI from the AI platform options.
In the OpenAI configuration screen:
Enter a descriptive name for your OpenAI integration.
Enter your OpenAI API Key.
Leave the default values for embedding model, chunk size, and chunk overlap for the quickstart.
Click + Add source connector
to add a source connector to your pipeline.
Choose Amazon S3 from the list of source connector options.
In the Amazon S3 configuration screen:
Name your integration. It can be the same as your bucket name, but it doesn't have to be.
Enter your Bucket Name exactly as it appears in AWS.
Provide the Access Key and Secret Key for your AWS IAM user.
Accept the default values for file extensions and other options.
Click Save Configuration.
After configuring the S3 integration, you should see it listed under Source Connectors.
Click Next: Schedule Pipeline to continue.
Set the schedule type and frequency for the pipeline.
Leave the default values for the pipeline schedule for now.
Click Create RAG Pipeline.
After clicking Create RAG Pipeline, you will see the pipeline creation progress.
The stages include:
Creating pipeline
Deploying pipeline
Starting backfilling process
Once the pipeline is created and deployed, it will begin the backfilling process.
You can monitor the pipeline status and view the progress of document ingestion and vector creation.
If your S3 bucket is empty, the pipeline will show 0 Documents
, 0 Chunks
, and 0 Vectors
.
Download the friends-scripts.zip
file from the following location
After downloading the friends-scripts.zip
file, extract it to a location on your local machine.
On most operating systems, you can do this by right-clicking the zip file and selecting Extract All or Unzip.
Log into your AWS S3 account and navigate to the Buckets section.
Filter to find your bucket by typing its name in the search bar.
Click on your bucket name to open the detailed bucket view.
Click on the Upload button in the top right corner of the bucket's detail view.
You can either drag and drop the extracted files from the friends-scripts
directory into the upload area, or click on Add files to browse your local machine and select them manually.
After adding the files, you should see them listed under the Files and folders section of the upload screen.
Once you've confirmed that all the files are listed, click on the Upload button at the bottom of the screen to start the upload process.
Your files will now be uploaded to your S3 bucket.
Within a few seconds after the upload is complete, you should see the content of your files start to populate in the RAG pipeline.
The backfilling process will show progress as it reads and processes the documents from your S3 bucket.
Total Documents and Total Chunks will increase as the documents are embedded and processed.
You can track the number of documents being embedded and vectors being written.
After a minute or two of processing, you should see the total number of uploaded documents reflected in the pipeline's statistics.
If you used the Friends Scripts documents as recommended, you will see 228 documents displayed in the Total Documents field.
From the main pipeline overview, click on the RAG Pipelines menu item to view your active pipelines.
Find your pipeline in the list of pipelines.
Click on the magnifying glass icon under the RAG Sandbox column to open the sandbox for your selected pipeline.
In the sandbox, you can ask questions about the data you've ingested.
Type a question related to your dataset in the Question field. For example, "What characteristics define the relationship between Ross and Monica?" if you're working with the Friends TV show scripts.
Click Submit to send the question.
After submitting your question, the sandbox will retrieve relevant chunks from your vector database and display them in the Retrieved Context section.
The response from the language model (LLM) will be displayed in the LLM Response section.
The Retrieved Context section shows the chunks that were matched with your question.
The LLM Response section provides the final output based on the retrieved chunks.
You can continue to ask different questions or refine your queries to explore your dataset further.
The sandbox allows for dynamic interactions with the data stored in your vector database.
That's it! You're now able to explore your data using the RAG Sandbox.