Hi Community
Our AEM author environment is very slow, even a simple operation like deleting page or editing a page is taking 10-20 mins
Currently repository size is 113 GB
We have already enabled maintenance activities like revision cleanup, lucene binary cleanup, version purge, workflow purge , data storage garbage collection
Please Help
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @adivj95!
There's very little information provided to give qualified advice. Just in general, a repository size of 113 GB is not considered very large and should not cause performance issues by itself.
There are a couple of things to check as a starting point for your analysis:
These are some very generic starting points for further investigation.
Hope that helps!
Hello @adivj95
Please consider running offline compaction
Revision Cleanup | Adobe Experience Manager
Also, please take a thread and heap dump, before stopping server. It will help you analyze issues in the application code.
check for sessions that might be open for too long.
Also, please refer to https://helpx.adobe.com/experience-manager/kb/AnalyzeSlowAndBlockedProcesses.html
Hi @adivj95!
There's very little information provided to give qualified advice. Just in general, a repository size of 113 GB is not considered very large and should not cause performance issues by itself.
There are a couple of things to check as a starting point for your analysis:
These are some very generic starting points for further investigation.
Hope that helps!
@adivj95 ,
I would start with observing error.log and any other custom logs to see any pattern of error logging into the log files.
This will help if AEM Author is trying to do some operation which is failing again and again and the system is stuck in that loop.
Definitely take thread and heap dumps to analyze any blocked or memory consuming threads.
- Take a look the replication and other queues if they are blocked or having huge number of scheduled jobs trying to execute.
- If you have access to the machine where you are running this AEM instance, try running "top" command and see the vital of machine itself like memory usage, cpu usage, AEM instance memory and cpu usage with respect to total available CPU cores and Memory GB.
- We can't ignore the network connectivity aspect here. If you can ssh into the machine, try running some simple curl commands to various urls to see the response time.
Hope these suggestions help!