Re: [akka-user] Akka Pattern for a Transactional system with multi-hop requests.

2016-07-16 Thread Stephen McDonald
CurioDB implements distributed transactions wit Akka using 2PC and MVCC: https://github.com/stephenmcd/curiodb#transactions On Sunday, 17 July 2016 06:19:14 UTC+10, Love Hasija wrote: > > Appreciate your help. > > This looks great. Would you be able to point me to any possible > implementation

Re: [akka-user] Akka Pattern for a Transactional system with multi-hop requests.

2016-07-16 Thread Love Hasija
Appreciate your help. This looks great. Would you be able to point me to any possible implementation on Akka. I am wondering what would be the right design for an Akka implementation in terms of Master/Worker etc. On Saturday, 16 July 2016 23:37:01 UTC+5:30, Dragisa Krsmanovic wrote: > > Looks

[akka-user] Akka Pattern for a Transactional system with multi-hop requests.

2016-07-16 Thread Love Hasija
Hi, I am working on solving a problem where there is a business service that is using HBase as a data layer and we are building secondary indexes on the HBase. As you can imagine, a single business service request spawns multiple request to the DB layer within a single logical transaction