apps/docs/content/docs.v6/orm/prisma-client/deployment/serverless/deploy-to-aws-lambda.mdx
:::info[Quick summary] This guide explains how to avoid common issues when deploying a project using Prisma ORM to AWS Lambda. :::
<details> <summary>Questions answered in this page</summary>While a deployment framework is not required to deploy to AWS Lambda, this guide covers deploying with:
serverless-webpack or serverless-bundle libraries.:::tip[Use Prisma ORM without Rust binaries]
If Prisma ORM's Rust engine binaries cause large bundle sizes, slow builds, or deployment issues (for example, in serverless or edge environments), you can use it without them using this configuration of your generator block:
generator client {
provider = "prisma-client-js" // or "prisma-client"
engineType = "client"
}
Prisma ORM without Rust binaries has been Generally Available since v6.16.0.
Note that you need to use a driver adapter in this case.
When using this architecture:
@prisma/adapter-pg for PostgreSQL).This setup can simplify deployments in serverless or edge runtimes. Learn more in the docs here.
Curious why we moved away from the Rust engine? Take a look at why we transitioned from Rust binary engines to an all-TypeScript approach for a faster, lighter Prisma ORM in this blog post.
:::
This section covers changes you will need to make to your application, regardless of framework. After following these steps, follow the steps for your framework.
Depending on the version of Node.js, your Prisma schema should contain either rhel-openssl-1.0.x or rhel-openssl-3.0.x in the generator block:
binaryTargets = ["native", "rhel-openssl-1.0.x"]
binaryTargets = ["native", "rhel-openssl-3.0.x"]
This is necessary because the runtimes used in development and deployment differ. Add the binaryTarget to make the compatible Prisma ORM engine file available.
Lambda functions that use arm64 architectures (AWS Graviton2 processor) must use an arm64 precompiled engine file.
In the generator block of your schema.prisma file, add the following:
binaryTargets = ["native", "linux-arm64-openssl-1.0.x"]
While we do not recommend running migrations within AWS Lambda, some applications will require it. In these cases, you can use the PRISMA_CLI_BINARY_TARGETS environment variable to make sure that Prisma CLI commands, including prisma migrate, have access to the correct schema engine.
In the case of AWS lambda, you will have to add the following environment variable:
PRISMA_CLI_BINARY_TARGETS=native,rhel-openssl-1.0.x
:::info
prisma migrate is a command in the prisma package. Normally, this package is installed as a dev dependency. Depending on your setup, you may need to install this package as a dependency instead so that it is included in the bundle or archive that is uploaded to Lambda and executed.
:::
In a Function as a Service (FaaS) environment, each function invocation typically creates a new database connection. Unlike a continuously running Node.js server, these connections aren't maintained between executions. For better performance in serverless environments, implement connection pooling to reuse existing database connections rather than creating new ones for each function call.
You can use Accelerate for connection pooling or Prisma Postgres, which has built-in connection pooling, to solve this issue. For other solutions, see the connection management guide for serverless environments.
AWS SAM does not directly support loading values from a .env file. You will have to use one of AWS's services to store and retrieve these parameters. This guide provides a great overview of your options and how to store and retrieve values in Parameters, SSM, Secrets Manager, and more.
AWS SAM uses esbuild to bundle your TypeScript code. However, the full esbuild API is not exposed and esbuild plugins are not supported. This leads to problems when using Prisma ORM in your application as certain files (like schema.prisma) must be available at runtime.
To get around this, you need to directly reference the needed files in your code to bundle them correctly. In your application, you could add the following lines to your application where Prisma ORM is instantiated.
import schema from "./prisma/schema.prisma";
import x from "./node_modules/.prisma/client/libquery_engine-rhel-openssl-1.0.x.so.node";
if (process.env.NODE_ENV !== "production") {
console.debug(schema, x);
}
.env fileYour functions will need the DATABASE_URL environment variable to access the database. The serverless-dotenv-plugin will allow you to use your .env file in your deployments.
First, make sure that the plugin is installed:
npm install -D serverless-dotenv-plugin
Then, add serverless-dotenv-plugin to your list of plugins in serverless.yml:
plugins:
- serverless-dotenv-plugin
The environment variables in your .env file will now be automatically loaded on package or deployment.
serverless package
Running "serverless" from node_modules
DOTENV: Loading environment variables from .env:
- DATABASE_URL
Packaging deployment-example-sls for stage dev (us-east-1)
.
.
.
To reduce your deployment footprint, you can update your deployment process to only upload the files your application needs. The Serverless configuration file, serverless.yml, below shows a package pattern that includes only the Prisma ORM engine file relevant to the Lambda runtime and excludes the others. This means that when Serverless Framework packages your app for upload, it includes only one engine file. This ensures the packaged archive is as small as possible.
package:
patterns:
- '!node_modules/.prisma/client/libquery_engine-*'
- 'node_modules/.prisma/client/libquery_engine-rhel-*'
- '!node_modules/prisma/libquery_engine-*'
- '!node_modules/@prisma/engines/**'
- '!node_modules/.cache/prisma/**' # only required for Windows
If you are deploying to Lambda functions with ARM64 architecture you should update the Serverless configuration file to package the arm64 engine file, as follows:
package:
patterns:
- '!node_modules/.prisma/client/libquery_engine-*'
- 'node_modules/.prisma/client/libquery_engine-linux-arm64-*' // [!code highlight]
- '!node_modules/prisma/libquery_engine-*'
- '!node_modules/@prisma/engines/**'
If you use serverless-webpack, see Deployment with serverless webpack below.
serverless-webpackIf you use serverless-webpack, you will need additional configuration so that your schema.prisma is properly bundled. You will need to:
schema.prisma with copy-webpack-plugin.prisma generate via custom > webpack > packagerOptions > scripts in your serverless.yml.First, ensure the following webpack dependencies are installed:
npm install --save-dev webpack webpack-node-externals copy-webpack-plugin serverless-webpack
webpack.config.jsIn your webpack.config.js, make sure that you set externals to nodeExternals() like the following:
const nodeExternals = require("webpack-node-externals");
module.exports = {
// ... other configuration
externals: [nodeExternals()], // [!code highlight]
// ... other configuration
};
Update the plugins property in your webpack.config.js file to include the copy-webpack-plugin:
const nodeExternals = require("webpack-node-externals");
const CopyPlugin = require("copy-webpack-plugin"); // [!code highlight]
module.exports = {
// ... other configuration
externals: [nodeExternals()],
plugins: [
// [!code highlight]
new CopyPlugin({
// [!code highlight]
patterns: [
// [!code highlight]
{ from: "./node_modules/.prisma/client/schema.prisma", to: "./" }, // you may need to change `to` here. // [!code highlight]
], // [!code highlight]
}), // [!code highlight]
], // [!code highlight]
// ... other configuration
};
This plugin will allow you to copy your schema.prisma file into your bundled code. Prisma ORM requires that your schema.prisma be present in order make sure that queries are encoded and decoded according to your schema. In most cases, bundlers will not include this file by default and will cause your application to fail to run.
:::info
Depending on how your application is bundled, you may need to copy the schema to a location other than ./. Use the serverless package command to package your code locally so you can review where your schema should be put.
:::
Refer to the Serverless Webpack documentation for additional configuration.
serverless.ymlIn your serverless.yml file, make sure that the custom > webpack block has prisma generate under packagerOptions > scripts as follows:
custom:
webpack:
packagerOptions:
scripts:
- prisma generate
This will ensure that, after webpack bundles your code, the Prisma Client is generated according to your schema. Without this step, your app will fail to run.
Lastly, you will want to exclude Prisma ORM query engines that do not match the AWS Lambda runtime. Update your serverless.yml by adding the following script that makes sure only the required query engine, rhel-openssl-1.0.x, is included in the final packaged archive.
custom:
webpack:
packagerOptions:
scripts:
- prisma generate
-- find . -name "libquery_engine-*" -not -name "libquery_engine-rhel-openssl-*" | xargs rm # [!code ++]
If you are deploying to Lambda functions with ARM64 architecture you should update the find command to the following:
custom:
webpack:
packagerOptions:
scripts:
- prisma generate
-- find . -name "libquery_engine-*" -not -name "libquery_engine-arm64-openssl-*" | xargs rm # [!code ++]
You can now re-package and re-deploy your application. To do so, run serverless deploy. Webpack output will show the schema being moved with copy-webpack-plugin:
serverless package
Running "serverless" from node_modules
DOTENV: Loading environment variables from .env:
- DATABASE_URL
Packaging deployment-example-sls for stage dev (us-east-1)
asset handlers/posts.js 713 bytes [emitted] [minimized] (name: handlers/posts)
asset schema.prisma 293 bytes [emitted] [from: node_modules/.prisma/client/schema.prisma] [copied]
./handlers/posts.ts 745 bytes [built] [code generated]
external "@prisma/client" 42 bytes [built] [code generated]
webpack 5.88.2 compiled successfully in 685 ms
Package lock found - Using locked versions
Packing external modules: @prisma/client@^5.1.1
✔ Service packaged (5s)
While SST supports .env files, it is not recommended. SST recommends using Config to access these environment variables in a secure way.
The SST guide available here is a step-by-step guide to get started with Config. Assuming you have created a new secret called DATABASE_URL and have bound that secret to your app, you can set up PrismaClient with the following:
import { PrismaClient } from "./generated/client";
import { Config } from "sst/node/config";
const globalForPrisma = global as unknown as { prisma: PrismaClient };
export const prisma =
globalForPrisma.prisma ||
new PrismaClient({
datasourceUrl: Config.DATABASE_URL,
});
if (process.env.NODE_ENV !== "production") globalForPrisma.prisma = prisma;
export default prisma;