Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0033187 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] A. Platform | minor | have not tried | 2016-06-07 20:57 | 2016-06-17 19:38 | |||
Reporter | shuehner | View Status | public | |||||
Assigned To | shuehner | |||||||
Priority | normal | Resolution | fixed | Fixed in Version | 3.0PR16Q3 | |||
Status | closed | Fix in branch | Fixed in SCM revision | 1f5df7e3b8b6 | ||||
Projection | none | ETA | none | Target Version | ||||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | SCM revision | |||||||
Merge Request Status | ||||||||
Review Assigned To | alostale | |||||||
OBNetwork customer | No | |||||||
Web browser | ||||||||
Modules | Core | |||||||
Support ticket | ||||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0033187: OrganizationStructureProvider loads many ADTreeNode DAL objects into memory which could be avoided. | |||||||
Description | The inizialize method loads many ADTreeNode dal objects into memory and temporarily stores those in instances of some internal class OrgNode. Note: the TreeNode references are not kept around but are only temporary. Reviewing usage of that treeNode reference shows that it is only used internally and seems not to be part of the api. Also only 2 property of the AD_TreeNode are used at all - getNode (ad_node_id field) - getReportSet (parent_id). NOTE: That strange name seems to be an error of 'synchronize terminology' associating it with some other functionally unrelated element (by name) and DAL using that for its functions name. However that strange model class function name is part of the API now :( Side-effect of that initialize is having all those ADTreeNode in DAL session which creates some overhead on every single flush later in the session. | |||||||
Steps To Reproduce | - | |||||||
Proposed Solution | Replace treeNode field with 2 individual String fields in the OrgNode helper class and change references to use the new fields instead. Return 2 strings from HQL query instead of TreeNode to not force hibernate to create those objects. | |||||||
Tags | Performance | |||||||
Attached Files | ![]() | |||||||
![]() |
||||||||
|
![]() |
|
(0087075) shuehner (administrator) 2016-06-07 21:16 |
NOTE: Patch is only Proof Of Concept. Essentially replace treeNode field in OrgNode by 2 separate String fields. And then replace all usage. Runs without failing immediately but not more testing done so far. |
(0087184) hgbot (developer) 2016-06-13 08:42 |
Repository: erp/devel/pi Changeset: 1f5df7e3b8b65a69a25ecf3ac13b5c6d83d96a65 Author: Stefan Hühner <stefan.huehner <at> openbravo.com> Date: Fri Jun 10 12:24:45 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/1f5df7e3b8b65a69a25ecf3ac13b5c6d83d96a65 [^] fixed bug 33187: OrganizationStructureProvider loads many ADTreeNode objects OrganizationStructureProvider loads in memory DAL object for each ADTreeNode of the organization tree. This causes initialization to be slower as well as subsequent flushes. Now only ids are loaded instead of loading full DAL node objects, this reduces initialization time and does not affect flushes. --- M src/org/openbravo/dal/security/OrganizationStructureProvider.java --- |
(0087185) hgbot (developer) 2016-06-13 08:42 |
Repository: erp/devel/pi Changeset: 21598578f8819d875bd5c6a859fa878c70608dfb Author: Asier Lostalé <asier.lostale <at> openbravo.com> Date: Fri Jun 10 13:43:44 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/21598578f8819d875bd5c6a859fa878c70608dfb [^] related to bug 33187: rename some mehtods/variables to make code more readable --- M src/org/openbravo/dal/security/OrganizationStructureProvider.java --- |
(0087186) alostale (viewer) 2016-06-13 08:43 |
code reviewed tested: - functionally it does not make any change - flush after order loader does not contain any tree node DAL object |
(0087604) hudsonbot (viewer) 2016-06-17 19:38 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/0dc7be081b1c [^] Maturity status: Test |
(0087605) hudsonbot (viewer) 2016-06-17 19:38 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/0dc7be081b1c [^] Maturity status: Test |
![]() |
|||
Date Modified | Username | Field | Change |
2016-06-07 20:57 | shuehner | New Issue | |
2016-06-07 20:57 | shuehner | Assigned To | => platform |
2016-06-07 20:57 | shuehner | OBNetwork customer | => No |
2016-06-07 20:57 | shuehner | Modules | => Core |
2016-06-07 20:57 | shuehner | Triggers an Emergency Pack | => No |
2016-06-07 20:58 | shuehner | Tag Attached: Performance | |
2016-06-07 21:14 | shuehner | Relationship added | related to 0033186 |
2016-06-07 21:15 | shuehner | File Added: 33187.diff | |
2016-06-07 21:16 | shuehner | Note Added: 0087075 | |
2016-06-13 08:42 | alostale | Assigned To | platform => shuehner |
2016-06-13 08:42 | hgbot | Checkin | |
2016-06-13 08:42 | hgbot | Note Added: 0087184 | |
2016-06-13 08:42 | hgbot | Status | new => resolved |
2016-06-13 08:42 | hgbot | Resolution | open => fixed |
2016-06-13 08:42 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/1f5df7e3b8b65a69a25ecf3ac13b5c6d83d96a65 [^] |
2016-06-13 08:42 | hgbot | Checkin | |
2016-06-13 08:42 | hgbot | Note Added: 0087185 | |
2016-06-13 08:43 | alostale | Review Assigned To | => alostale |
2016-06-13 08:43 | alostale | Note Added: 0087186 | |
2016-06-13 08:43 | alostale | Status | resolved => closed |
2016-06-13 08:43 | alostale | Fixed in Version | => 3.0PR16Q3 |
2016-06-17 19:38 | hudsonbot | Checkin | |
2016-06-17 19:38 | hudsonbot | Note Added: 0087604 | |
2016-06-17 19:38 | hudsonbot | Checkin | |
2016-06-17 19:38 | hudsonbot | Note Added: 0087605 |
Copyright © 2000 - 2009 MantisBT Group |