Announcement:Infinispan 5.1.5.CR1 is out!
Infinispan is an extremely scalable, highly available data grid platform - 100% open source, and written in Java. The purpose of Infinispan is to expose a data structure that is highly concurrent, designed ground-up to make the most of modern multi-processor/multi-core architectures while at the same time providing distributed cache capabilities. At its core Infinispan exposes a Cache interface which extends java.util.Map. It is also optionally is backed by a peer-to-peer network architecture to distribute state efficiently around a data grid.
Offering high availability via making replicas of state across a network as well as optionally persisting state to configurable cache stores, Infinispan offers enterprise features such as efficient eviction algorithms to control memory usage as well as JTA compatibility.
In addition to the peer-to-peer architecture of Infinispan, on the roadmap is the ability to run farms of Infinispan instances as servers and connecting to them using a plethora of clients - both written in Java as well as other popular platforms.
Why is Infinispan sexy?
State-of-the-art core - Infinispan's core is a specialised data structure, tuned to and geared for a great degree of concurrency - especially on multi-CPU/multi-core architectures. Most of the internals are essentially lock- and synchronization-free, favouring state-of-the-art non-blocking algorithms and techniques wherever possible. Even though non-clustered caching (LOCAL mode) is not its primary goal, Infinispan still is very competitive here.
Massive heap - If you have 100 blade servers, and each node has 2GB of space to dedicate to a replicated cache, you end up with 2 GB of total data. Every server is just a copy. On the other hand, with a distributed grid - assuming you want 1 copy per data item - you get a 100 GB memory backed virtual heap that is efficiently accessible from anywhere in the grid. Session affinity is not required, so you don't need fancy load balancing policies. Of course you can still use them for further optimisation. If a server fails, the grid simply creates new copies of the lost data, and puts them on other servers. This means that applications looking for ultimate performance are no longer forced to delegate the majority of their data lookups to a large single database server - that massive bottleneck that exists in over 80% of enterprise applications!
Extreme scalability - Since data is evenly distributed, there is essentially no major limit to the size of the grid, except group communication on the network - which is minimised to just discovery of new nodes. All data access patterns use peer-to-peer communication where nodes directly speak to each other, which scales very well.
Not Just for Java (PHP, Python, Ruby, C, etc.) - The roadmap has a plan for a language-independent server module. This will support both the popular memcached protocol - with existing clients for almost every popular programming language - as well as an optimised Infinispan-specific protocol. This means that Infinispan is not just useful to Java. Any major website or application that wants to take advantage of a fast data grid will be able to do so.
Support for Compute Grids - Also on the roadmap is the ability to pass a Runnable around the grid. You will be able to push complex processing towards the server where data is local, and pull back results using a Future. This map/reduce style paradigm is common in applications where a large amount of data is needed to compute relatively small results.
Management is key! - When you start thinking about running a grid on several hundred servers, management is no longer an extra, it becomes a necessity. This is on Infinispan's roadmap. We aim to provide rich tooling in this area, with many integration opportunities.
Infinispan and JSR 107
JSR 107, Temporary Caching for Java, is a standard that the Infinispan development team actively participate in. While Infinispan doesn't currently implement JSR 107 in its current incarnation, work is underway to achieve JSR 107 compliance once the JSR completes.
Recent blog posts
- One more micro release, Infinispan 5.1.5.CR1 out now!
- May 15, 2012 12:51 PM by Galder Zamarreño
- Infinispan 5.1.5.CR1 has just been released with a handful of crucial issues that we considered required another community release. If you're a tree module user in JBoss AS7, or a an elastic Hot Rod server user, or use XA datasources with Infinispa…
- Infinispan @ MOW 2012
- May 11, 2012 7:06 AM by Galder Zamarreño
- A couple of weeks back I was speaking about Infinispan and Radargun at MOW 2012. Although this conference was originally focused on Oracle products, for a over a year now, Miracle have been expanding into other territories, such as Microsoft and Jav…
- Infinispan 5.1.4.FINAL is out now!
- Apr 26, 2012 9:26 AM by Galder Zamarreño
- Infinispan 5.1.4.FINAL is out now fixing a bunch of issues as well as enhancing performance of Infinispan's Memcached and REST servers, plus it now exposes a couple of new JMX attributes such as cache view (RpcManager.CommittedViewAsString & RpcMana…
- GSoC and Infinispan
- Apr 24, 2012 7:43 AM by Mircea Markus
- I am delighted to announce that one of our submissions for GSoC was accepted! Sunimal Rathnayake will join the infinispan team for implementing a HotRod client in C#. This would allow Infinispan clusters to be consumed by .NET clients which somethi…
- Back from Portugal with goodies
- Apr 23, 2012 4:02 AM by Mircea Markus
- The trip started in Coimbra where Sanne Grinovero and I discussed about Infinispan and OGM at the Portugal JUG. The interest was obvious from the amount of questions and the discussions that followed and ended up late in the night. A big thanks to Sa…
Recently Resolved Issues
Recent commits
- ISPN-2049 Verify all Externalizer are assigned to their respective types as expected
- by Sanne Grinovero
- ISPN-2049 Externalizers disabled in Lucene Directory module
- by Sanne Grinovero
- someone has been smoking
- by Sanne Grinovero
- ISPN-2048 Update JBoss LogTool to get flawless M2E integration
- by Sanne Grinovero
- MarshallingType more lightweight
- by Sanne Grinovero
- View more recent commits