Ciaran0
Ciaran0

Reputation: 428

Akka stream source - cassandra resultset

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

Answers (2)

Ciaran0
Ciaran0

Reputation: 428

I ended up using this library Cassandra talks https://github.com/timcharper/cassandra-talks-scala

Upvotes: 1

Branislav Lazic
Branislav Lazic

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

Related Questions