RaphaelEtim
RaphaelEtim
PPrisma
Created by Mohammad Orabi 🇱🇧 on 11/22/2024 in #help-and-questions
TypedSql generating wrong types from the query
Hi @gogo te palobo Please add a comment to the existing issue.
7 replies
PPrisma
Created by Sebosss on 2/11/2025 in #help-and-questions
Timed out fetching a new connection from the connection pool
@Sebosss From the logs, you shared, i can see idle in transaction state which typically happens when a transaction is started but not completed. This can occur if a query or transaction is initiated but not properly closed or committed. Can you incrementally increase the connection_limit to see if it helps? You may also try changing the pool_timeout to say 0 or a higher number to observe as well
15 replies
PPrisma
Created by i_lost_to_loba_kreygasm on 2/13/2025 in #help-and-questions
Can't connect to supabase using prisma
Great to hear you solved it
11 replies
PPrisma
Created by i_lost_to_loba_kreygasm on 2/13/2025 in #help-and-questions
Can't connect to supabase using prisma
Hi @i_lost_to_loba_kreygasm Are you using both the pooled and direct connection? Also, does your schema.prisma file look like?
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
}
11 replies
PPrisma
Created by Sebosss on 2/11/2025 in #help-and-questions
Timed out fetching a new connection from the connection pool
No worries. Let us know if u run into any issues again.
15 replies
PPrisma
Created by monsto on 2/12/2025 in #help-and-questions
Without getting into the workplace philosophy...
You’re welcome
13 replies
PPrisma
Created by deanStealth on 2/12/2025 in #help-and-questions
Filter on url in GCP lots and all my prisma SQL dissapears!!!
Thank you for creating the issue. Our engineering team will take a look.
7 replies
PPrisma
Created by danbord#3379 on 2/12/2025 in #help-and-questions
IDE massive performance downgrade from 6.2.1 (omitApi problem?)
Thanks for adding to that issue. We'll take a look.
10 replies
PPrisma
Created by monsto on 2/12/2025 in #help-and-questions
Without getting into the workplace philosophy...
This comprehensive video should help you get started with absolute zero knowledge.
13 replies
PPrisma
Created by danbord#3379 on 2/12/2025 in #help-and-questions
IDE massive performance downgrade from 6.2.1 (omitApi problem?)
Thank you for sharing. Do you mind creating an issue on github so the engineering team can dig into this further?
10 replies
PPrisma
Created by monsto on 2/12/2025 in #help-and-questions
Without getting into the workplace philosophy...
Are you looking for a hands-on guide, video tutorial, or just an overview of how Prisma works?
13 replies
PPrisma
Created by monsto on 2/12/2025 in #help-and-questions
Without getting into the workplace philosophy...
Did this solve your query?
13 replies
PPrisma
Created by monsto on 2/12/2025 in #help-and-questions
Without getting into the workplace philosophy...
Hi @monsto
13 replies
PPrisma
Created by danbord#3379 on 2/12/2025 in #help-and-questions
IDE massive performance downgrade from 6.2.1 (omitApi problem?)
Hi @danbord#3379 Do you have a reproduction you can share?
If I install 6.2.1 or later my intellisense is agonising after regenerating my schema.
Do you experience this in 6.3.1 as well?
10 replies
PPrisma
Created by deanStealth on 2/12/2025 in #help-and-questions
Filter on url in GCP lots and all my prisma SQL dissapears!!!
Hi @deanStealth Can you please open a feature request for this?
7 replies
PPrisma
Created by Kazaz on 2/12/2025 in #help-and-questions
queryRaw plsql function failed Code: `42601`. Message: `ERROR: syntax error at or near "$1"`
Hi @Kazaz Are you still facing issues with this?
5 replies
PPrisma
Created by Shiki on 2/11/2025 in #help-and-questions
Docker with Prisma / Deno on Mac M1
Can you update your binaryTargets to use OpenSSL 3.x, which is likely what's installed in your container?
binaryTargets = ["linux-arm64-openssl-3.0.x"]
binaryTargets = ["linux-arm64-openssl-3.0.x"]
Remember to regenerate the Prisma Client when the change is done.
4 replies
PPrisma
Created by Shiki on 2/11/2025 in #help-and-questions
Docker with Prisma / Deno on Mac M1
Hi @Shiki In your schema file, you've specified:
binaryTargets = ["linux-arm64-openssl-1.1.x"]
binaryTargets = ["linux-arm64-openssl-1.1.x"]
This tells Prisma to use the OpenSSL 1.1.x version. However, in your Dockerfile, you're installing the latest version of OpenSSL:
RUN apt-get update -y && apt-get install -y --no-install-recommends openssl libssl-dev
RUN apt-get update -y && apt-get install -y --no-install-recommends openssl libssl-dev
This likely installs OpenSSL 3.x on the Debian-based Deno image. The error message is that Prisma can't find libssl.so.1.1, which is the OpenSSL 1.1.x library.
4 replies
PPrisma
Created by Sebosss on 2/11/2025 in #help-and-questions
Timed out fetching a new connection from the connection pool
Also, can you please let us know what version of Prisma you are on?
15 replies
PPrisma
Created by Sebosss on 2/11/2025 in #help-and-questions
Timed out fetching a new connection from the connection pool
Did you follow the guide to set the initial connection_limit initially to 1 and observe if the error appears before tuning the pool timeout?
15 replies