liuzqt commented on code in PR #47192:
URL: https://github.com/apache/spark/pull/47192#discussion_r1678699679


##########
core/src/main/java/org/apache/spark/memory/TaskMemoryManager.java:
##########
@@ -202,6 +212,14 @@ public long acquireExecutionMemory(long required, 
MemoryConsumer requestingConsu
         logger.debug("Task {} acquired {} for {}", taskAttemptId, 
Utils.bytesToString(got),
           requestingConsumer);
       }
+
+      if (mode == MemoryMode.OFF_HEAP) {
+        peakOffHeapMemory = Math.max(peakOffHeapMemory,
+          memoryManager.getOffHeapExecutionMemoryUsageForTask(taskAttemptId));

Review Comment:
   I noticed that `releaseExecutionMemory` is not locked, so we need to 
synchronize on these counters. But I suppose that would be better than 
synchronization on `MemoryManager` granularity.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to