AIP Console - Application Scan - Jobs are getting stuck and Node is consuming a lot of CPU and memory
Purpose (problem description)
The page will help you to resolve the scenario where launching any job in the console makes it to get stuck. The node also consumes a lot of memory and puts higher consumption of CPU in the machine.

Observed in CAST Version
| Release | Yes/No |
|---|---|
| <=8.3.50 | ✅ |
Observed in RDBMS
| RDBMS | Yes/No |
|---|---|
| CSS4 | ✅ |
| CSS3 | ✅ |
| CSS2 | ✅ |
Step by Step scenario
- Launch AIP Console
- Run any job in Console, it will get stuck.
Action Plan
The issue occurs because of duplicated data in the sys_package_history table in management base.
To solve the issue:
- Please run the below queries: which are intended to clean the MBs that have duplicates,
Check that no duplicates remain: the result must be 0 in regard of each management database name
To cleanup of the management schemas that have duplicates
with ctids as ( select ctid from ( select ctid, row_number() over ( partition by revision_date, installer, package_name, revision, revision_type ) as rn from <mngt_schema>.sys_package_history ) t where rn > 1 ) delete from <mngt_schema>.sys_package_history sph using ctids where sph.ctid = ctids.ctid ;
2. Make sure that everything has been cleaned by running the next query.
```java
select '<mngt_schema>', ( ( select count(m.*) from <mngt_schema>.sys_package_history m ) - ( select count(t.*) from (select distinct * from <mngt_schema>.sys_package_history) t ) ) as MB
- If the above steps do not solve your issue contact CAST Technical Support. with the following Relevant input for CAST Technical Support to carry out further investigation.
Relevant input
- CAST AIP Console Logs CAST Management Studio - Information - How to find logs
- Detail of specific steps done
- Any applicable screenshots
Notes/comments
Ticket # 40768