In my previous question on this portal, I had asked about some insight about syncing data between SqlServer and key-value based data repositories.

In lieu of the same problem (one way real-time synchronization from Sql to HBase or any other database) I need to take care of some performance and latency considerations and did not find a very foolproof way of doing it.

1) We have multiple sql 2008 data shards where data is updated from various sources and processed by many processes at the same time (and UI reads from the same shards).

2) The goal is to get all updates in selected tables at any point of time and transport them to other data source in almost real-time fashion.

3) Amount of change in sql shards will stays in 100-500 MBs (if we keep the frequency of 1 min) do not want to make major changes in sql servers as we would discard it after migrating complete system.

4) Unfortunately our data access layer is messed up in various layers otherwise it would have been the best way to fork the updates in two directions.

5) Triggers will slow down the shards and leave them in an unresponsive state.
6) Not sure if sql 2008 has something similar to 2005 Notification services and how effective that would be.

any other innovative solution would greatly helpful.

Here my problem is not about transforming the data from relational to Key-value form(It's fairly easy), But how to get the sql server updates in real-time(can afford the latency of 1-2 minutes) without affecting the user experience.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

have you looked at SQL Service Broker? here's a link with some info on it: http://blogs.msdn.com/b/sql_service_broker/archive/2008/07/09/real-time-data-integration-with-service-broker-and-other-sql-techniques.aspx

link|improve this answer
Change tracking seems to be good solution. Haven't found any statistics for performance overhead on high traffic servers though. – Panks Jun 29 '11 at 7:03
another one you might want to look at is Sql Server Change Data Capture. – JuneT Jun 30 '11 at 9:45
feedback

There are layers of data from bottom to top: storage, file system, db and app.

The most efficient way of doing this is using storage replication. It almost has no impact on performance, can be configured as sync or async, and is not free. You may google SRDF or MirrorView for a concept of it.

Then you can have a look at file system replication. It's similar to storage replication but happens in OS/file system layer, consuming resources(CPU, IO, mem) of the host system. You may google symantec storage foundation for more information.

At DB level, you can do database replication / log shipping to replicate the data. SQL server has such facilities.

The "cheapest" solution would be modify your app, like your 4), but I suggest you use a message queue to replicate the data to minimize the impact on performance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.