SQL Server AlwaysOn provides a high-availability and Disaster-recovery. It makes use of existing SQL Server
features, particularly Failover Clustering, and provides new
capabilities such as availability groups.
This has been designed to meet the ever-increasing need for ‘High Availability’ (HA). AlwaysOn does not use entirely new technologies but makes more effective use of existing technologies that are tried and tested. It aims to provide more granular control to achieve High Availability.
Some of these can take time and resources to implement, and may therefore not be meeting your current requirements. This is where SQL Server 2012 AlwaysOn can help, because it provides the benefits of:
Although the WSFC is able to span multiple subnets, a SQL Server which is cluster-aware has not, until now, been able to support a clustered instance of SQL Server across multiple subnets: It has therefore been quite expensive to set up clustering across multiple data centres due to the WSFC requiring shared storage in both data centres as well as the block level SAN replication. This has required a lot of work with your storage vendors to get your setup correct.
What is Active and what is Passive? Your Primary is active because you are accessing it and using the database. If you setup a secondary server to perform any of the tasks listed above in Maintenance Tasks/Reporting, then this secondary is also active and needs to be licensed. Remember; if you access it, it is active. For example: If we were to have one Primary Server (Active), three Secondary Servers (one Active, two Passive) we would be required to license three of the four servers.
Your final solution could look something like this:
This has been designed to meet the ever-increasing need for ‘High Availability’ (HA). AlwaysOn does not use entirely new technologies but makes more effective use of existing technologies that are tried and tested. It aims to provide more granular control to achieve High Availability.
Some of these can take time and resources to implement, and may therefore not be meeting your current requirements. This is where SQL Server 2012 AlwaysOn can help, because it provides the benefits of:
- Using the WSFC APIs to perform failovers. Shared storage is not required
- Utilizing database mirroring for the data transfer over TCP/IP
- providing a combination of Synchronous and Asynchronous mirroring
- providing a logical grouping of similar databases via Availability Groups
- Creating up to four readable secondary replicas
- Allowing backups to be undertaken on a secondary replica
- Performing DBCC statements against a secondary replica
- Employing Built-in Compression & Encryption
Windows Server Failover Clustering (WSFC)
Clustering technology has been around for quite some time, starting
with Microsoft Clustering Services (MCS) back in NT 4.0 days.. The
technology for WSFC is part of the backbone of AlwaysOn. A WSFC cluster
is a group of independent servers that work together to increase the
availability of applications and services. It does this by monitoring
the health of the active node and failing over to a backup node, with
automatic transfer of resource ownership, when problems are detected. Although the WSFC is able to span multiple subnets, a SQL Server which is cluster-aware has not, until now, been able to support a clustered instance of SQL Server across multiple subnets: It has therefore been quite expensive to set up clustering across multiple data centres due to the WSFC requiring shared storage in both data centres as well as the block level SAN replication. This has required a lot of work with your storage vendors to get your setup correct.
Database Mirroring
Database mirroring gives you the ability to fully-synchronise
databases from one instance of SQL Server to another, whether the second
instance is located on the same server, a different server in the same
data centre or to a server in another data centre. It can then switch
roles with the mirrored database on failover. One of the problems with
database mirroring is that it cannot automatically failover a group of
databases that are inter-related. If you have several databases residing
in an instance of SQL Server and one of those databases is failed over
to the secondary location via your database mirroring setup, this
database may be dependent on one or more of the other databases in the
instance as well. In this case, your application may not operate
correctly. Another downside is that the mirrored database is not
accessible. You can get around this by using database snapshots to give
you a ‘read only’ copy.
AlwaysOn Nodes
The nodes that you will use in your SQL Server 2012 AlwaysOn solution
have to be part of a WSFC. The first step we need to undertake in
preparing our AlwaysOn nodes is to add the Failover Cluster Feature to
each node. I’ll go into detail later on in this article.
AlwaysOn Storage
SQL Server versions prior to SQL Server 2012, being setup as
clustered instance on a WSFC require the storage to be presented as
shared storage. This requirement leads to the storage being more
expensive and a little bit more complicated to configure and administer.
With SQL Server 2012 AlwaysOn your solution does not have to utilise
shared storage, but can use SAN, DAS, NAS or Local Disk depending on
your budget and requirements. I suggest working with your storage
providers to come up with the solution you need.
Synchronous & Asynchronous Mirroring
AlwaysOn uses SQL Server’s existing mirroring technology. Synchronous
Mirroring, as its name indicates, requires the transactions to be
written at both sites for the transaction to be completed. Whereas this
can lead to increased latency in your system, it gives you zero data
loss. AlwaysOn will support up to two secondary replicas synchronously
replicated per availability group. Asynchronous Mirroring, on the other
hand, is faster but increases the risk of data loss as it does not have
the requirement to complete the transaction at the secondary site. One
advantage that AlwaysOn has over mirroring is that it allows multiple
usable secondaries of the database. Another advantage is the ability to
have a combination of Synchronous & Asynchronous Mirroring in your
setup so as to reach the best compromise between performance and
reliability. Depending on your HA/DR requirements you possibly could
have a synchronous setup to a server in your local data centre and an
asynchronous setup to a server in a secondary data centre.
Availability Groups
SQL Server 2012 AlwaysOn allows for the more granular control of your
environment with the introduction of AlwaysOn Availability Groups
(AAG’s). AAG’s allow you to configure groups of databases that you would
like to failover all together when there is a problem with the host
server. When configuring your AAG’s you: - Configure your AAG on the Primary Replica (Your AAG contains the group of DBs that you wish to group together to failover to your secondary replicas)
- You will need to configure between one and four secondary replicas, with any combination of Synchronous (Maximum of two) and Asynchronous Mirroring (Your primary replica is available for read and write connectivity, while your secondary replicas can be configured for read-only, read intent or no access)
Maintenance Tasks/ Reporting
AlwaysOnallows you to use the secondary replicas that you would have
created when you setup your AAGs to undertake some regular database
maintenance tasks to remove some of the performance overheads from your
primary production server. Some of the tasks that you could look at
undertaking on a secondary replica are: - Database Backups
- Full Backup With Copy_Only
- Transaction Log Backups
- DBCC CheckDB
- Reporting
- Database Snapshots
Licensing
SQL Server 2012 has been released with a new license model. With SQL
Server 2012 AlwaysOn's ability to have multiple secondaries you need to
take into account the licensing when you are going to be implementing
multiple secondaries. The license model requires you to license your
Active (Primary) SQL Server in your AlwaysOn Cluster. You are allowed
one Passive (Secondary) server that you do not need to license. If you
have more than one secondary server, you need to license that server
whether it is active or passive. For more information on licensing have
a look at the SQL Server 2012 Licensing Reference Guide and talk to your licensing reseller. What is Active and what is Passive? Your Primary is active because you are accessing it and using the database. If you setup a secondary server to perform any of the tasks listed above in Maintenance Tasks/Reporting, then this secondary is also active and needs to be licensed. Remember; if you access it, it is active. For example: If we were to have one Primary Server (Active), three Secondary Servers (one Active, two Passive) we would be required to license three of the four servers.
Security & Performance
To give you the full benefits of high availability, there will be a
lot of movement of data. This brings with it security risks and higher
bandwidth demands. To minimise these requirements Transparent Database
Encryption (TDE) as well as Backup Compression, are both shipped with
the Enterprise Edition, Implementing AlwaysOn
Now that we have covered off the basics of what an AlwaysOn solution could possibly look like we are ready to start and plan for implementing this solution to meet your ever increasing High-Availability requirements and DR needs.Your final solution could look something like this:
That is really fascinating, You're a very professional blogger.
ReplyDeleteI've joined your feed and look forward to in the hunt for extra of your excellent post.
Also, I have shared your web site in my social networks
What you said made a bunch of sense. However, think on this, what if you added a
ReplyDeletelittle information? I mean, I don't want to tell you how to run your blog,
however what if you added something to possibly get people's
attention? I mean "SQL Server AlwaysOn Concept" is kinda vanilla.
You could glance at Yahoo's front page and note how they write article titles to get people interested.
You might add a related video or a pic or two to
grab readers interested about what you've written. Just my opinion,
it might make your blog a little livelier.
Hello There. I found your weblog using msn. That is a very well written article.
ReplyDeleteI'll make sure to bookmark it and return to read extra of your useful information. Thank you for the post.
I'll certainly return.
Wow! This blog looks just like my old one!
ReplyDeleteIt's on a completely different topic but it has pretty
much the same layout and design. Outstanding choice of colors!
Can I just say what a relief to find a person that really knows
ReplyDeletewhat they are discussing over the internet. You actually know how
to bring an issue to light and make it important.
More people should read this and understand this side of your
story. I was surprised you're not more popular since you
most certainly possess the gift.
For the reason that the admin of this web page is working, no question very shortly it will be well-known, due to its feature contents.
ReplyDeleteThis is my first time pay a visit at here and i am genuinely happy to read all at alone place.
ReplyDeleteAmazing! This blog looks exactly like my old one! It's on a completely different topic but it has
ReplyDeletepretty much the same page layout and design. Excellent choice of colors!
Whoa! This blog looks just like my old one! It's on a totally different topic but it has pretty much the same page layout and design. Wonderful choice
ReplyDeleteof colors!
Good web site you've got here.. It's difficult to find high-quality
ReplyDeletewriting like yours nowadays. I truly appreciate people like you!
Take care!!
My partner and I stumbled over here coming from a different page and thought I might as well check things out.
ReplyDeleteI like what I see so now i am following
you. Look forward to looking at your web page
yet again.
Have you ever thought about including a little bit more than just your
ReplyDeletearticles? I mean, what you say is valuable and all.
But imagine if you added some great photos or video clips to
give your posts more, "pop"! Your content is excellent but with pics and clips, this website could
certainly be one of the greatest in its niche. Wonderful blog!