Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
4 Відповіді
8027 Переглядів

I need to speed up an installation script which creates a large number of account.account records using the public ORM API. I do this by calling (through erppeek) model('account.account').create for each record, and each account creation takes up to 8 seconds on my not too slow laptop.

I'm not sure where the time is spent. Maybe in the parent_left/parent_right computation.

Аватар
Відмінити
Автор Найкраща відповідь

I dug a bit in the code of create() in orm.py, and found an interesting value to pass in context:

AccountAccount.create(values, context={'defer_parent_store_computation': True})

This seems to defer the computation of parent_left and parent_right until later (and each account creation now only takes ~40ms. Unfortunately, I can't seem to be able to call _parent_store_compute via erppeek because it is not a public method...

So a solution is to use erppeek.get_pool(dbname) to get a Registry instance, tell that instance that the model needs reparenting and call do_parent_store:

registry = erppeek.get_pool('db_name')
registry._init_parent['account.account'] = True
cr = registry.db.cursor()
registry.do_parent_store(cr)
cr.commit()
cr.close()
Аватар
Відмінити
Автор

speedup: 3h20 -> 30s :-)

Thx for the info! The import of accounts its a slow process

Найкраща відповідь

I don't manage to do this.

registry = erppeek.get_pool('db_name')

gives me an error

*** AttributeError: 'module' object has no attribute 'get_pool'

and I don't understand why? Any idea?

Thanks!

Julien

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
лип. 21
3863
1
черв. 19
5580
1
груд. 15
6109
1
бер. 15
9380
0
бер. 15
4634