跳至内容
菜单
此问题已终结
2 回复
9529 查看

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
3827
0
8月 18
3500
0
8月 17
3503
0
2月 25
1204
0
12月 24
1185