I am looking at Azure's SQL database service as a potential solution for a project. One of the requirements is HA between data centers (i.e., the database must have a standby running at a separate site that is ready to take load should the master fail, and is immediately consistent with the master). It appears that SQL Azure can only replicate data between sites asynchronously, using either sync groups or a periodic export/import process.
My question is this - is there any way to do this I am missing? Is it, for instance, possible to configure a normal SQL Server instance (running on IAAS) at the standby, and somehow introduce a synchronously replicated master-slave relationship with the SQL Azure database running in the primary data center?
thanks,
Scott.