开发者

Appfabric Caching: Configuration Provider as single point of failure

开发者 https://www.devze.com 2023-02-02 17:56 出处:网络
After doing some initial research into using Appfabric for caching, my understanding is that the configuration provider for the cluster is a single point of failure as mentioned here:

After doing some initial research into using Appfabric for caching, my understanding is that the configuration provider for the cluster is a single point of failure as mentioned here:

MSDN

I want to use appfabric just for distributed caching, particularly for the tagging features. What are the options to avoid having the configuration provider as this fai开发者_开发百科lure point? I thought of two but not sure if one is better or if there are any other options.

(1) Create my own caching service configuration provider. I'm guessing this is possible (?) but I'm not sure how to go about it. I'd probably make a provider that fetched the xml file from S3 since I'm already using AWS.

(2) Configure each cache as a single node cluster and then create a proxy client that uses the individual nodes as a distributed cache, a la a memcached type client.

Thoughts or recommendations, or anything else I should consider in making this decision?


Yes, it is a single point of failure.

Microsoft's recomended solutions seem to be:

  • (SQL Server provider) Use SQL Server clustering. In my limited experience of it, using SQL Server clustering for this is probably a case of 'the cure is worse than the disease' i.e. it brings a lot of pain. Unless you've already got a SQL Server cluster available, avoid!
  • (XML provider) Use Windows Server clustering. I have even less knowledge of this than SQL clustering, so I can't say how well (or otherwise) this might work. It doesn't strike me as a trivial thing to do, though.

You can create your own configuration provider by implementing the ICustomProvider interface and making some registry entries. Using AWS seems like a really good idea to make the config provider resilient, I'd be interested to see how you got on with this.

Creating a proxy client seems to me like you'd be making a lot of work for yourself, at that point it feels like you'd be more fighting against AppFabric rather than working with it.


We have also tried AppFabric but it gave us fair few headaches like for one there's no API access which is making it very difficult to use our current unit testing strategy. We have now moved to NCache that is better option than AppFabric. NCache provides tagging feature and it is not a single point of failure.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号