Also, FWIW: I already read the docs top to bottom ...
# orm-help
m
Also, FWIW: I already read the docs top to bottom 100% and couldn’t find a mention of multiple prisma servers running a single service. The previous name for “Prisma Server” was “Prisma Cluster”, which seems to suggest that you could have multiple nodes in the cluster, but sadly that appears to not be possible. Basically I need to know if this is possible and/or when you plan to make it possible.
d
Prisma supports multi-tenancy. Here are the relevant docs: https://www.prisma.io/docs/reference/prisma-servers-and-dbs/database-connectors/overview-eiw6ahgiet#multitenancy Albeit, they are very brief and I have taken a note of it. You can change the service name in
prisma.yml
file and run
prisma deploy
to run isolated services on the same server. Endpoint has the following structure:
endpoint: <http://localhost:4466/[<workspace>/]<service>/<stage>>
You can change service, and even have multiple stages for same service. Please let me know if you have further questions.