Can I read data faster from Cassandra using Spark?

Viewed 33

I am using cassandra database and I have a python script for reading data from cassandra database. Script is doing well. I wonder this if I use spark, can I read data faster from Cassandra ( using cql )?

1 Answers

Yes definitely, spark is made processing huge amount of data , but if the data is less you will not gain anything than to take more time to read.

Related