Cloud SQL provides a relational database that lives in Google's cloud that you can use with your App Engine application. To learn more about Cloud SQL, see the Cloud SQL documentation.
For information on pricing and restrictions imposed by both Cloud SQL and App Engine, see Pricing and Access Limits.
Before you begin
-
Create or select a GCP project in the GCP Console
and then ensure that project includes an App Engine application:
Go to App EngineThe Dashboard opens if an App Engine application already exists in your project. Otherwise, you are prompted to choose the region where you want your App Engine application located.
-
Download, install, and initialize Cloud SDK:
Download the SDKIf you already have the
gcloud
tool installed and want to configure it to use a GCP project ID other than the one that you initialized it to, see Managing Cloud SDK Configurations.
Setting up the Cloud SQL instance
- Create a Second Generation Cloud SQL instance.
- If you haven't already, set the password for the default user on your
Cloud SQL instance:
gcloud sql users set-password root % --instance [INSTANCE_NAME] --password [PASSWORD]
- If you don't want to use the default user to connect, create a user.
- Using Cloud SDK, get the Cloud SQL instance connection name
to use as a connection string in your application code:
gcloud sql instances describe [INSTANCE_NAME]
Record the value returned forconnectionName
. You can also find this value in the Instance details page of the Google Cloud Platform Console. For example, in the Cloud SDK output:gcloud sql instances describe instance1 connectionName: project1:us-central1:instance1
-
Install the MySQLdb library locally to test in your development environment:
-
If you use Linux on a distribution with
apt-get
, you can install MySQLdb by running:sudo apt-get install python-mysqldb
- For instructions for other operating systems, see MySQLdb installation instructions at SourceForge.
-
If you use Linux on a distribution with
-
Add the Cloud SQL instance connection name, user, and password to the
environment variables in
app.yaml
. -
Add the MySQLdb client library to your application's
app.yaml
:
Granting access to App Engine
If your App Engine application and Cloud SQL instance are in different Google Cloud Platform projects, you must use a service account to allow your App Engine application access to Cloud SQL.
This service account represents your App Engine application and is created by default when you create a Google Cloud Platform project.
- If your App Engine application is in the same project as your Cloud SQL instance, proceed to Setting up. Otherwise, proceed to the next step.
-
Identify the service account associated with your App Engine
application. The default App Engine service account is named
[PROJECT-ID]@appspot.gserviceaccount.com
.You can verify the App Engine service account on the IAM Permissions page. Ensure that you select the project for your App Engine application, not your Cloud SQL instance.
- Go to the IAM & Admin Projects page in the Google Cloud Platform Console.
- Select the project that contains the Cloud SQL instance.
- Search for the service account name.
-
If the service account is already there, and it has a role that includes the
cloudsql.instances.connect
permission, you can proceed to Setting up.The
Cloud SQL Client
,Cloud SQL Editor
andCloud SQL Admin
roles all provide the necessary permission, as do the legacyEditor
andOwner
project roles. - Otherwise, add the service account by clicking Add.
In the Add members dialog, provide the name of the service account and select a role that include the
cloudsql.instances.connect
permission (any Cloud SQL predefined role other than Viewer will work).Alternatively, you can use the primitive Editor role by selecting Project > Editor, but the Editor role includes permissions across Google Cloud Platform.
If you do not see these roles, your Google Cloud Platform user might not have the
resourcemanager.projects.setIamPolicy
permission. You can check your permissions by going to the IAM page in the Google Cloud Platform Console and searching for your user id.- Click Add.
You should now see the service account listed with the specified role.
Code sample overview
The following code sample connects to Cloud SQL using App Engine native
UNIX sockets, then uses the SHOW VARIABLES
command to display values
of MySQL flags:
Testing in your development environment
To test your app with the local development server:
- To connect to Cloud SQL from your local test environment, install a local Cloud SQL proxy client, using the instructions provided in Quickstart for Using the Proxy for Local Testing.
-
Start the Cloud SQL Proxy, if you didn't already.
Depending on your language and environment, you can start the proxy using either TCP sockets or Unix sockets.
TCP sockets
- Copy your instance connection name from the Instance details page.
- Open a new terminal window and start the proxy.
./cloud_sql_proxy -instances=<INSTANCE_CONNECTION_NAME>=tcp:3306
The specified port must not already be in use, for example, by a local database server.
For more information about proxy options, see Options for authenticating the proxy and Options for specifying instances.
Unix sockets
- If you are using explicit instance specification, copy your instance connection name from the Instance details page.
- Create the directory where the proxy sockets will live:
sudo mkdir /cloudsql; sudo chmod 777 /cloudsql
- Open a new terminal window and start the proxy.
- Using explicit instance specification (recommended for production environments)
with Unix sockets:
./cloud_sql_proxy -dir=/cloudsql -instances=<INSTANCE_CONNECTION_NAME> &
- Using automatic instance discovery:
./cloud_sql_proxy -dir=/cloudsql &
It is best to start the proxy in its own terminal so you can monitor its output without it mixing with the output from other programs.
For more information about proxy options, see Options for authenticating the proxy and Options for specifying instances.
- Using explicit instance specification (recommended for production environments)
with Unix sockets:
- Start the development server from the application directory:
dev_appserver.py .
- The web server is now running and listening for requests on port 8080. To view, visit the following URL:
Something go wrong? See Using the Local Development Server for more information.
Deploying your app
To deploy your app to App Engine, run the gcloud app deploy command:
gcloud app deploy
For details about deploying to App Engine, see Deploying a Python App.
That's it! To launch your
browser and view the app at
http://[YOUR_PROJECT_ID].appspot.com
,
run the following command:
gcloud app browse