콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
9814 화면

here https://www.odoo.com/forum/Help-1/question/Where-are-document-Attachments-stored-529 is a detailed discussion going on about how to have attached files to be stored in the servers file system and not in the database (as it is being done by default).

Can anyone explain what is the advantage? I assume there might be pros and cons for either method and I hope we can gather some arguments here.

아바타
취소
베스트 답변

Access, performance, and reliability. They are the tradeoffs to each type.

If you store the files in the database, you have to scale up the database to handle ever increasing data, which also increases the server load. If the database crashes it can be a long nightmare to reconstruct/repair due to the data. Load balancing and sychronizing becomes difficult when the data gets large. BUt you have full control over file security, access rights, the files will always be available, development for access to the files is easier, and file access is faster as they can be indexed.

If files are stored in the filesystem (local, drive, NAS, SAS, etc), you may have dropped links/connections/or concurrent access issues and security rights are also more difficult to enforce. Database recovery and maintianance problems become much easier to deal with, and expanding storage space and redundancy for your files is fairly straight forward. It is also easier to load balance and decenteralize your database to different locations.

There are many more nuances to the pros and cons, in the end it relates to how much data will be handled. If you are handling 1/2 million documents+, you probably should not be storing them in the same database as Odoo/OpenERP, they should live in thier own dedicated database with the proper database type, or they should live in a dedicated fileserver.

 

아바타
취소
작성자

thanks Nigel. Great post.

베스트 답변

Hello,

I do store attachments for a module I developped (Drop Box like) on file system to keep a light DB. I just do not forget to backup storage folder with the DB.

아바타
취소

is your module available?

Module is not available yet. I have to rewrite it, and I have not enough time. Could be done this summer

관련 게시물 답글 화면 활동
1
12월 21
4086
0
8월 18
3784
0
8월 17
3760
0
7월 25
1510
0
12월 24
1498