Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Rakeshm
Partner - Contributor
Partner - Contributor

Issue related to QMC Reload

In QMC some of the application going to failed list if  we check the log of particular failed application it showing executed successfully and also if we run the application manually it will run without any errors so can anyone suggest me in this issue 

2 Replies
Anil_Babu_Samineni

This require some logs, I would recommend to contact suport portal If you are account partner with Qlik.

Edited on 9-Nov:

Can you please run this (Safe to run since this is SQL statement) and confirm if you can see any records in QSR from DB in Qlik.

SELECT "ID", "Value", "App_ID" FROM (SELECT "ID", "Value", "App_ID" , ROW_NUMBER() OVER (PARTITION BY "Value", "App_ID" ORDER BY "App_ID" DESC, "ID") rn FROM "CustomPropertyValues") t1 WHERE rn > 1 AND "App_ID" IS NOT null;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
JuanGerardo
Partner - Specialist
Partner - Specialist

 Hi,

The most probable cause is you have no enough space on disk, so the app script is reloaded successfully but when the the search indexes are built, you run out of disk space.

So you get a successfully reloaded app, but a failed task (maybe the opposite, I don't remember).

First step, check the indexes as some apps would need more space for indexes than for data, similar to databases. Not usual in Qlik, but in some cases customers want to keep description fields, and other very large data in the symbol tables, thus using more memory space for dimensions than for calculating data with measures.

JG