BatchPatch Forums Home › Forums › BatchPatch Support Forum › Sequential system execution of job queue
Tagged: ExecutionRow, multi-row
- This topic has 7 replies, 3 voices, and was last updated 4 years, 7 months ago by Jack.Roberts.
-
AuthorPosts
-
October 27, 2017 at 6:08 pm #8926Colleen SchmidtParticipant
Hi, I’m trying out the “Wait for host to be detected online” in preparation for having 4 servers patched in order (server1 will patch, once it’s back online server2 will patch, etc).
My test job is simple:
Get last boot time
Get c: disk space
Reboot (force always)
Wait for host to be detected online
send email notification
The issue that I’m having is that the second test system is starting it’s job before the first system has come back online. Any reason why this is happening?
Obviously this is just a test job since I’m not actually patching the systems. Once the “Wait for host to be detected online” command works as intended, I plan on putting it into the job that I’ve created for patching, which is scheduled to run at a certain time and day.
Thanks.
-Colleen
October 27, 2017 at 7:08 pm #10360dougModeratorColleen – You didn’t mention it, but I assume you are using the ‘Advanced Multi-Row Queue Sequence’ or the ‘Basic Multi-Row Queue Sequence’ right?
From what you have shown me, it looks like the problem is that you have “Wait for host to be detected online” immediately following your “Reboot (force always)” command. So what’s happening is the reboot command is initiated and then a split second later the ‘Wait for host to be detected online’ checks to see if the host is online. In this case your host simply does not have enough time to go offline for the reboot. To rectify the situation you might do something like this instead:
Get last boot time
Get c: disk space
Reboot (force always)
Wait 3 minutes
Wait for host to be detected online
send email notification
OR
Get last boot time
Get c: disk space
Reboot (force always)
Wait for host to go offline and come back online
send email notification
Either one of these should generally work for the most part, but neither is a 100% absolute guarantee.
The potential issue with ‘Wait for 3 minutes’ is that there are times when a host could take longer than 3 minutes to initiate the shutdown sequence before it is rebooted. And so in rare cases you could find that the 3 minutes passes but the host still has not shutdown and rebooted, and so then the ‘Wait for host to be detected online’ will find the host online without it having ever rebooted. You could set the wait time to 5 minutes or 10 minutes (or even just 1 minute) but it’s always a balancing act because you don’t want your process to take forever and you don’t want your process to start the ‘Wait for host to be detected online’ before the host has a chance to go offline. 1 minute would probably be sufficient in most cases, but 3 minutes is probably safer. Or you could do two 1-minute back to back waits to create a 2 minute wait period.
The potential issue with ‘Wait for host to go offline and come back online’ is that BP cannot accurately determine “offline-ness” 100% of the time. It is generally very good at it using the default setting under ‘Tools > Settings > Grid Preferences > Hosts are considered offline after 3 ping timeouts’ but there are cases, particularly with virtual machines, where a host can be rebooted extremely rapidly in under a few seconds. In cases like this the host might go offline and come back online without BP ever officially detecting it offline. What happens in this case is that your queue hangs until the timeout is reached (the timeout value and options are configured in the job queue window under the ‘Special items’). So there is kind of a balancing act to be mindful of. You could minimize the likelihood of this happening by setting the value to ‘Hosts are considered offline after 2 ping timeouts’, but then on the flip side this could create another type of situation where you have a host that is online but there is a network blip of some kind for a few seconds, and then it could trigger BP to think that the host was offline.
I hope this helps! The bottom line is that these options are not 100% infallible. The are designed to help streamline processes, but they have to be used with the understanding that there are edge cases where they might not behave as desired.
-Doug
October 30, 2017 at 12:20 pm #10361Colleen SchmidtParticipantYes, I was using the “Advanced Multi-Row Queue Sequence” option. Thank you for the insight. I’m testing with physical systems, but 2 of the production systems are vms and 2 are physical. So I will have a large difference in reboot time as the vms are lightening fast compared to the physicals.
I have tried it with the two 1 minute delays along with the “Wait for host to go offline and come back online” and it worked perfectly. Thank you!
Do you know if there’s a way that I could schedule this type of job queue? Since they are dependent on each other, I have only discovered the manual way of kicking this type of job queue off, but scheduling it would be very advantageous.
Thanks again for your help!
-Colleen
October 30, 2017 at 7:06 pm #10362dougModeratorYes you can schedule the ‘advanced multi-row queue sequence’ by using that option in the Task Scheduler. You’ll see in the drop-down menu in the Task Scheduler there is an item called ‘Execute advanced multi-row queue sequence’
-Doug
October 31, 2017 at 12:59 pm #10356Colleen SchmidtParticipantWonderful, thanks for your help!
-Colleen
April 1, 2020 at 10:49 am #12292Jack.RobertsParticipantIn order to schedule the ‘advanced multi-row queue sequence’ by using the option in the Task Scheduler, do I select the Sequence ExecutionRow for the scheduled task?
April 1, 2020 at 12:37 pm #12294dougModerator@Jack.Roberts – yes.
April 1, 2020 at 3:56 pm #12300Jack.RobertsParticipantPerfect!
Thanks for the confirmation.
Jack
-
AuthorPosts
- You must be logged in to reply to this topic.