I am looking for a good Java Graph Library which is thread safe for concurrent access. JGraphT, JUNG, JTS are very good but again for concurrent access I will have to synchronize it externally which is becoming a pain. It is a pain because say If thread A have to access 50 vertices, Thread B for another 50 with the intersection of vertices being 20 vertices. Now while writing code I need to know this 20 before so that I can synchronize it accordingly. Pl suggest
|
|
I'm afraid what you're looking for is impossible, because thread-safety is a property of algorithms, not a property of data structures. Here's an example: Let's say your graph library has a main Now clearly because everything is synchronized, it's impossible to corrupt the data structure. For example, you'll never have a situation where However, your algorithms operating on the graph can still easily break. For example, let's say you write:
The call to My best advice, I think, is to use JGraphT in combination with Akka's STM implementation (or similar), so that you can write your algorithms without needing to determine ahead of time which objects will require locking. If you're not familiar with STM and its performance characteristics, Wikipedia's article on the topic does a decent job of explaining. |
|||
|
|
Have you considered Neo4J Here is a snippet describing their product. Neo4j is a high-performance, NOSQL graph database with all the features of a mature and robust database. |
|||
|
|
|
How about letting several threads do whatever they can do and then submit there solution to one master controller that collects results and comes up with the best solution. |
|||||||||||
|
|
The simplest solution is to create one big monitor.
Before doing ANY operation on the graph, synchronize on that single monitor. Fiddling with indivudial verticles seems to be hard to get right... To say the least. |
|||||||||||
|
|
If you only want to change nodes locally, you can maintain an individual lock for each node. The simplest way to do this would be to implement a custom node class with synchronized methods (you could use ReentrantLock as well) i.e. something like this:
or
|
|||||
|
|
Have a look at charts4j API. We are using it in our application with reasonable no of concurrent users and there has been no problems yet. I am not sure if the API is thread safe or not. One problem we have noticed is that the url of the graph generated will point to http://www.google.com/... which can be a problem if you are working inside a VPN and the internet is not available.(May be there is a way out it of it). |
|||
|
|