Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
9745 Vizualizări

Has anyone else noticed huge performance problems using OpenERP?

For example, when doing a large sales order, or a large manufacturing order, the delay times can be up to FIVE minutes (using amazon server). We have looked "under the hood" into the code and have discovered the overuse of the "browse" record, which essentially does massive DB reads for sometimes one simple field. For example, to retrieve the company ID of the user, the browse record reads 89 fields from the DB in order to retrieve that one simple piece of information! Repeatedly through the code is excessive use of the Browse record. Instead, OpenERP should be doing READS, which retrieve only the target information. Here is an example:

Example, in server/openerp/addons/base/res

Current (Browse)

def _get_image(self, cr, uid, ids, name, args, context=None):
            result = dict.fromkeys(ids, False)
            for obj in self.browse(cr, uid, ids, context=context):
                result[obj.id] = tools.image_get_resized_images(obj.image)
            return result

Optimized (Read)

def _get_image(self, cr, uid, ids, name, args, context=None):
        result = dict.fromkeys(ids, False)
        for obj in self.read(cr, uid, ids, ['image'], context=context):
            result[obj['id']] = tools.image_get_resized_images(obj['image'])
        return result

If you trace the code, you will see the browse function will create a select to read ALL (normal field) from the partner, but function need only one field: image. So in this case, use READ have the best performance, read only the field needed.

So my question is: Why openerp use Browse when Read have better performance ??

Imagine profil
Abandonează
Autor

Nobody from openerp can answer ??

I've configured the system and products such that a manufacturing order will automatically generate dozens of requests for quotations. Sometimes, it takes hours for the RFQs to show up. I don't know if the system has been working all this time or if the time of day is important. We've just started seeing this problem.

Cel mai bun răspuns

Please check if this helps - http://www.serpentcs.com/serpentcs-openerp-odoo-difference-of-read-and-browse-calls

Thanks.

Imagine profil
Abandonează
Cel mai bun răspuns

Serge, Am also facing the performance issue similar to you but in a different perspective. My amazon server had 8 Gb of free space initially when i started OpenERP. It was working fair enough. But after a month server started responding slow and at a point it was completely full. Now i have extended the server space yet till now the server performance for each click takes minimum 10 seconds to load, which is very ambiguos. Is that related to that Browse funtion which needs to be altered ? or clearing the server log files will solve it ? Some expert answers required asap as we r in middle.

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
ian. 21
2120
0
mar. 15
3624
1
iul. 25
3328
1
aug. 24
1939
0
iun. 24
1623