Hi Community,
I'm currently developing an app that uses monday.storage (key-value storage) to manage data structured like this:
{ "348745": [23, 554, 544], "647893": [45, 783, 342, 544]}I've already reviewed the documentation and understand the following limits for the Storage API:
-
Storage limit per key: 6 MB
-
Key length limit: 256 characters
-
Concurrency limit: 12 requests per second (per JWT token)
However, I couldn't find any explicit information regarding:
-
Is there a total storage cap across all keys for a single app?
-
What is the maximum number of keys that can be stored per app/instance?
Could anyone clarify if these limits exist? If my app needs to store a large volume of data, should I consider using Document DB instead? I understand Document DB offers 1 GiB per region with 50,000 reads/day and 20,000 writes/day.
Thanks in advance for your guidance!