Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0033187 | Openbravo ERP | A. Platform | public | 2016-06-07 20:57 | 2016-06-17 19:38 |
|
Reporter | shuehner | |
Assigned To | shuehner | |
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR16Q3 | |
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.
|
Additional Information | |
Tags | Performance |
Relationships | related to | defect | 0033186 | | closed | shuehner | OBContext.setReadableOrganizations loads tons of Organization objects into DAL session |
|
Attached Files | 33187.diff (4,874) 2016-06-07 21:15 https://issues.openbravo.com/file_download.php?file_id=9503&type=bug |
|
Issue History |
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 | |
Notes |
|
|
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
|
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
|
2016-06-13 08:42
|
|
|
|
|
code reviewed
tested:
- functionally it does not make any change
- flush after order loader does not contain any tree node DAL object |
|
|
|
|
|
|
|