MRCollective / NHibernate.SqlAzure

Reliable NHibernate connection to SQL Azure using the Microsoft Transient Fault Handling library.
Other
37 stars 30 forks source link

NHibernate Reliable SQL Azure Driver

Build status NuGet downloads NuGet version

Provides an NHibernate driver that uses the Microsoft Transient Fault Handling library to allow for reliable SQL Azure connections.

This library is build against version 3.3.1.4000 of NHibernate so you will need to update to that version or later to use this library.

Version 2 of this library targets the new version (6) of the Enterprise Library code and as such requires .NET 4.5. If you have a .NET 4.0 application then feel free to use the latest version in the 1.0 range of this library.

Using the provider when using Fluent NHibernate

To use the provider:

  1. Update-Package FluentNHibernate
  2. Install-Package NHibernate.SqlAzure
    • or if you want the version that isn't IL-merged with the Microsoft Transient Fault Handling library then Install-Package NHibernate.SqlAzure.Standalone (note: that will add 2 other dependencies as well)
  3. Set the Database to use SqlAzureClientDriver as the client driver (note: if you get Timeout exceptions then see the Advanced section below), e.g.:

    Fluently.Configure()
        .Database(MsSqlConfiguration.MsSql2008.ConnectionString(connectionString).Driver<SqlAzureClientDriver>())

Using the provider when using an XML configuration

To use the provider:

  1. Update-Package NHibernate
  2. Install-Package NHibernate.SqlAzure
    • or if you want the version that isn't IL-merged with the Microsoft Transient Fault Handling library then Install-Package NHibernate.SqlAzure.Standalone (note: that will add 2 other dependencies as well)
  3. Set the connection.driver_class property on the session factory configuration to NHibernate.SqlAzure.SqlAzureClientDriver, NHibernate.SqlAzure (note: if you get Timeout exceptions then see the Advanced section below).

NHibernate 4 support

We have NHibernate 4 supports via separate NuGet packages thanks to @rytmis:

Reliable transactions

The Enterprise Library code doesn't seem to provide any rety logic when beginning transactions. This may be because it will rarely be a problem or you might not want to continue the transaction if there was a potential problem starting it. However, in order to get the unit tests for this library to pass, I needed the transaction to be resilient too so I created some classes that allow you to add retry logic when beginning a transaction. This may well be useful to others so we've included it as part of the library. See the next two sections to understand how to make use of this.

Using reliable transactions when using Fluent NHibernate

Set the TransactionStrategy environment property to use the ReliableAdoNetWithDistributedTransactionFactory class:

config.ExposeConfiguration(c => c.SetProperty(Environment.TransactionStrategy,
    typeof(ReliableAdoNetWithDistributedTransactionFactory).AssemblyQualifiedName));

Using reliable transactions when using an XML configuration

Set the transaction.factory_class property on the session factory configuration to NHibernate.SqlAzure.ReliableAdoNetWithDistributedTransactionFactory, NHibernate.SqlAzure.

Advanced Usage: Extending the provider, add logging for failed attempts or apply different retry strategies / transient error detection strategies

It's possible for Timeout exceptions to be both a transient error caused by Azure and a legitimate timeout caused by unoptimised queries so we've included a transient error detection strategy that detects these timeout exceptions as a transient error and retries. To use it simply change your driver from SqlAzureClientDriver to SqlAzureClientDriverWithTimeoutRetries. There are a few things to note:

There are two abstract base driver classes that you can extend to get more control over the retry policies and use to hook in logging of retries:

Running the tests

If you want to contribute to this library then you need to:

  1. Load the solution (allow the NuGet package restore to grab all the packages)
  2. Compile the solution (.NET 4, AnyCPU)
  3. Create a database on your local SQLExpress instance called NHibernateSqlAzureTests and grant the user running the NUnit runner dbowner access.
    • If you want to use a different database simply change the Database ConnectionString in App.config as well as the SqlServerServiceName AppSetting if necessary.
  4. Run the NHibernate.SqlAzure.Tests project with your NUnit test runner of choice
    • The user running the tests must have Administrator access on the computer so that the Windows Service for the database can be shutdown and restarted
    • Note: Your database will be taken down and brought back up repeatedly when running the tests so only run them against a development database.