Google Cloud SQL for PostgreSQL - PostgresReader
Ā¶
Cloud SQL is a fully managed relational database service that offers high performance, seamless integration, and impressive scalability. It offers MySQL, PostgreSQL, and SQL Server database engines. Extend your database application to build AI-powered experiences leveraging Cloud SQL's LlamaIndex integrations.
This notebook goes over how to use Cloud SQL for PostgreSQL
to retrieve data as documents with the PostgresReader
class.
Learn more about the package on GitHub.
Before you beginĀ¶
To run this notebook, you will need to do the following:
š¦ Library InstallationĀ¶
Install the integration library, llama-index-cloud-sql-pg
.
Colab only: Uncomment the following cell to restart the kernel or use the button to restart the kernel. For Vertex AI Workbench you can restart the terminal using the button on top.
# # Automatically restart kernel after installs so that your environment can access the new packages
# import IPython
# app = IPython.Application.instance()
# app.kernel.do_shutdown(True)
from google.colab import auth
auth.authenticate_user()
ā 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.
# @markdown Please fill in the value below with your Google Cloud project ID and then run the cell.
PROJECT_ID = "my-project-id" # @param {type:"string"}
# Set the project id
!gcloud config set project {PROJECT_ID}
Basic UsageĀ¶
Set Cloud SQL database valuesĀ¶
Find your database values, in the Cloud SQL Instances page.
# @title Set Your Values Here { display-mode: "form" }
REGION = "us-central1" # @param {type: "string"}
INSTANCE = "my-primary" # @param {type: "string"}
DATABASE = "my-database" # @param {type: "string"}
TABLE_NAME = "reader_table" # @param {type: "string"}
USER = "postgres" # @param {type: "string"}
PASSWORD = "my-password" # @param {type: "string"}
PostgresEngine Connection PoolĀ¶
One of the requirements and arguments to establish Cloud SQL as a reader is a PostgresEngine
object. The PostgresEngine
configures a connection pool to your Cloud SQL database, enabling successful connections from your application and following industry best practices.
To create a PostgresEngine
using PostgresEngine.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.
By default, IAM database authentication will be used as the method of database authentication. This library uses the IAM principal belonging to the Application Default Credentials (ADC) sourced from the envionment.
For more informatin on IAM database authentication please see:
Optionally, built-in database authentication using a username and password to access the Cloud SQL database can also be used. Just provide the optional user
and password
arguments to PostgresEngine.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.
Note: This tutorial demonstrates the async interface. All async methods have corresponding sync methods.
from llama_index_cloud_sql_pg import PostgresEngine
engine = await PostgresEngine.afrom_instance(
project_id=PROJECT_ID,
region=REGION,
instance=INSTANCE,
database=DATABASE,
user=USER,
password=PASSWORD,
)
Create PostgresReaderĀ¶
When creating an PostgresReader
for fetching data from Cloud SQL Postgres, you have two main options to specify the data you want to load:
- using the table_name argument - When you specify the table_name argument, you're telling the reader to fetch all the data from the given table.
- using the query argument - When you specify the query argument, you can provide a custom SQL query to fetch the data. This allows you to have full control over the SQL query, including selecting specific columns, applying filters, sorting, joining tables, etc.
Load Documents using the table_name
argumentĀ¶
Load Documents via default tableĀ¶
The reader returns a list of Documents from the table using the first column as text and all other columns as metadata. The default table will have the first column as text and the second column as metadata (JSON). Each row becomes a document.
from llama_index_cloud_sql_pg import PostgresReader
# Creating a basic PostgresReader object
reader = await PostgresReader.create(
engine,
table_name=TABLE_NAME,
# schema_name=SCHEMA_NAME,
)
Load documents via custom table/metadata or custom page content columnsĀ¶
reader = await PostgresReader.create(
engine,
table_name=TABLE_NAME,
# schema_name=SCHEMA_NAME,
content_columns=["product_name"], # Optional
metadata_columns=["id"], # Optional
)
Load Documents using a SQL queryĀ¶
The query parameter allows users to specify a custom SQL query which can include filters to load specific documents from a database.
table_name = "products"
content_columns = ["product_name", "description"]
metadata_columns = ["id", "content"]
reader = PostgresReader.create(
engine=engine,
query=f"SELECT * FROM {table_name};",
content_columns=content_columns,
metadata_columns=metadata_columns,
)
Note: If the content_columns
and metadata_columns
are not specified, the reader will automatically treat the first returned column as the documentās text
and all subsequent columns as metadata
.
Set page content formatĀ¶
The reader returns a list of Documents, with one document per row, with page content in specified string format, i.e. text (space separated concatenation), JSON, YAML, CSV, etc. JSON and YAML formats include headers, while text and CSV do not include field headers.
reader = await PostgresReader.create(
engine,
table_name=TABLE_NAME,
# schema_name=SCHEMA_NAME,
content_columns=["product_name", "description"],
format="YAML",
)
Load the documentsĀ¶
You can choose to load the documents in two ways:
- Load all the data at once
- Lazy load data
Load data all at onceĀ¶
docs = await reader.aload_data()
print(docs)
Lazy Load the dataĀ¶
docs_iterable = reader.alazy_load_data()
docs = []
async for doc in docs_iterable:
docs.append(doc)
print(docs)