shish
shish

Reputation: 943

MongoDB - Maximum file size using GridFS

I am wondering what is the maximum file size if someone wants to store a file using the GridFS? I can't find any information so any help would be appreciated.

Upvotes: 4

Views: 2682

Answers (1)

Sammaye
Sammaye

Reputation: 43884

Infinity basically, or a more exact number would be how much your working set allows.

The GridFS standard implemented within drivers will split files up into smaller chunks and store them in a fs.chunks collection irrespective of how big the file is.

Upvotes: 8

Related Questions