diff --git a/app/views/help/mapreduce/helpMemory.scala.html b/app/views/help/mapreduce/helpMemory.scala.html
index 611bb7c2b..04aab08e1 100644
--- a/app/views/help/mapreduce/helpMemory.scala.html
+++ b/app/views/help/mapreduce/helpMemory.scala.html
@@ -59,6 +59,8 @@
Suggestions
For example, see if there is any mapper/reducer input data skew (some task processes larger input than others).
+ Also check if you are doing memory intensive operation at reducer side for e.g. count distinct. These operations can be rewritten using Secondary Sort concept (sort the values), which will reduce the memory consumption
+
This is a new heuristic. We are still working on that. Any feedback is welcomed!