Upgrading our Test lab from SQL 2016 to 2017 CTP with Always On Availability Groups

hourglass-972324_1280

At SQLUndercover we decided it would be a good idea to not only upgrade our test lab but to treat it as if it were a live system carrying out an in place upgrade with minimal downtime, here’s how we did it:

Here is our very basic setup for this scenario, we have two availability groups ‘AG1’ and ‘AG2’, for the purposes of this blog post we will focus our attention on just AG1.

2017-06-30 17_29_24-ws-adrianb - Remote Desktop Connection

As you can see we have two SQL replicas ‘SQL01’ and ‘SQL02’, we will be starting this scenario with SQL01 acting as the primary replica, so let’s get started.

Now would be a good time to take any Full backups that may be missing or inaccessible

Before you start be sure to check you have sufficient log drive space for potential log file growth in case the SQL Server installations take longer than expected.

Don’t have an easy way to check for the last FULL Backups for each database? a quick query on Msdb should help, something like this should do the trick:


SELECT [Database_name], MAX(Backup_Start_Date)
FROM Msdb..BackupSet
WHERE [Type] = 'D'
GROUP BY [Database_name]

Alternatively if you do not have many databases to check and you are able to pass the database names in as a comma delimited string you could use sp_RestoreScript from our UNDERCOVER TOOLBOX against its will (just don’t tell David) by using it to generate restore statements that will show you the latest FULL backup file taken for each database in the comma delimited list like this:


EXEC sp_RestoreScript
@Databasename = 'SQLUndercover,SomeOtherDB',
@RestoreOptions = 'ToFull'

 

1. Let’s get the secondary replica  (SQL02) switched from Synchronous mode to Asynchronous mode, we need to ensure that this is set so that transactions on the primary can be committed without waiting for confirmation from the secondary replica, later the SQL service on the secondary will be restarted as part of the upgrade and the server itself will be rebooted.

 

2017-06-30 14_40_54-VMAdmin - ws-adrianb - Remote Desktop Connection

 

2. Connect to the Secondary server using which ever method you use to access the machine as if it were a desktop machine , RDP/Radmin/VMWare etc , in our case we are connecting to SQL02 (you may have more than one so this will be the first secondary that you are planning to upgrade). Start the SQL Server 2017 Installer…

Under the menu on the left hand side click ‘Installation’ then choose ‘Upgrade from a previous version of SQL Server’ , click Next.

 

2017-06-30 14_46_26-VMAdmin - ws-adrianb - Remote Desktop Connection

 

3. Select the Edition you wish to install and click next.

 

2017-06-30 14_47_43-VMAdmin - ws-adrianb - Remote Desktop Connection

 

4. Run through the installation until you get to the ‘Select Instance’ step, Select the instance you want to upgrade and click next.

 

2017-06-30 14_49_50-VMAdmin - ws-adrianb - Remote Desktop Connection

 

5. When you reach the ‘Instance Configuration’ step, confirm the details on-screen and click next.

 

2017-06-30 14_51_24-VMAdmin - ws-adrianb - Remote Desktop Connection

 

6. After waiting for a short period of time you should reach the ‘Ready to Upgrade’ step, if by this point you have sweaty palms and want to back out you can but once you click ‘Upgrade’ there’s no turning back so be sure you are 100% happy with the choices you made in the previous steps.

 

2017-06-30 14_52_53-VMAdmin - ws-adrianb - Remote Desktop Connection

 

7. This bit will take a little while… Feeling a bit parched? why not grab yourself a cuppa , you have a little time on your hands.

 

2017-06-30 14_54_09-VMAdmin - ws-adrianb - Remote Desktop Connection

 

8. At this point in the installation the SQL Service will be restarted on the secondary server you are working on, this is where our Asynchronous switch comes into its own.

 

2017-06-30 15_00_11-VMAdmin - ws-adrianb - Remote Desktop Connection

 

9. If you happen to be watching the Availability group Dashboard/s then you will notice that the Replica you are working on will be showing as Critical with Warnings – this is fine we can ignore these as they are planned and will not be affecting the Primary node from a service availability point of view, transactions will be happily committing between the Primary and any other Secondaries you may have,  but for now the queue will be building for this server until it comes back online and back into sync.

 

