bipinprasad commented on a change in pull request #3212: [STORM-3587] Allow 
Scheduler futureTask to gracefully exit with higher timeout.
URL: https://github.com/apache/storm/pull/3212#discussion_r385304367
 
 

 ##########
 File path: 
storm-server/src/main/java/org/apache/storm/scheduler/resource/ResourceAwareScheduler.java
 ##########
 @@ -166,7 +166,7 @@ private void scheduleTopology(TopologyDetails td, Cluster 
cluster, final User to
                     Future<SchedulingResult> schedulingFuture = 
backgroundScheduling.submit(
                         () -> finalRasStrategy.schedule(toSchedule, td));
                     try {
-                        result = 
schedulingFuture.get(schedulingTimeoutSeconds, TimeUnit.SECONDS);
+                        result = schedulingFuture.get(schedulingTimeoutSeconds 
+ 1, TimeUnit.SECONDS);
 
 Review comment:
   Should not apply to every timeout. If the scheduled task is a cooperating 
task that is also using the same timeout to determine when to stop, then we 
have this situation where scheduler is interrupting the FutureTask before the 
task is allowed to gracefully exit and return a result.
   
   If the scheduled task is a non-cooperating task (i.e. .not using the 
timeout), then it is fine to use the specified number.
   

----------------------------------------------------------------
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

Reply via email to