P
Prisma2mo ago
Mike

mongodb compressors

How to add compressors to mongodb connection string?
15 Replies
Prisma AI Help
Prisma AI Help2mo ago
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!
Nurul
Nurul2mo ago
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...
Mike
MikeOP2mo ago
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.
Mike
MikeOP2mo ago
@Nurul how to prioritise? we have issues 😦 we have driver, how to unlock some connection attribute? )
Nurul
Nurul2mo ago
Is this a blocker for you? I haven't seen other users request this particular connection attribute.
Mike
MikeOP2mo ago
@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
Mike
MikeOP2mo ago
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...
Mike
MikeOP2mo ago
@Nurul (Prisma) Hello! What do you think, it's posible to add compressors to supported list of attributes?
Nurul
Nurul2mo ago
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.
Mike
MikeOP2mo ago
@Nurul (Prisma) I truly appreciate your attention to my question and your willingness to assist. I’m grateful for your time and support. ❤️
Nurul
Nurul2mo ago
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.
Nurul
Nurul2mo ago
If you can create a PR then it would be great 🙏
Mike
MikeOP2mo ago
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) 🔥
Mike
MikeOP2mo ago
@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.
PRISMA_QUERY_ENGINE_BINARY=../prisma-engines/target/aarch64-apple-darwin/release/query-engine
PRISMA_SCHEMA_ENGINE_BINARY=../prisma-engines/target/aarch64-apple-darwin/release/schema-engine
PRISMA_FMT_BINARY=../prisma-engines/target/aarch64-apple-darwin/release/prisma-fmt
PRISMA_QUERY_ENGINE_BINARY=../prisma-engines/target/aarch64-apple-darwin/release/query-engine
PRISMA_SCHEMA_ENGINE_BINARY=../prisma-engines/target/aarch64-apple-darwin/release/schema-engine
PRISMA_FMT_BINARY=../prisma-engines/target/aarch64-apple-darwin/release/prisma-fmt
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.
From An unknown user
From An unknown user
From An unknown user
Mike
MikeOP4w ago
@Nurul done, released in prisma 6.5.0 thank you!!!!

Did you find this page helpful?