Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0039601 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] A. Platform | major | random | 2018-11-07 15:03 | 2018-12-11 20:22 | |||
Reporter | alostale | View Status | public | |||||
Assigned To | alostale | |||||||
Priority | immediate | Resolution | fixed | Fixed in Version | 3.0PR19Q1 | |||
Status | closed | Fix in branch | Fixed in SCM revision | e834e74a3c1a | ||||
Projection | none | ETA | none | Target Version | ||||
OS | Any | Database | PostgreSQL | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | SCM revision | |||||||
Merge Request Status | ||||||||
Review Assigned To | caristu | |||||||
OBNetwork customer | No | |||||||
Web browser | ||||||||
Modules | Core | |||||||
Support ticket | ||||||||
Regression level | Production - Confirmed Stable | |||||||
Regression date | 2016-08-10 | |||||||
Regression introduced in release | 3.0PR16Q4 | |||||||
Regression introduced by commit | https://code.openbravo.com/erp/devel/pi/rev/88ea14de1a84e176f457750118a6d4823588d7d2 [^] | |||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0039601: can't execute DB updates after killing a connection | |||||||
Description | With Audit trail active, killing DB connections can cause random failures while trying to update information. Technically the problem is: 1. Pool keeps PooledConnections each of them associated with a physical DB connection 2. When one of those physical DB connections is killed and a PooledConnection is going to be used (borrowed from the pool), Tomcat transparently creates a new physical connection and associates it with the existing PooledConnection instance. 3. Openbravo, in order not to recreate ad_context_info temporary table on each borrow, does it when a new connection is created and marks it as already initialized. This flag is set in the PooledConnection, incorrectly assuming a PooledConnection instance is always tight to the same Connection instance 4. Because of 2nd step, a new uninitialized Connection is associated with an existing PooledConnection marked as initialized, so queries expecting the temporary table to be present will fail. This situation remains until the connection is finally returned to the pool. | |||||||
Steps To Reproduce | In a Professional instance: 0. Configure DB pool to a fixed 5 connections: db.pool.initialSize=5 db.pool.minIdle=5 db.pool.maxActive=5 1. As System Admin open Table window 2. Select any table and mark it as fully audited 3. Restart Tomcat 4. Kill the 5 connections that are in pool: in psql execute select pg_terminate_backend(pid), pid from pg_stat_activity where application_name ='openbravo'; 5. Log in 6. Open Process Request window 7. Create a new record and save -> Saving failed. ERROR: relation "ad_context_info" does not exist | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
![]() |
||||||||||||||||||||||
|
![]() |
|
(0107798) hgbot (developer) 2018-11-08 11:09 |
Repository: erp/devel/pi Changeset: e834e74a3c1ab469e8513de70348c59db1d2c18e Author: Asier Lostalé <asier.lostale <at> openbravo.com> Date: Thu Nov 08 10:19:51 2018 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/e834e74a3c1ab469e8513de70348c59db1d2c18e [^] fixed bug 39601: can't execute DB updates after killing a connection Audit Trail infrastructure (ad_context_info in PG) is initialized each time a new connection is created. We incorrectly assumed a PooledConnection is always associated with a single Connection instance, which is not true in case Connection gets corrupted or killed, in this case Tomcat pool transparently re-associates a new connection with existent PooledConnection. We are now caching in PooledConnection actual Connection to detect this case so it can be initialized again. --- M modules/org.openbravo.apachejdbcconnectionpool/src/org/openbravo/apachejdbcconnectionpool/ConnectionInitializerInterceptor.java --- |
(0107799) hgbot (developer) 2018-11-08 11:09 |
Repository: erp/devel/pi Changeset: 2ef2c5233cab721eb5a786bfcd49bc054d05f59b Author: Asier Lostalé <asier.lostale <at> openbravo.com> Date: Thu Nov 08 10:47:32 2018 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/2ef2c5233cab721eb5a786bfcd49bc054d05f59b [^] related with bug 39601: minor code cleanup --- M modules/org.openbravo.apachejdbcconnectionpool/src/org/openbravo/apachejdbcconnectionpool/ConnectionInitializerInterceptor.java --- |
(0107800) hgbot (developer) 2018-11-08 11:09 |
Repository: erp/devel/pi Changeset: f55cbe0219f90db361464237f1c296ab2b82aa76 Author: Asier Lostalé <asier.lostale <at> openbravo.com> Date: Thu Nov 08 10:57:00 2018 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/f55cbe0219f90db361464237f1c296ab2b82aa76 [^] related with bug 39601: let it fail if ad_context info couldn't be created --- M src-core/src/org/openbravo/database/SessionInfo.java --- |
(0107801) hgbot (developer) 2018-11-08 11:09 |
Repository: erp/devel/pi Changeset: 847353facd72c92a1936a239c428ce4964633f55 Author: Asier Lostalé <asier.lostale <at> openbravo.com> Date: Thu Nov 08 10:59:02 2018 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/847353facd72c92a1936a239c428ce4964633f55 [^] related with bug 39601: minor code cleanup --- M src-core/src/org/openbravo/database/SessionInfo.java --- |
(0107876) caristu (viewer) 2018-11-13 10:49 |
Code reviewed + tested OK. |
(0108455) hudsonbot (viewer) 2018-12-11 20:22 |
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/470e3cd384c5 [^] Maturity status: Test |
(0108456) hudsonbot (viewer) 2018-12-11 20:22 |
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/470e3cd384c5 [^] Maturity status: Test |
(0108457) hudsonbot (viewer) 2018-12-11 20:22 |
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/470e3cd384c5 [^] Maturity status: Test |
(0108458) hudsonbot (viewer) 2018-12-11 20:22 |
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/470e3cd384c5 [^] Maturity status: Test |
![]() |
|||
Date Modified | Username | Field | Change |
2018-11-07 15:03 | alostale | New Issue | |
2018-11-07 15:03 | alostale | Assigned To | => alostale |
2018-11-07 15:03 | alostale | OBNetwork customer | => No |
2018-11-07 15:03 | alostale | Modules | => Core |
2018-11-07 15:03 | alostale | Triggers an Emergency Pack | => No |
2018-11-07 15:05 | alostale | Relationship added | caused by 0033441 |
2018-11-07 15:06 | alostale | Review Assigned To | => caristu |
2018-11-07 15:06 | alostale | Regression level | => Production - Confirmed Stable |
2018-11-07 15:06 | alostale | Regression introduced in release | => 3.0PR16Q4 |
2018-11-07 15:07 | alostale | Regression date | => 2016-08-10 |
2018-11-07 15:07 | alostale | Regression introduced by commit | => https://code.openbravo.com/erp/devel/pi/rev/88ea14de1a84e176f457750118a6d4823588d7d2 [^] |
2018-11-07 15:08 | alostale | Steps to Reproduce Updated | View Revisions |
2018-11-07 15:09 | alostale | Status | new => scheduled |
2018-11-07 15:10 | alostale | Steps to Reproduce Updated | View Revisions |
2018-11-07 16:46 | alostale | Summary | can't update information after killing a connection => can't execute DB updates after killing a connection |
2018-11-07 18:57 | rafademiguel | Issue Monitored: rafademiguel | |
2018-11-08 11:09 | hgbot | Checkin | |
2018-11-08 11:09 | hgbot | Note Added: 0107798 | |
2018-11-08 11:09 | hgbot | Status | scheduled => resolved |
2018-11-08 11:09 | hgbot | Resolution | open => fixed |
2018-11-08 11:09 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/e834e74a3c1ab469e8513de70348c59db1d2c18e [^] |
2018-11-08 11:09 | hgbot | Checkin | |
2018-11-08 11:09 | hgbot | Note Added: 0107799 | |
2018-11-08 11:09 | hgbot | Checkin | |
2018-11-08 11:09 | hgbot | Note Added: 0107800 | |
2018-11-08 11:09 | hgbot | Checkin | |
2018-11-08 11:09 | hgbot | Note Added: 0107801 | |
2018-11-13 10:49 | caristu | Note Added: 0107876 | |
2018-11-13 10:49 | caristu | Status | resolved => closed |
2018-11-13 10:49 | caristu | Fixed in Version | => 3.0PR19Q1 |
2018-12-11 20:22 | hudsonbot | Checkin | |
2018-12-11 20:22 | hudsonbot | Note Added: 0108455 | |
2018-12-11 20:22 | hudsonbot | Checkin | |
2018-12-11 20:22 | hudsonbot | Note Added: 0108456 | |
2018-12-11 20:22 | hudsonbot | Checkin | |
2018-12-11 20:22 | hudsonbot | Note Added: 0108457 | |
2018-12-11 20:22 | hudsonbot | Checkin | |
2018-12-11 20:22 | hudsonbot | Note Added: 0108458 |
Copyright © 2000 - 2009 MantisBT Group |