Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us at Qlik Connect 2026 in Orlando, April 13–15: Register Here!

AMC nothing is displayed when connecting using TAC

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
TalendSolutionExpert
Contributor II
Contributor II

AMC nothing is displayed when connecting using TAC

Last Update:

Feb 9, 2024 1:22:49 PM

Updated By:

Jamie_Gregory

Created date:

Apr 1, 2021 6:10:04 AM

Talend Version6.4 and 7.0

Summary

Unable to display AMC records in TAC
Additional Versions 
ProductDI
ComponentTAC
Problem DescriptionNothing is displayed in AMC - able to access records when using Studio
Root causeThere are too many records in AMC.
Solution or Workaround

Create Index on AMC tables:

create index moment_pid_rootpid_fatherpid_project_job on talend_amc.LOG_logcatcher (moment, pid, root_pid, father_pid, project, job); 
create index moment_pid_fatherpid_rootpid_systempid_project_job on talend_amc.LOG_metercatcher (moment,pid,father_pid,root_pid,system_pid,project,job); 
create index moment_pid_fatherpid_rootpid_systempid_project_job on talend_amc.LOG_statcatcher (moment,pid,father_pid,root_pid,system_pid,project,job);

 

Delete old history:

selected_date = 'date selected from statcatcher table', the message_type in the selected record must be ‘end’

selected_pid = the pid in the selected record

delete from statcatcher where moment <= 'selected_date' 
delete from logcatcher where moment <= 'selected_date' 
delete from flowmetercatcher where moment <= 'selected_date'

To avoid orphaned records, delete records with the selected_pid

delete from statcatcher where pid = 'selected_pid' 
delete from logcatcher where pid = 'selected_pid' 
delete from flowmetercatcher where pid = 'selected_pid'
JIRA ticket number 
Version history
Last update:
‎2024-02-09 01:22 PM
Updated by: