Database over 2GB in MongoDB

Posted by configurator on Stack Overflow See other posts from Stack Overflow or by configurator
Published on 2010-06-07T10:49:04Z Indexed on 2010/06/07 11:52 UTC
Read the original article Hit count: 249

Filed under:
|

We've got a file-based program we want to convert to use a document database, specifically MongoDB. Problem is, MongoDB is limited to 2GB on 32-bit machines (according to http://www.mongodb.org/display/DOCS/FAQ#FAQ-Whatarethe32bitlimitations%3F), and a lot of our users will have over 2GB of data. Is there a way to have MongoDB use more than one file somehow?

I thought perhaps I could implement sharding on a single machine, meaning I'd run more than one mongod on the same machine and they'd somehow communicate. Could that work?

© Stack Overflow or respective owner

Related posts about mongodb

Related posts about large-files