You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@aurora.apache.org by "Bill Farner (JIRA)" <ji...@apache.org> on 2014/05/13 00:28:14 UTC

[jira] [Created] (AURORA-416) Scheduling rate limiter is not used

Bill Farner created AURORA-416:
----------------------------------

             Summary: Scheduling rate limiter is not used
                 Key: AURORA-416
                 URL: https://issues.apache.org/jira/browse/AURORA-416
             Project: Aurora
          Issue Type: Bug
          Components: Scheduler
            Reporter: Bill Farner
            Priority: Critical


{{TaskGroups}} receives a {{RateLimiter}}, but it is currently unused.  This means that scheduling rate is unbounded.

This is a regression introduced in https://git-wip-us.apache.org/repos/asf?p=incubator-aurora.git;a=commit;h=f73e29b3196f13e37d31c8e02dd17628edb548e0

Specifically, this is no longer used:

{noformat}
    final TaskScheduler ratelLimitedScheduler = new TaskScheduler() {
      @Override
      public boolean schedule(String taskId) {
        rateLimiter.acquire();
        return taskScheduler.schedule(taskId);
      }
    };
{noformat}



--
This message was sent by Atlassian JIRA
(v6.2#6252)