Currently, when a the database its updated (with --all) the mptt tree is rebuild for every module that registers a model. This is unnecessary, as it's only needed to rebuild it one time per model.
I will upload a review that implements it.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
New changeset ac3c495d797f by Sergi Almacellas Abellana in branch 'default':
Only rebuild mptt tree one time per model in a database update
http://hg.tryton.org/trytond/rev/ac3c495d797f
Roundup Robotadded 1 deleted label and removed 1 deleted label
El 28/12/15 a les 14:21, Cédric Krier ha escrit:
> There are many other cases where the rebuild should be trigger from an other module. For example, if there is a change in the left/right name.
Don't see your point: Why a module should change the left or right name?
I will explain a little bit our current scenario.
We have a setup with 31 companies and 2800 accounts per company, which
means 88000 records in the account table. This makes the rebuild process
spend 2 minutes on every run.
Also we have 11 installed modules that override some property of the
account.account module, so this means that trytond is spending 22
minutes (2 minutes for every module) rebuilding the tree of a module
which have already been rebuilded before.
El 28/12/15 a les 14:31, Cédric Krier ha escrit:
> Also the test is wrong for example left/right could be added by a first module and the Many2One by a second.
Don't see the problem, AFAIU with the patch the tree will be rebuilded
correctly, as (Correct me if I'm wrong), the search is not searching for
both fields registered by the module. Only one of them.
I don't care you spend 2 mins to update as far as it does what it must.
Your patch breaks the way it worked.
You prevent to do something like my examples that worked before.
Now we have in trunk a code that doesn't work correctly any more for the cases I gave. I don't care about the "why" such code could exist.
Other case, the module of ir.model.field could be wrong if for example a field was defined in one module then remove, and another one with the same name is added via another module.
No where it is stated that the module value of ir.model.field will always be <I don't even know what to put here>. The only usage is for translation which should be performed on a clean database.
PS: Don't assign me bug, please fix yours yourself.
Ok, so for me the issue is more due to the current design of this rebuild tree.
Most of the time, it doesn't need to rebuild the tree because nothing changed during the register process.
So we need a quick way to detect that the tree is wrong. Maybe if there are left/right with 0 as value.
I think that the best solution is to rebuild the trees at the end of the update process, like done with the _history tables [1], in this case we can store all the models that where registered and rebuild the tree only for the ones that have a tree model fields.
On 2015-12-28 16:12, Sergi Almacellas Abellana wrote:
> I think that the best solution is to rebuild the trees at the end of the update process, like done with the _history tables [1], in this case we can store all the models that where registered and rebuild the tree only for the ones that have a tree model fields.
>
> What do you think?
No because some migration process could rely on the MPTT to be up to
date.
El 28/12/15 a les 16:11, Cédric Krier ha escrit:
> Ok, so for me the issue is more due to the current design of this rebuild tree.
> Most of the time, it doesn't need to rebuild the tree because nothing changed during the register process.
> So we need a quick way to detect that the tree is wrong. Maybe if there are left/right with 0 as value.
Makes sense to me, but i will go for the default value of the field (or
None).
I will try to make a patch, as it not seems so complex.
New changeset b81abbbdb1e7 by Sergi Almacellas Abellana in branch 'default':
Only rebuild mptt tree if needed
http://hg.tryton.org/trytond/rev/b81abbbdb1e7
Roundup Robotadded 1 deleted label and removed 1 deleted label