2017-06-30 15_00_24-VMAdmin - ws-adrianb - Remote Desktop Connection

 

10. Service has been restarted as part of the installation and now the installation has completed, if you are still watching the Availability group dashboard you will notice that things should have re-synced back up again with some lovely looking green ticks (these won’t stay for long unfortunately) , it’s now time to Restart that secondary – Lets bounce the box…

2017-06-30 15_01_39-VMAdmin - ws-adrianb - Remote Desktop Connection2017-06-30 15_01_58-VMAdmin - ws-adrianb - Remote Desktop Connection

 

11. After quivering over the restart button from the start menu, double checking and triple checking I am on the correct server and wiping the sweat from my brow – I take the plunge!

 

2017-06-30 15_02_57-VMAdmin - ws-adrianb - Remote Desktop Connection

 

12. When SQL02 comes back up you will notice that the dashboard will be showing those lovely green ticks again as things are back in Sync, a quick connection to SQL02 from management studio will reveal that the version is now 14.0.600.250.

2017-06-30 15_05_10-VMAdmin - ws-adrianb - Remote Desktop Connection

 

13. Time to set the Synchronization mode back to Synchronous Commit on the Secondary in preparation for Failing the Availability group over to the Secondary Server so that we can upgrade the primary with the least impact on the front end users.

2017-06-30 15_06_30-VMAdmin - ws-adrianb - Remote Desktop Connection2017-06-30 15_07_28-VMAdmin - ws-adrianb - Remote Desktop Connection

 

14. If you have more than one Secondary Replica then you should repeat all of the previous steps and only proceed past this step once everything is in sync and just the Primary upgrade remains.

 

15. Give the Availability group a quick once over to check that it’s completely ‘Synchronized’  and not showing as ‘not Synchronizing’ .

 

2017-06-30 15_08_45-VMAdmin - ws-adrianb - Remote Desktop Connection

 

16. You should now consider taking backups of ALL databases including system databases, the method you use is up to you just be sure that if you are taking Differential or Log backups that the Full is available and that the log chain is in tact.

 

Don’t forget to backup, this is your only lifeline if you need to go back to 2016, once the database/s are upgraded to 2017 all subsequent backups can only be restored using SQL Server 2017.

 

17. once you are happy that you have contingency in place in the form of backups then you should feel confident in proceeding with the failover.

 

Be sure to check you Log drive space as there is a chance Logs could grow if the installation hangs or takes a long time if Logs are reaching their space allocation on busy databases.

 

You are about to witness Database states that you may have never seen before 🙂

 

2017-06-30 15_05_58-VMAdmin - ws-adrianb - Remote Desktop Connection

 

18. A quick sanity check here to be absolutely certain that there will be no data loss…

 

2017-06-30 15_12_10-VMAdmin - ws-adrianb - Remote Desktop Connection2017-06-30 15_12_52-VMAdmin - ws-adrianb - Remote Desktop Connection

 

19. There’s a new primary in town! SQL02…

20. For those of you who are a little squeamish look away now!

 

2017-06-30 15_14_43-VMAdmin - ws-adrianb - Remote Desktop Connection2017-06-30 15_15_23-VMAdmin - ws-adrianb - Remote Desktop Connection

 

What!? In Recovery!?

 

Don’t panic, this is still going as planned as this is totally expected and this is the reason why:

We are now in a situation where we have the Primary server running 2017 but one (for us) or possibly more than one for you running on 2016 , its not possible for the 2016 server to synchronize as its databases have not been upgraded yet, they will therefore be stuck in recovery but we are about to fix that very soon.

 

21. As before connect to the SQL Server and install SQL Server 2017 using the Upgrade option, below is an in progress shot of the Availability group dashboard (top center) , SQL01 with installation in progress at the point where the service has been stopped (Bottom Left) and SQL02 (Bottom Right)

 

2017-06-30 15_27_37-VMAdmin - ws-adrianb - Remote Desktop Connection

 

