Carlos
Carlos

Reputation: 51

RethinkDB max file size attachments (BLOB)

I found in documentation that RethinkDB can store Binary Files (BLOBs).

This is great !

I have an ECM application and need to store 50.000.000 of files. ( from 8K until 1GB ).

I need to know what is the max file size in RethinkDB ? Will be some problem with performance ? How RethinkDB will store these files on disk ? Is there any overhead or memory issues ?

Any Help is Appreciate.

Upvotes: 3

Views: 1006

Answers (2)

InternalFX
InternalFX

Reputation: 1485

You can get around the 64Mb limit by using libraries like ReGrid

ReGrid is a method of storing large files inside a RethinkDB database.

It's similar to GridFS but designed for RethinkDB.

Upvotes: 2

Etienne Laurin
Etienne Laurin

Reputation: 7184

According to http://www.rethinkdb.com/limitations/

  • While there is no hard limit on the size of a single document, there is a recommended limit of 16MB for memory performance reasons.
  • The maximum size of a JSON query is 64M.

Upvotes: 1

Related Questions