Hi, On 12.01.20, 15:40, "jorgeeflorez ." <[email protected]> wrote: > If I use MongoDB as document store will I be able to set as blob store > one of the six available, right?
Any blob store implementation can be configured in combination with the DocumentNodeStore on MongoDB. Though, for production use file or cloud storage based blob stores are recommended. > If the answer to the previous question is yes, if I create two backends > (Oak instances), both using the same type of document and blob store, > and both pointing to the same "location" (folder in a file system, S3 > path, etc). will they work without collisions or conflicts when > reading/storing files? For the blob stores this is generally true. When it comes to NodeStore implementations, only the DocumentNodeStore will also work in a clustered setup. The SegmentNodeStore implementation does support multiple active processes working on the same storage. Regards Marcel
