vote up 2 vote down star
1

I am looking for a java distributed caching solution. We would like features likes:

  • Distributed
  • Auto-Discovery
  • Redundancy
  • Non-Centralized

We've analyzed a framework like TerraCotta which seems to be everything we would ever want from a caching framework... However, there seems to be a central caching node(s) that is required which become our single-point-of-failure.

Any ideas other than rolling out our own solution?

flag

20% accept rate
Terracotta does not have a SPOF - you can use as many hot backups as you want that take over when an active server dies. With Terracotta FX, you can even have multiple actives for greater scale. – Alex Miller Nov 10 at 2:31

5 Answers

vote up 2 vote down

Terracotta recently acquired Ehcache and has released a tight integration of the Ehcache API with the Terracotta clustered store in a simple package and only requires a few extra lines of Ehcache configuration to go from single node to clustered, although you also have to run the Terracotta server process.

Ehcache with the Terracotta ES edition is open source and free to use. Commercial licenses are available if you want support, more scaling, indemnification, patch support, etc.

Terracotta does use a central server array, not a single central server, so there is no single point of failure! You can set up as many hot backup servers as you want and these backup servers can be configured to take over when the active server goes down. With Terracotta FX (commercial product), you can also use multiple active servers.

link|flag
vote up 0 vote down

Terracotta also offers a distributed cache.

link|flag
Commercial version only isn't it? – cletus Sep 28 at 13:29
I don't think so if you use the Terracotta ES edition (see terracotta.org/web/display/…). – Aaron Digulla Sep 28 at 14:26
vote up 2 vote down

I suggest either JBossCache or EhCache (with a distributed cache listener). I've used both, I like both, and they both fit your requirements.

link|flag
vote up 0 vote down

Have you looked at Coherence?

We have found it very useful. It is not open source or cheap though.

http://www.oracle.com/technology/products/coherence/index.html

link|flag
vote up 0 vote down

I know of one but it's commercial: Oracle Coherence. A Coherence distributed cache has no centralized server (or other key point of failure). It partitions your data into however many nodes you have join the cluster and it has redundancy and you don't need to know where the data is stored.

link|flag

Your Answer

Get an OpenID
or

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