15 Replies
You're in no rush, so we'll let a dev step in. Enjoy your coffee, or drop into
#ask-ai
if you get antsy for a second opinion!Hey 👋
It seems that providing compressors in MongoDB connection string isn't provided at the moment.
https://github.com/prisma/prisma/discussions/25750
I would recommend adding a 👍 to this feature request so that our engineering team can prioritise it.
https://github.com/prisma/prisma/issues/20751
GitHub
Mongodb connection string – compressors · prisma prisma · Discussio...
Question I am trying to use compression settings for MongoDB in my connection string: mongodb://localhost:27018/db?replicaSet=rs0&compressors=zlib,snappy However, when I run Prisma, I encounter...
GitHub
Support MongoDB Connection Options · Issue #20751 · prisma/prisma
Problem I can't pass several options I need to setup for my MongoClient for a secure connection: https://www.mongodb.com/docs/manual/core/csfle/fundamentals/automatic-encryption/#enabling-autom...
Prisma uses https://github.com/prisma/mongo-rust-driver based on https://github.com/mongodb/mongo-rust-driver @Nurul
GitHub
GitHub - prisma/mongo-rust-driver: MongoDB Rust Driver with some ad...
MongoDB Rust Driver with some additional fixes. Contribute to prisma/mongo-rust-driver development by creating an account on GitHub.
GitHub
GitHub - mongodb/mongo-rust-driver: The official MongoDB Rust Driver
The official MongoDB Rust Driver. Contribute to mongodb/mongo-rust-driver development by creating an account on GitHub.
@Nurul how to prioritise? we have issues 😦 we have driver, how to unlock some connection attribute? )
Is this a blocker for you? I haven't seen other users request this particular connection attribute.
@Nurul yes, we have a high load service (critical network traffic, like gigabytes of data transferred from database to applications) and i decided to rewrite it with Prisma 🙂 i think it was a mistake with great dx 😄
it's so critical that the network is down between servers, so this is a very important point for us
I am willing to fix the right place in Prisma, but I don't know how to find information on how to extend or contribute to Prisma. Also in this case – https://github.com/prisma/prisma/discussions/26165
GitHub
How to extend prisma? new Index type (wildcard) for MongoDB? · pris...
Question How to do it? Which files will be changed? Add support for @@wildcard to the schema definition. Add generated commands for prisma db push. Create a patch for local usage (yes, I know how t...
@Nurul (Prisma) Hello! What do you think, it's posible to add compressors to supported list of attributes?
I have asked ORM team internally if there is any specific resource we can point you to that would help you to contribute. I'll get back once I have more information.
@Nurul (Prisma) I truly appreciate your attention to my question and your willingness to assist. I’m grateful for your time and support. ❤️
So the ORM team reported
The version of the driver we use supports compressors, they should only need to enable the corresponding features in Cargo.toml as they’re not enabled by default, as far as I see. Basically they need to add features = ["zlib-compression"] or whatever they need in https://github.com/prisma/prisma-engines/blob/e629b556f63fc40cf9ec431807b0bd913b02a3f5/Cargo.toml#L88. There are zstd-compression, zlib-compression and snappy-compression. By the way, it looks like we only use a fork because we needed some changes that hadn’t been released yet at some point, but there’s no need for this anymore. So if they could also upgrade the driver to the latest version, it would be great.
GitHub
prisma-engines/Cargo.toml at e629b556f63fc40cf9ec431807b0bd913b02a3...
🚂 Engine components of Prisma ORM. Contribute to prisma/prisma-engines development by creating an account on GitHub.
If you can create a PR then it would be great 🙏
I need to learn how to do it, build engines and replace it to test everything
Thank you, I'm on the right way
@Nurul (Prisma) 🔥
@Nurul (Prisma) I did it, but it difficult to test, perhaps you could ask someone to write a simple test for the chain: @prisma/client → engine → mongo-driver https://github.com/prisma/prisma-engines/pull/5225. I tried replacing the packages at installation time and during runtime—specifically, PRISMA_QUERY_ENGINE_BINARY, PRISMA_SCHEMA_ENGINE_BINARY, and PRISMA_FMT_BINARY—but without success.
GitHub
Build software better, together
GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.

@Nurul done, released in prisma 6.5.0 thank you!!!!