Hi all, In my Map/Reduce script i have a global variable (processedJSONAry) defined which stores the array of JSON values from all the Reduce phased that have been processed.
I use this variable "processedJSONAry" in Summarize phase, but over the time i see the value is getting replaced with newly processed data by the Reduce.
Can someone help me with understanding the issue. Is there any storage limit for the global array defined?
For eg: Initially : processedJSONAry=[{id1,name'a'},{id2,name'b'},{id3,name'c'}......];
after few Reduce runs, the variable is replaced processedJSONAry= [{id26,name'z'}];