[akka-user] Re: Recommendations on a PoC for system migration from VB.NET to Scala/Akka stack

2018-02-01 Thread Som Shankar Bhattacharyya
DId you see my note ? On Monday, January 29, 2018 at 12:22:01 AM UTC+5:30, Damian Blazejewski wrote: > > Generally, it sounds good. > > i. -> you don't say anything about the deployment but I would think about > Akka Cluster from the beginning. > iv. -> what data do you persist? You can do it

[akka-user] Re: Recommendations on a PoC for system migration from VB.NET to Scala/Akka stack

2018-01-28 Thread Som Shankar Bhattacharyya
The data we persist is table data. We receive serialized tables from the clients and save it to the file system. Then another set of services reads from files and persisists to the database. Yes i too think Kafka will be an excellent fit here. However i do not have much idea about deployments.

[akka-user] Re: Recommendations on a PoC for system migration from VB.NET to Scala/Akka stack

2018-01-28 Thread Damian Blazejewski
Generally, it sounds good. i. -> you don't say anything about the deployment but I would think about Akka Cluster from the beginning. iv. -> what data do you persist? You can do it asynchronously without blocking the rest api using Kafka. Or maybe Akka Persistence would work for you? On