Skip to main content
This tutorial shows you how to create an AWS Lambda function that communicates with a CockroachDB Standard cluster.

Before you begin

Before starting the tutorial, do the following:
  1. Create a CockroachDB Cloud account.
  2. Create an AWS account.
  3. Create an AWS user with administrator permissions.
  4. Install the AWS CLI.

Step 1. Create a CockroachDB Standard cluster

  1. . If this is your first CockroachDB Cloud organization, it will be credited with $400 in to get you started.
  2. On the Get Started page, click Create cluster.
  3. On the Select a plan page, select Standard.
  4. On the Cloud & Regions page, select a cloud provider (GCP or AWS).
  5. In the Regions section, select a region for the cluster. Refer to for the regions where CockroachDB Standard clusters can be deployed. To create a multi-region cluster, click Add region and select additional regions.
  6. Click Next: Capacity.
  7. On the Capacity page, keep the at the default value of 2 vCPUs. Click Next: Finalize.
  8. On the Finalize page, name your cluster. If an active free trial is listed in the right pane, you will not need to add a payment method, though you will need to do this by the to maintain your organization’s clusters. Click Create cluster. Your cluster will be created in a few seconds and the Create SQL user dialog will display.
After the cluster is created, the Connection info window appears. Click the Connection string tab and copy the connection string to a secure location. You will use this connection string to connect to CockroachDB later in the tutorial.
The connection string is pre-populated with your username, cluster name, and other details, including your password. Your password, in particular, will be provided only once. Save it in a secure place (we recommend a password manager) to connect to your cluster in the future. If you forget your password, you can reset it by going to the SQL Users page for the cluster, found at https://cockroachlabs.cloud/cluster/<CLUSTER ID>/users.

Step 2. Get the sample code

Open a terminal window and clone the sample code’s GitHub repo:
This repo includes samples for Node.js and Python Lambda runtimes.
The Node.js function code is available under the examples-aws-lambda/node directory:
This function uses the node-postgres modules to connect to CockroachDB.

Step 3. (Optional) Create the deployment package

This step is optional, as you do not need to create a new deployment package to deploy the sample function. The examples-aws-lambda repo includes deployment packages that are ready to deploy.
  1. Navigate to the Node.js function directory:
  2. Install the code dependencies:
  3. Compress the project files to a ZIP file for deployment:
  4. Navigate to the Python function directory:
  5. Download and install the psycopg2-binary Python library to a new directory:
To run on Amazon Linux distributions, pscyopg2 dependencies must be compiled for Linux.
  1. Compress the project files to a ZIP file for deployment:

Step 4. Configure AWS

  1. Configure the AWS CLI to authenticate with your AWS account:
    Follow the prompts to authenticate as a user with administrator privileges. We do not recommend using the root user.
  2. Create an execution role for the Lambda function and attach the AWSLambdaBasicExecutionRole policy to the role:
    The Lambda function needs this role to run.

Step 5. Deploy the function to AWS Lambda

  1. In the deployment package directory, use the AWS CLI to create a Lambda function:
    Where:
To connect to a CockroachDB Standard cluster with Psycopg2, you must provide the client with a valid CA certificate. By default, Pscyopg2 searches for the certificate at ~/.postgresql/root.crt, or in the environment variable PGSSLROOTCERT.
  1. Invoke the function:

See also

You might also be interested in the following pages: