AlloyDB Basics
AlloyDB for PostgreSQL is a managed, PostgreSQL-compatible database service
designed for enterprise-grade performance and availability. It utilizes a
disaggregated compute and storage architecture to scale resources independently.
It also provides AlloyDB AI, a collection of features that includes AI-powered
search (vector, hybrid search, and AI functions), natural language capabilities,
conversational analytics, and inference features like forecasting and model
endpoint management to help developers build AI apps faster.
Quick Start
Before you begin, ensure you have the Google Cloud SDK installed and authenticated (gcloud auth login).
Enable the AlloyDB API:
gcloud services enable alloydb.googleapis.com --quiet
Create a Cluster:
gcloud alloydb clusters create my-cluster --region=us-central1 \
--password=my-password --network=my-vpc --quiet
For production environments, always use IAM database authentication instead
of passwords. If configuration constraint requires passwords, store them
securely using Secret Manager.
Create a Primary Instance:
gcloud alloydb instances create my-primary --cluster=my-cluster \
--region=us-central1 --instance-type=PRIMARY --cpu-count=2 --quiet
Reference Directory
Read these supplementary files when specific context or detailed steps are
required for a task:
- To understand architecture, regional availability, connectivity (Private IP,
Public IP, PSA, PSC), backups, point-in-time recovery, scaling (vertical and
horizontal), or Quota management: read
Core Concepts.
- To manage clusters, instances, scaling, or backups via the CLI: read
CLI Usage.
- To configure AlloyDB remote MCP tools: read
MCP Usage.
- To deploy AlloyDB using Terraform or Kubernetes Config Connector (KCC): read
Infrastructure as Code.
- To configure IAM roles, service usage roles, service agents, database
users/privileges, or network security (public IP authorization, Auth Proxy
sidecar configuration): read IAM & Security.
If you need product information not found in these references, use the
developer_knowledge:search_documents tool (see Developer Knowledge MCP setup for installation instructions).
Directives for Agents
Agents MUST adhere to the following directives when answering queries related to
AlloyDB:
- Provide Multiple Methods: When explaining how to perform administrative
tasks (like backups, scaling, or database user creation), always provide
both the Google Cloud Console steps and the
gcloud CLI commands if both
are available in the reference documents.
- Prioritize Private IP: Recommend Private IP (especially PSC) over Public
IP for connections to ensure traffic remains within the Google Cloud network
and reduces exposure.
- Require Serverless Connectors: Verify and state that Serverless VPC
Access or Direct VPC Egress is required when connecting from Cloud Run to
Private IP.
- Enforce Connectors: Always direct users to configure the AlloyDB Auth
Proxy (running as a sidecar or locally) or language connectors rather than
direct TCP connections.
- Block Open Public Access: If Public IP is configured, warn against and
reject designs with
0.0.0.0/0 in Authorized Networks as this exposes the
database to the entire internet.
- Default to IAM Database Authentication: Suggest IAM database
authentication and the
alloydbiamuser database role instead of static
database passwords.
- Enforce Least Privilege Connection: When explaining connection roles,
explicitly state that
roles/alloydb.client should be used to adhere to the
principle of least privilege, and warn against using broader roles like
roles/alloydb.admin for connections.
- Mention All Creation Methods: When describing how to create IAM database
users, explicitly state that they can be created using the Google Cloud
Console, the
gcloud CLI, and the AlloyDB API.
- Explain Private IP Options: When explaining Private IP connectivity,
always explicitly mention and describe both Private Services Access
(PSA) and Private Service Connect (PSC) as the supported methods,
recommending PSC for new deployments.
- Compare Direct Connections: Explicitly explain that direct connections
(connecting directly to the private IP without connectors) are possible but
discouraged, and compare their security (lack of IAM/mTLS) to secure methods
like the AlloyDB Auth Proxy or language connectors.
- Enforce SQL Alone Warning: When explaining IAM user creation, you MUST
explicitly state that "IAM database users cannot be created using standard
SQL alone" and must be registered via the control plane first.
- Enforce Roles and Privileges Terminology: When explaining database
object access, you MUST explicitly state that "standard PostgreSQL roles and
privileges" apply, using both terms.
- Explain Backup Lifecycle: When explaining backups, always explicitly
state that discrete backups exist independently of the source cluster and
remain active even if the source cluster is deleted.
- Recommend Connectors for Public IP: Explicitly state that secure
connection methods (AlloyDB Auth Proxy, Language Connectors) are
especially recommended for connections over Public IP.
- Mention Autoscaling: When explaining read pool scaling, always
explicitly mention the option of using read pool autoscaling and state
that it is in Preview.
Supporting Links
1---2name: alloydb-basics3description: Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and integrates with AlloyDB Model Context Protocol (MCP) tools for automated database operations. Use when creating, configuring, or administering AlloyDB databases. Do NOT use for general PostgreSQL instances (e.g. Cloud SQL) or other GCP databases.4---56# AlloyDB Basics78AlloyDB for PostgreSQL is a managed, PostgreSQL-compatible database service9designed for enterprise-grade performance and availability. It utilizes a10disaggregated compute and storage architecture to scale resources independently.11It also provides AlloyDB AI, a collection of features that includes AI-powered12search (vector, hybrid search, and AI functions), natural language capabilities,13conversational analytics, and inference features like forecasting and model14endpoint management to help developers build AI apps faster.1516## Quick Start1718Before you begin, ensure you have the [Google Cloud SDK installed](https://cloud.google.com/sdk/docs/install) and authenticated (`gcloud auth login`).19201. **Enable the AlloyDB API:**2122 ```bash23 gcloud services enable alloydb.googleapis.com --quiet24 ```25262. **Create a Cluster:**2728 ```bash29 gcloud alloydb clusters create my-cluster --region=us-central1 \30 --password=my-password --network=my-vpc --quiet31 ```3233 *For production environments, always use IAM database authentication instead34 of passwords. If configuration constraint requires passwords, store them35 securely using Secret Manager.*36373. **Create a Primary Instance:**3839 ```bash40 gcloud alloydb instances create my-primary --cluster=my-cluster \41 --region=us-central1 --instance-type=PRIMARY --cpu-count=2 --quiet42 ```4344## Reference Directory4546Read these supplementary files when specific context or detailed steps are47required for a task:4849- To understand architecture, regional availability, connectivity (Private IP,50 Public IP, PSA, PSC), backups, point-in-time recovery, scaling (vertical and51 horizontal), or Quota management: read52 [Core Concepts](references/core-concepts.md).53- To manage clusters, instances, scaling, or backups via the CLI: read54 [CLI Usage](references/cli-usage.md).55- To configure AlloyDB remote MCP tools: read56 [MCP Usage](references/mcp-usage.md).57- To deploy AlloyDB using Terraform or Kubernetes Config Connector (KCC): read58 [Infrastructure as Code](references/iac-usage.md).59- To configure IAM roles, service usage roles, service agents, database60 users/privileges, or network security (public IP authorization, Auth Proxy61 sidecar configuration): read [IAM & Security](references/iam-security.md).6263*If you need product information not found in these references, use the64`developer_knowledge:search_documents` tool (see [Developer Knowledge MCP setup](https://developers.google.com/knowledge/mcp) for installation instructions).*6566## Directives for Agents6768Agents MUST adhere to the following directives when answering queries related to69AlloyDB:7071- **Provide Multiple Methods:** When explaining how to perform administrative72 tasks (like backups, scaling, or database user creation), always provide73 both the Google Cloud Console steps and the `gcloud` CLI commands if both74 are available in the reference documents.75- **Prioritize Private IP:** Recommend Private IP (especially PSC) over Public76 IP for connections to ensure traffic remains within the Google Cloud network77 and reduces exposure.78- **Require Serverless Connectors:** Verify and state that Serverless VPC79 Access or Direct VPC Egress is required when connecting from Cloud Run to80 Private IP.81- **Enforce Connectors:** Always direct users to configure the AlloyDB Auth82 Proxy (running as a sidecar or locally) or language connectors rather than83 direct TCP connections.84- **Block Open Public Access:** If Public IP is configured, warn against and85 reject designs with `0.0.0.0/0` in Authorized Networks as this exposes the86 database to the entire internet.87- **Default to IAM Database Authentication:** Suggest IAM database88 authentication and the `alloydbiamuser` database role instead of static89 database passwords.90- **Enforce Least Privilege Connection:** When explaining connection roles,91 explicitly state that `roles/alloydb.client` should be used to adhere to the92 principle of least privilege, and warn against using broader roles like93 `roles/alloydb.admin` for connections.94- **Mention All Creation Methods:** When describing how to create IAM database95 users, explicitly state that they can be created using the Google Cloud96 Console, the `gcloud` CLI, and the AlloyDB API.97- **Explain Private IP Options:** When explaining Private IP connectivity,98 always explicitly mention and describe both **Private Services Access99 (PSA)** and **Private Service Connect (PSC)** as the supported methods,100 recommending PSC for new deployments.101- **Compare Direct Connections:** Explicitly explain that direct connections102 (connecting directly to the private IP without connectors) are possible but103 discouraged, and compare their security (lack of IAM/mTLS) to secure methods104 like the AlloyDB Auth Proxy or language connectors.105- **Enforce SQL Alone Warning:** When explaining IAM user creation, you MUST106 explicitly state that "IAM database users cannot be created using standard107 SQL alone" and must be registered via the control plane first.108- **Enforce Roles and Privileges Terminology:** When explaining database109 object access, you MUST explicitly state that "standard PostgreSQL roles and110 privileges" apply, using both terms.111- **Explain Backup Lifecycle:** When explaining backups, always explicitly112 state that discrete backups exist independently of the source cluster and113 remain active even if the source cluster is deleted.114- **Recommend Connectors for Public IP:** Explicitly state that secure115 connection methods (AlloyDB Auth Proxy, Language Connectors) are116 **especially recommended** for connections over Public IP.117- **Mention Autoscaling:** When explaining read pool scaling, always118 explicitly mention the option of using **read pool autoscaling** and state119 that it is in **Preview**.120121## Supporting Links122123- [AlloyDB for PostgreSQL Documentation](https://docs.cloud.google.com/alloydb/docs/overview.md.txt)124- [AlloyDB Auth Proxy GitHub Repository](https://github.com/GoogleCloudPlatform/alloydb-auth-proxy)125- [AlloyDB Java Connector GitHub Repository](https://github.com/GoogleCloudPlatform/alloydb-java-connector)126- [AlloyDB Python Connector GitHub Repository](https://github.com/GoogleCloudPlatform/alloydb-python-connector)127- [AlloyDB Go Connector GitHub Repository](https://github.com/GoogleCloudPlatform/alloydb-go-connector)