odoo/upgrade-util#462
Created by Hardik Prajapati (hpr)
Merged
at 743d75c99e13c26ec4a6e95619a5f6c24d3ee990
Statuses:
- ci/runbot: Test upgrades between stable versions
- ci/upgrade_enterprise: Test upgrades for enterprise master
- label
- odoo-dev:master-improve-performance-to-set-commercial_partner-hpr
- head
- f8a4bd8f4eb1091b16434fe333d39224c639cfdf
- merged
- 1 week ago by Upgrade, Alvaro Fuentes Suarez (afu)
| odoo/upgrade-util | |
|---|---|
| master | #462 |
[IMP] base/0.0.0: speedup the recomputation of commercial partner
- with default chunk_size(256) system estimating more time and also taking so
-
after increase the chunk_size it's performing well and finish faster
-
data:
4449419=> select count(*) from res_partner where commercial_partner_id is null;
count
---------
1252548
(1 row)
- Below are findings with different chunk_size:
- with default(256): didn't wait to finish
2026-07-08 13:59:47,979 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 0.02%] 1/4893 res.partner 256-bucket processed in 0:08:44.330250 (total estimated time: 29 days, 16:45:47.305433)
2026-07-08 14:07:21,784 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 0.04%] 2/4893 res.partner 256-bucket processed in 0:16:18.134600 (total estimated time: 27 days, 16:49:38.830632)
- with 10000: finihsed in 1:30 Hour
2026-07-08 15:34:33,702 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 0.79%] 1/126 res.partner 10000-bucket processed in 0:11:15.066825 (total estimated time: 23:40:30.359470)
2026-07-08 15:36:34,885 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 1.58%] 2/126 res.partner 10000-bucket processed in 0:13:16.250650 (total estimated time: 13:57:45.193470)
- with 20000: finished in 1:20 Hour
2026-07-09 09:14:47,222 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 1.57%] 1/63 res.partner 20000-bucket processed in 0:16:12.657663 (total estimated time: 17:11:27.629554)
2026-07-09 09:16:37,316 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 3.14%] 2/63 res.partner 20000-bucket processed in 0:18:02.752284 (total estimated time: 9:34:06.329269)
- with 50000: finished in 1 Hour
2026-07-09 12:50:24,982 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 3.84%] 1/26 res.partner 50000-bucket processed in 0:17:37.070681 (total estimated time: 7:38:57.684886)
2026-07-09 12:53:46,389 23 INFO hpr_4449419_19.0 odoo.upgrade.util.orm: [ 7.68%] 2/26 res.partner 50000-bucket processed in 0:20:58.476944 (total estimated time: 4:33:12.253680)
- UPG-4449419