Reputation: 428
If I have a large resultset from a cassandra query.
Is there a way to have this result set as a Source of an Akka-Stream so I can process each row?
Thanks
Upvotes: 1
Views: 1000
Reputation: 428
I ended up using this library Cassandra talks https://github.com/timcharper/cassandra-talks-scala
Upvotes: 1
Reputation: 14806
Probably a late answer, but yes, there is a new project alpakka. Cassandra query can be provided as a stream of rows. Take a look at this documentation.
Upvotes: 4