How much data can I store in a single row, and cell of Moralis DB?

Hi, can you please help me with these questions?

  1. What is the max number of columns I can have in a table? and rows?
  2. What is the biggest object I can store in a cell? can I store an object with one million key-value pairs in a cell of a row?
  3. What is the max number of tables I can create per server? (classes in DB)
  4. Is there a cap of data I can store in DB? (like 1TB, 2TB etc)

Thank you

The database is mongo db, the server is based on parse server. You will not able to site more than the disk size allocated for the server (25GB total disk size for a basic server).

But if you self host then you can be limited only by the server that you use.

1 Like

How about the 1) max number of columns, 2) max number of rows, and 3) any restrictions in length on objects?

Edit: I just googled mongo db, 31 columns is the max number and a limit of 1024 bytes for cells. Thank you.