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_r310344310
##########
File path: storm-server/src/main/java/org/apache/storm/scheduler/resource/strategies/scheduling/DefaultResourceAwareStrategy.java
##########
@@ -39,6 +39,9 @@
@Override
public SchedulingResult schedule(Cluster cluster, TopologyDetails td) {
+ boolean oneWorkerPerExecutor = (Boolean) td.getConf().getOrDefault(Config.TOPOLOGY_RAS_ONE_WORKER_PER_EXECUTOR,
false);
Review comment:
I don't think you need to set a default here. defaults.yaml should always be loaded, so
there's no risk of the property being null.
----------------------------------------------------------------
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:
users@infra.apache.org
With regards,
Apache Git Services
|