Cloud SQL is a fully managed relational database service that offers high performance, seamless integration, and impressive scalability. It offers PostgreSQL, MySQL, and SQL Server database engines. Extend your database application to build AI-powered experiences leveraging Cloud SQL’s LangChain integrations.This notebook goes over how to use
Cloud SQL for MySQL
to store vector embeddings with the MySQLVectorStore
class.
Learn more about the package on GitHub.
Before you begin
To run this notebook, you will need to do the following:- Create a Google Cloud Project
- Enable the Cloud SQL Admin API.
- Create a Cloud SQL instance. (version must be >= 8.0.36 with cloudsql_vector database flag configured to “On”)
- Create a Cloud SQL database.
- Add a User to the database.
🦜🔗 Library Installation
Install the integration library,langchain-google-cloud-sql-mysql
, and the library for the embedding service, langchain-google-vertexai
.
🔐 Authentication
Authenticate to Google Cloud as the IAM user logged into this notebook in order to access your Google Cloud Project.- If you are using Colab to run this notebook, use the cell below and continue.
- If you are using Vertex AI Workbench, check out the setup instructions here.
☁ Set Your Google Cloud Project
Set your Google Cloud project so that you can leverage Google Cloud resources within this notebook. If you don’t know your project ID, try the following:- Run
gcloud config list
. - Run
gcloud projects list
. - See the support page: Locate the project ID.
Basic Usage
Set Cloud SQL database values
Find your database values, in the Cloud SQL Instances page. Note: MySQL vector support is only available on MySQL instances with version >= 8.0.36. For existing instances, you may need to perform a self-service maintenance update to update your maintenance version to MYSQL_8_0_36.R20240401.03_00 or greater. Once updated, configure your database flags to have the new cloudsql_vector flag to “On”.MySQLEngine Connection Pool
One of the requirements and arguments to establish Cloud SQL as a vector store is aMySQLEngine
object. The MySQLEngine
configures a connection pool to your Cloud SQL database, enabling successful connections from your application and following industry best practices.
To create a MySQLEngine
using MySQLEngine.from_instance()
you need to provide only 4 things:
project_id
: Project ID of the Google Cloud Project where the Cloud SQL instance is located.region
: Region where the Cloud SQL instance is located.instance
: The name of the Cloud SQL instance.database
: The name of the database to connect to on the Cloud SQL instance.
user
and password
arguments to MySQLEngine.from_instance()
:
user
: Database user to use for built-in database authentication and loginpassword
: Database password to use for built-in database authentication and login.
Initialize a table
TheMySQLVectorStore
class requires a database table. The MySQLEngine
class has a helper method init_vectorstore_table()
that can be used to create a table with the proper schema for you.
Create an embedding class instance
You can use any LangChain embeddings model. You may need to enable the Vertex AI API to useVertexAIEmbeddings
.
We recommend pinning the embedding model’s version for production, learn more about the Text embeddings models.
Initialize a default MySQLVectorStore
To initialize aMySQLVectorStore
class you need to provide only 3 things:
engine
- An instance of aMySQLEngine
engine.embedding_service
- An instance of a LangChain embedding model.table_name
: The name of the table within the Cloud SQL database to use as the vector store.
Add texts
Delete texts
Delete vectors from the vector store by ID.Search for documents
Search for documents by vector
It is also possible to do a search for documents similar to a given embedding vector usingsimilarity_search_by_vector
which accepts an embedding vector as a parameter instead of a string.
Add an index
Speed up vector search queries by applying a vector index. Learn more about MySQL vector indexes. Note: For IAM database authentication (default usage), the IAM database user will need to be granted the following permissions by a privileged database user for full control of vector indexes.Remove an index
Advanced Usage
Create a MySQLVectorStore with custom metadata
A vector store can take advantage of relational data to filter similarity searches. Create a table andMySQLVectorStore
instance with custom metadata columns.
Search for documents with metadata filter
It can be helpful to narrow down the documents before working with them. For example, documents can be filtered on metadata using thefilter
argument.