Ethanlm commented on a change in pull request #3237: STORM-3259: Adds NUMA
awareness to enable worker pinning
URL: https://github.com/apache/storm/pull/3237#discussion_r404851228
##########
File path:
storm-server/src/main/java/org/apache/storm/daemon/supervisor/Container.java
##########
@@ -130,6 +131,10 @@ protected Container(ContainerType type, Map<String,
Object> conf, String supervi
this.ops = ops;
this.conf = conf;
this.supervisorId = supervisorId;
+ String numaId = SupervisorUtils.getNumaIdForPort(port, conf);
+ if (numaId != null) {
+ this.supervisorId += Constants.NUMA_ID_SEPARATOR + numaId;
Review comment:
This should be removed according to the change in BasicContainer.
mkLaunchCommand
----------------------------------------------------------------
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