Hi@akhtar,
You can write the spark dataframe in your Cassandra. For that, you need to specify the format as shown below.
val personDF = sqlContext.applySchema(rowRDD, schema)
personDF.write.format("org.apache.spark.sql.cassandra").options(Map( "table" -> "words_copy", "keyspace" -> "test")).save()