If this was actually a live system and not just our test lab I would run sp_FailedLogins and Sp_FailedJobs periodically on our new primary (SQL02) whilst the upgrade of SQL01 is in progress and also afterwards too just to be sure that we are on top of our game.

 

22. Once the upgrade is complete on SQL01 and the box restarted you should see the dashboard showing a warning triangle rather than the Red X, but still not in Sync yet…. Don’t panic there is a perfectly good explanation for this…

 

2017-06-30 15_47_44-VMAdmin - ws-adrianb - Remote Desktop Connection

 

Versions are looking good!

2017-06-30 15_49_40-VMAdmin - ws-adrianb - Remote Desktop Connection

 

23. If we expand the Availability Databases tree we have the answer – our Data movement was Paused so until we resume the data movement the Synchronization state will remain as ‘Not Synchronizing’, Lets get this moving…

2017-06-30 15_48_11-VMAdmin - ws-adrianb - Remote Desktop Connection

 

24. A Quick check of the SQL Server Error log on the Old Primary – now secondary (SQL01) shows that the Databases has been successfully upgraded , Nice .. now we are back in business!

 

2017-06-30 15_50_38-VMAdmin - ws-adrianb - Remote Desktop Connection

 

25. Wipe the excess sweat from you palms, breathe a sigh of relief and go make another cuppa, you deserve it but before you do just open the Availability group dashboard so that you can witness those wonderful green ticks….

 

2017-06-30 15_51_26-VMAdmin - ws-adrianb - Remote Desktop Connection

 

26. Lets puts things back to the way they were – we set the synchronization mode back to Synchronous Commit on SQL01.

 

2017-06-30 15_51_48-VMAdmin - ws-adrianb - Remote Desktop Connection

 

And Voila , we are fully upgraded with minimal impact to the end users – just a Failover to this point, of course if we really wanted things to be back to the way they were then we would need to fail things back over again to SQL01. Well just to be sure that everything was completely successful we did this too just to ensure that there were no doubts and this was successful however in a real life situation you may choose to leave this second failover for a maintenance window, of course this sort of work would always have a preference to be carried out during a maintenance window anyway but it’s always nice to see what can be achieved without such luxuries.

Thanks for reading 🙂

 

 

 

9 thoughts on “Upgrading our Test lab from SQL 2016 to 2017 CTP with Always On Availability Groups

Add yours

    1. It all depends on how you want the user experience to be, if you leave the Secondary node in Synchronous commit whilst you conduct the SQL upgrade there will be a point during the installation where the SQL instance is not accessible on the secondary and therefore the primary will wait for the AG session timeout to elapse trying to reach the secondary node – this is the moment where transactions waiting to commit on the secondary will be held up for a short duration on the primary until it has been established that the Secondary node is offline. Once the Secondary node is considered unreachable from the primary, it will no longer wait for synchronous confirmation from the secondary and therefore the transactions can complete in a timely fashion. My suggestion for switching to Async commit is to stop the above from occurring so that there is no disruption – of course you are welcome to use which ever mode you prefer. I also mention switching the sync mode back to Synchronous commit upon upgrade completion.

      Like

  1. Very detailed and easy to follow upgrade steps. My question is whether this process would possible if upgrading from SQL Server 2016 Standard Edition to SQL Server 2016 Enterprise Edition?

    Like

    1. Hi Greg, unfortunately not. For that to work you’d need to span a basic availability group from Standard Edition to an Enterprise Edition server and that can’t be done. It’s a good thought and would be nice if it was possible.

      According to Microsoft (https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/basic-availability-groups-always-on-availability-groups?view=sql-server-ver15)

      Basic availability groups cannot be upgraded to advanced availability groups. The group must be dropped and re-added to a group that contains servers running only SQL Server 2016 Enterprise Edition.

      Basic availability groups are only supported for Standard Edition servers.

      Like

    2. actually thinking some more about this and to add to my previous answer, while the basic AG isn’t supported in Enterprise, database mirroring is. So you could do this in a very similar way using mirroring. Mirror your databases to your secondary, upgrade the edition on the secondary, failover the mirror and upgrade the old primary.

      Like

Leave a comment

Create a website or blog at WordPress.com

Up ↑