-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
Jenkins 2.303.2 with OpenJDK 11 on RHEL7
cloudbees-folder-plugin 6.16
bitbucket-branch-source-plugin 2.9.11
We're seeing lots of WARNING log messages such as:
WARNING c.c.h.p.f.c.PeriodicFolderTrigger#run: Queue refused to schedule org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject@37177326[foo/bar/jobname]
We're using bitbucket and multibranch pipelines and what seems to be shared by the jobs in the warning log messages is that they are disabled.
Checking the code this log messages comes from com.cloudbees.hudson.plugins.folder.computed.PeriodicFolderTrigger.run() when scheduling a build returns null. Checking that logic there is a check if the job (or parent) is disabled and the nreturn null, which would support what we're seeing.
I'm thinking that the logic is either wrong or the log messages is wrong. It is not the queue that is refusing to schedule a build but it's the job that's disabled. I would suggest first checking if the job is disabled and in that case log that (at debug or info). If not disabled, try to schedule a build and if that fails log a warning messages.
[JENKINS-67103] "Queue refused to schedule" WARNING log messages for disabled jobs
Component/s | Original: bitbucket-branch-source-plugin [ 21428 ] |
I noticed the same issue for the following configuration
All the jobs/projects/modules have been disabled but the alerts like below still appeared in a log.
It seems to be quite likely that this issue could cause another one that we encountered too. The Jenkins instance mentioned above was prepared for the testing purposes. Actually, it was an upgraded clone of a prod Jenkins instance. Our goal was to put a test instance aside a prod one and test selectively how some jobs build after the upgrade. That was why I disabled all the jobs on the test machine, to not cause any conflict. Unfortunately, as soon as we put the test instance in LAN, some builds unexpectedly started on one of the agent nodes, creating a massive queue. Eventually, we managed to handle that situation. Here is what we observed:
It worth mentioning that as soon as we removed the test instance from LAN, the alerts Queue refused to schedule started showing up in its log again, though all the jobs were remaining disabled.