srdo commented on a change in pull request #3096: STORM-3480 Implement One
Worker Per Executor RAS Option
URL: https://github.com/apache/storm/pull/3096#discussion_r310343985
##########
File path: storm-server/src/main/java/org/apache/storm/scheduler/Cluster.java
##########
@@ -743,9 +746,10 @@ public void freeSlot(WorkerSlot slot) {
assertValidTopologyForModification(assignment.getTopologyId());
assignment.unassignBySlot(slot);
String nodeId = slot.getNodeId();
- assignment.setTotalSharedOffHeapMemory(
- nodeId, calculateSharedOffHeapMemory(nodeId, assignment));
+ assignment.setTotalSharedOffHeapNodeMemory(
+ nodeId, calculateSharedOffHeapNodedMemory(nodeId,
assignment));
nodeToScheduledResourcesCache.computeIfAbsent(nodeId,
MAKE_MAP).put(slot, new NormalizedResourceRequest());
+ nodeToScheduledOffHeapNodeMemoryCache.computeIfAbsent(nodeId,
MAKE_MAP_STRING_DOUBLE);
Review comment:
Is this necessary? We just add the map here, and don't do anything with it.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services