Hi, > OrientDB can do distributed transactions across nodes. What do you mean for > connections?
So, I’m not so skilled when it comes to transactions and the like so bear with me… One of the models I want to push is that each worker in GraphActors will have a Graph “connection.” That is: configuration.setProperty(“host”,worker.address()) Graph graph = GraphFactory.open(configuration); // Graph = “connection" This way, the worker is always talking directly to the node it is physically executing at. Moreover, it means that its Partition is the data contained at the node in the cluster. Everything is processed locally with GraphActors. Now, lets say we do a muting traversal such as: g.V().as(‘a’).out(‘knows’).as(‘b’). addE(‘likes’).from(‘a’).to(‘b’) So, this will have it such that each Graph “connection” will have writes to it. Now lets say we want to “globally commit” such that each Graph “connection” commits its transaction but if any particular one fails, they all fail …. or something like that. That is, how can we (OrientDB and/or TinkerPop) enable transaction guarantees across multiple Graph "connections"? Thanks, Marko. http://markorodriguez <http://markorodriguez/>.com > > > Thanks Luca, > Marko. > > http://markorodriguez <http://markorodriguez/>.com > > Luca > > -- > You received this message because you are subscribed to the Google Groups > "Gremlin-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To view this discussion on the web visit > https://groups.google.com/d/msgid/gremlin-users/CAGud208pLzs9-OT%2BoiuTCKGimXFkaLoyKoAPrromVLD1ny72kg%40mail.gmail.com > > <https://groups.google.com/d/msgid/gremlin-users/CAGud208pLzs9-OT%2BoiuTCKGimXFkaLoyKoAPrromVLD1ny72kg%40mail.gmail.com?utm_medium=email&utm_source=footer>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>.
