I have found the following failover solutions/products:
- Distributed Hashtable(DHT)
- GigaSpaces
- Oracle Berkeley DB
- P2P architecture (P2P may not be applicable to the program, but i think it looks interesting.)
These solutions either cost money or not a .NET solution. That means either I have to ask for money which is difficult, if not possible, or I have to change many parts of my code to adopt the solutions. Then I came across the article, "Implementing a Publisher/Subscriber model for .NET Remoting". Looks like .NET Remoting is exactly what I need. That is, I will make my windows service publish and subscribe to the same remote object. Whenever one service processes an order, it passes the order to another service to be processed. Then, the state of the two window services remains consistant. Whenever one service is down or generates no response, another service is ready to process orders instantly.
1 comment:
You should definitely check out Coherence for .NET. It's built in C#, and you can use it to cache and manage your C# (or any .NET) objects!
Peace.
Post a Comment