doanduyhai
1 min readFeb 14, 2016

--

Is the Spark-Cassandra interpreter available somewhere on Github ?

For your info, it is still possible to use SparkSQL directly on Cassandra table. You just need to declare it using the SparkSQL syntax:

CREATE TEMPORARY TABLE test

USING org.apache.spark.sql.cassandra

OPTIONS (

keyspace “ks”,

table “test”,

pushdown “true”

)

--

--