https://github.com/coding-to-music/nestjs-prisma-multi-database
console.log('serving http://localhost:3000/blogs using schema2');
console.log('serving http://localhost:3000/users using schema1');
By Sagar Lama
Mar 12 2022
https://towardsdev.com/multiple-database-connections-in-prisma-b252782b2646
https://github.com/sagarPakhrin/prisma-multidatabase-demo
MYSQL_ROOT_PASSWORD=prisma
MYSQL_DATABASE=prisma
MYSQL_USER=prisma
MYSQL_PASSWORD=prisma
DATABASE_URL=mysql://prisma:prisma@localhost:3306/prisma
BLOG_DATABASE_URL=mysql://prisma:prisma@localhost:3306/prisma2
SHADOW_DATABASE_URL=mysql://prisma:prisma@localhost:3306/prisma-shadow
git init
git add .
git remote remove origin
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:coding-to-music/nestjs-prisma-multi-database.git
git push -u origin main
Not deployed on Vercel yet
vercel --prod --confirm
git clone https://github.com/coding-to-music/nestjs-prisma-multi-database.git
cd nestjs-prisma-multi-database
cp .env.example .env
npm i
docker-compose up -d
npm run migrate
npm run schema2:migrate
npm run start:dev
console.log('serving http://localhost:3000/blogs using schema2');
console.log('serving http://localhost:3000/users using schema1');
npm run migrate
Output
> nestjs-prisma-multi-database@0.0.1 migrate
> npx prisma migrate dev
Environment variables loaded from .env
Prisma schema loaded from prisma/schema.prisma
Datasource "db": MySQL database "prisma" at "localhost:3306"
Applying migration `20220311180626_initial_migration`
The following migration(s) have been applied:
migrations/
└─ 20220311180626_initial_migration/
└─ migration.sql
Your database is now in sync with your schema.
✔ Generated Prisma Client (3.14.0 | library) to ./node_modules/@prisma/client in 141ms
npm run schema2:migrate
Output
> nestjs-prisma-multi-database@0.0.1 schema2:migrate
> npx prisma migrate dev --schema ./prisma2/schema.prisma
Environment variables loaded from .env
Prisma schema loaded from prisma2/schema.prisma
Datasource "db": MySQL database "prisma2" at "localhost:3306"
Applying migration `20220312181356_initial_migration`
The following migration(s) have been applied:
migrations/
└─ 20220312181356_initial_migration/
└─ migration.sql
Your database is now in sync with your schema.
✔ Generated Prisma Client (3.14.0 | library) to ./node_modules/@internal/prisma/client in 92ms
npm run start:dev
Output
[Nest] 4549 - 05/22/2022, 8:51:32 AM LOG [NestFactory] Starting Nest application...
[Nest] 4549 - 05/22/2022, 8:51:32 AM LOG [InstanceLoader] AppModule dependencies initialized +58ms
[Nest] 4549 - 05/22/2022, 8:51:32 AM LOG [RoutesResolver] AppController {/}: +9ms
[Nest] 4549 - 05/22/2022, 8:51:32 AM LOG [RouterExplorer] Mapped {/users, GET} route +4ms
[Nest] 4549 - 05/22/2022, 8:51:32 AM LOG [RouterExplorer] Mapped {/blogs, GET} route +0ms
[Nest] 4549 - 05/22/2022, 8:51:33 AM LOG [NestApplication] Nest application successfully started +274ms
http://localhost:3000/users
Output
[]
http://localhost:3000/blogs
Output
[]
By Sagar Lama
Mar 12 2022
4 min read
https://towardsdev.com/multiple-database-connections-in-prisma-b252782b2646
https://github.com/sagarPakhrin/prisma-multidatabase-demo
image taken from https://www.prisma.io/blog/prisma-migrate-dx-primitives
If you come across a situation where you have two databases and need to connect to the two databases with Prisma, here’s how to do it.
TLDR: Talk is cheap, show me the code
https://github.com/sagarPakhrin/prisma-multidatabase-demo
You don’t typically need to use multiple databases. If you’re not sure why you probably don’t need it.
But you could be in a situation where you have an old database that’s maintained by a different API and you’re using a separate database for your new API and you need to use both databases, you can set up Prisma to do so.
The files/folder naming conventions used in the post is not an ideal way, it’s done to keep things simple.
nest new prisma-multidatabase-demo
cd prisma-multidatabase-demo
npm install prisma --save-dev
npx prisma init
Once you run the init command, a Prisma folder with schema.prisma will be generated, and DATABASE_URL with default value will be added to the .env
Your project should look like this.
Create MySQL container (image)
version: '3.8'
services:
mysql:
image: mysql:8
ports:
- '3306:3306'
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
volumes:
- ./tmp:/var/lib/mysql
Add variables to .env
MYSQL_ROOT_PASSWORD=prisma
MYSQL_DATABASE=prisma
MYSQL_USER=prisma
MYSQL_PASSWORD=prisma
DATABASE_URL=mysql://prisma:prisma@localhost:3306/prisma
Prisma needs to have a shadow database for it to be able to run migrations safely so let’s create a shadow database and a second database to demonstrate multiple database connections with Prisma.
CREATE DATABASE IF NOT EXISTS `prisma-shadow`;
GRANT ALL ON `prisma-shadow`._ TO 'prisma'@'%';
CREATE DATABASE IF NOT EXISTS `prisma2`;
GRANT ALL ON `prisma2`._ TO 'prisma'@'%';
This will create two databases, and grant all privileges for our user prisma
Let’s update docker-compose.yml to set db/init.sql as entry point for our MySQL container. In your compose file, replace the previous volumes with
volumes:
- ./tmp:/var/lib/mysql
- ./db:/docker-entrypoint-initdb.d
Run the container with docker-compose up -d
and start the development server with npm run start:dev
#prisma/schema.prisma
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
shadowDatabaseUrl = env("SHADOW_DATABASE_URL")
}
model User {
id Int @id @default(autoincrement())
name String
}
To keep things simple we will only create a User model with id and name. Now let’s add a script to run the migration in our package.json
“migrate”: “npx prisma migrate dev”
And run the command npm run migrate
This will generate a Prisma client inside node_modules/.prisma/client
, generate migration files and create appropriate tables in our prisma database
Note: The node_modules/.prisma/client/schema.prismafile
should be the same as prisma/schema.prisma
npm install @prisma/client
import { INestApplication, Injectable, OnModuleInit } from '@nestjs/common';
import { PrismaClient } from '@prisma/client';
@Injectable()
export class PrismaService extends PrismaClient
implements OnModuleInit {
async onModuleInit() {
await this.$connect();
}
async enableShutdownHooks(app: INestApplication) {
this.$on('beforeExit', async () => {
await app.close();
});
}
}
// app.service.ts
import { Injectable } from '@nestjs/common';
import { User } from '@prisma/client';
import { PrismaService } from './prisma.service';
@Injectable()
export class AppService {
constructor(private readonly prisma: PrismaService) {}
async getUsers(): Promise<User[]> {
return this.prisma.user.findMany();
}
}
// app.controller.ts
import { Controller, Get } from '@nestjs/common';
import { User } from '@prisma/client';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get('/users')
getUsers(): Promise<User[]> {
return this.appService.getUsers();
}
}
// app.module.ts
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { PrismaService } from './prisma.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService, PrismaService],
})
export class AppModule {}
You can create a route to add users and once you do that, you will get the list of the users.
Create a schema.prisma inside a different folder
// prisma2/schema.prisma
generator client {
provider = "prisma-client-js"
output = "../node_modules/@internal/prisma/client"
}
datasource db {
provider = "mysql"
url = env("BLOG_DATABASE_URL")
shadowDatabaseUrl = env("SHADOW_DATABASE_URL")
}
model Blog {
id Int @id @default(autoincrement())
title String
}
For the second connection, the output directory for the client needs to point to a different directory. We will place it inside node_modules/@internal/prisma/client
Let’s add a new command in package.json to generate migrations for the second schema file
"schema2:migrate": "npx prisma migrate dev --schema ./prisma2/schema.prisma"
Add BLOG_DATABASE_URL
to .env file
BLOG_DATABASE_URL=mysql://prisma:prisma@localhost:3306/prisma2
Now when you run npm run schema2:migrate
a new folder @internal/prisma/client
will be generated.
If you have an old database with data in it, you don’t need to generate migrations files. Instead of running migrate dev
, you can generate Prisma client by running
npx prisma generate --schema ./prisma2/schema.prisma
We need to create a separate prisma.service that will connect with the second database. This service will be the same but the PrismaClient will be imported from the newly generated @internal/prisma/client instead of the default@prisma/client
// prisma2.service.ts
import { PrismaClient } from '@internal/prisma/client';
import { INestApplication, Injectable, OnModuleInit } from '@nestjs/common';
@Injectable()
export class PrismaService extends PrismaClient implements OnModuleInit {
async onModuleInit() {
await this.$connect();
}
async enableShutdownHooks(app: INestApplication) {
this.$on('beforeExit', async () => {
await app.close();
});
}
}
Now let’s update the API to list the blogs using the second database connection
// app.service.ts
import { Blog } from '@internal/prisma/client';
import { Injectable } from '@nestjs/common';
import { User } from '@prisma/client';
import { PrismaService } from './prisma.service';
import { PrismaService as PrismaService2 } from './prisma2.service';
@Injectable()
export class AppService {
constructor(
private readonly prisma: PrismaService,
private readonly prisma2: PrismaService2,
) {}
async getUsers(): Promise<User[]> {
return this.prisma.user.findMany();
}
async getBlogs(): Promise<Blog[]> {
return this.prisma2.blog.findMany();
}
}
// app.controller.ts
import { Blog } from '@internal/prisma/client';
import { Controller, Get } from '@nestjs/common';
import { User } from '@prisma/client';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get('/users')
getUsers(): Promise<User[]> {
return this.appService.getUsers();
}
@Get('/blogs')
getBlogs(): Promise<Blog[]> {
return this.appService.getBlogs();
}
}
// app.module.ts
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { PrismaService } from './prisma.service';
import { PrismaService as PrismaService2 } from './prisma2.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService, PrismaService, PrismaService2],
})
export class AppModule {}
And there you have it. You now have connections to both databases with Prisma.
If you’re running CI pipelines, you might come across an issue where @internal/prisma/client is not found. you need to add one more step after installing dependencies for instance in GitHub actions, you can add the following step after npm install, which will generate the @internal/prisma/client
- name: Generate partner-database prisma client
run: npx prisma generate --schema ./prisma2/schema.prisma
You can use multiple databases with Prisma by creating different schema files and generating separate Prisma clients for each database.
If there’s a better way to do this, please leave some comments.