NestJS + prisma optimize
I'm trying to add prisma optimize to project with nest.js framework. As I can see in logs - it initializes, but there is no data recorded
4 Replies
You opted for speed from this bot. Let's conjure up an answer right now!
I see you're having issues with Prisma Optimize in your NestJS application. Based on the knowledge sources, there are a few potential issues with your implementation:
Issue with Extension Order
The main problem might be related to the order of your extensions. According to the Prisma Optimize documentation:
In your code, you're applying the event emitter extension first, then the Optimize extension. Try reversing this order:
Potential Conflict with PrismaClient Extension
There's a known issue with extending PrismaClient in NestJS applications. According to the GitHub issues, when you use
.$extends()
on a PrismaClient instance, it can cause conflicts with other NestJS modules, particularly those that use reflection metadata like EventEmitter.
From this GitHub issue, there's a specific problem with transactions when using the Optimize extension in NestJS. The issue occurs when you try to assign an extended client to a class that extends PrismaClient.
Suggested Solution
Based on one of the more successful approaches from the GitHub issue about extending PrismaClient, try this pattern:
Also, make sure you've enabled the tracing
preview feature in your Prisma schema if you're using Prisma ORM between versions 4.2.0 and 6.1.0:
If you're still having issues, you might need to check if there's a conflict between the EventEmitter module and Prisma Optimize. Some users have reported needing to patch the EventEmitter module to handle Prisma Client extensions properly, as mentioned in this GitHub issue.
Let me know if these suggestions help or if you need further assistance!
🤔 Alright, thanks for letting us know that there's still some help needed. A team member will reply to you shortly.
In the meantime, please let us know any additional info, questions, or which parts of the answer may need clarification.Do you get any errors while trying to use Optimize?
If I understand correctly, you start a recording in Optimize, invoke some queries in your Nest application but those queries are not recorded?
No, there is no any error. Only this message in console.
Yes, you got it correct
