I have a prisma setup locally connected to a AWS R...
# orm-help
j
I have a prisma setup locally connected to a AWS RDS. I have 50,000 records to insert, why is my speed so slow? I did this locally with local database, it was much quicker.
h
you might wanna share how to set it up locally?
I have a LightSail Database and I am trying to set it up with Prisma, but I got unreachable status without any clear direction or info about the bug
b
I think there are many reasons that make your query slow: indexes, triggers, .... Because your query is very fast on local, so I just assume the problem is not the sql query, it should be optimized by Prisma, so we don't care about it.
j
I’m doing mutations. Have it setup Async. Locally with docker and postgres runs quickly. When running docker locally connected to aws rds it slow.