A new system has rocked up at work. To keep the database nice and available across a couple of sites we’ve implemented a SQL Server Availability Group solution
The setup for Availability Groups is well documented and dbatools has plenty of AG commands to help out and keep things in sync across the replicas.
But our issue was coping with all the 3rd party SQL Server stored procedures that weren’t Availability Group aware.
What do I mean by Availability Group aware? When running on an Availability Group, one SQL Server instance ‘owns’ the database at any point in time, but the SQL Agent jobs have to be replicated across all of the instances in the cluster. So you want to make sure that your SQL Server Agent jobs only do work on the instance that currently owns the Availability Group.
Doing this is pretty simple. Below is a piece of T-SQL that checks if the current SQL Server Instance is the primary instance in the AG. If it isn’t then we exit with an error.
IF (SELECT
repstate.role_desc
FROM sys.dm_hadr_availability_replica_states repstate
INNER JOIN sys.availability_groups ag
ON repstate.group_id = ag.group_id AND repstate.is_local = 1) != 'Primary'
BEGIN
RAISERROR ('Not Primary', 2, 1)
END
We exit with an error so we can make use of a SQL Agent Jobsteps ‘OnFailure’ option to quietly exit the job.
Why do we want to quietly exit the job? If we exit with an error, then your monitoring system will hammer you with lots of alerts of regularly failing jobs (you are monitoring your SQL Agent jobs aren’t you?).
As we’re going to be using PowerShell to push this around a lot of jobs, let’s throw it into a variable:
$stepsql = "IF (SELECT
repstate.role_desc
FROM sys.dm_hadr_availability_replica_states repstate
INNER JOIN sys.availability_groups ag
ON repstate.group_id = ag.group_id AND repstate.is_local = 1) != 'Primary'
BEGIN
RAISERROR ('Not Primary', 2, 1)
END"
Next we’re going to grab all the Agent jobs we want to update. Luckily for me, the company prefixed all of their jobs with a unique stamp, so I just used a filter on the job name:
$jobs = Get-DbaAgentJob -SqlInstance MyInstance | Where-Object {$_.Name -like 'SVC_*'}
To keep things easy to read and save line wrapping, I like to use parameter splatting to keep it clean. So we create a hashtable of values like so:
$jobParameter = @{
SqlInstance = 'MyInstance'
StepName = 'AgCheck'
Database = 'Master'
Subsystem = 'TransactSql'
StepId = '1'
OnFailAction = 'QuitWithSuccess'
OnSuccessAction = 'GoToNextStep'
Command = $stepsql
Insert = $True
}
The Insert switch is new as of 15th October 2019 (I’ve just added it via a Pull Request). When it’s specified the command will insert the new step at the stepid specified. So in this example, it’s going to be the first step executed as the steps start from 1
The Insert switch causes the command to increment the StepID of all subsequent Job steps by 1 so it can fit in. It will also increment the OnFailStep and OnSuccessStep values if the target steps have been moved so the flow isn’t affected.
In this example we set our OnFailAction
to be QuitWithSuccess
, as mentioned above this will stop our logging system filling up
All that’s left is to loop through all of the jobs in our collection and use New-DbaAgentJobStep to insert it:
Foreach ($job in $jobs) {
New-DbaAgentJobStep -Job $job @jobParameter
}
To do this across the other Availability Group nodes we have 3 options, we can either modify out hashtable to make use of New-DbaAgentJobStep
‘s ability to target multiple SQL Server instances:
$jobParameter = @{
SqlInstance = ('MyInstance','MyInstance2','MyInstance3')
StepName = 'AgCheck'
Database = 'Master'
Subsystem = 'TransactSql'
StepId = '1'
OnFailAction = 'QuitWithSuccess'
OnSuccessAction = 'GoToNextStep'
Command = $stepsql
Insert = $True
}
Or setup and test on a single now, and then use Sync-DbaAvailabilityGroup
. This will sync a wide range of objects around an Availability Group (jobs, logins, credentials, custom errors, and many more). If you only want to synchronise the SQL Server agent jobs then Copy-DbaAgentJob
will do just that.
Hopefully this little change is going to make a few people’s life easier, it’s certainly done that for me.