Any one aware of a variant of spark-cassandra-connector built against Scylla Java driver?
Context: We write from Spark streaming to Scylla DB. We use sparl-cassandra-connector v 2.5.1
We assume that if we rebuild spak-casandra-connector to use Scylla driver, we will have performance gain. Currently spark-cassabdra-connector is using Java driver
val driverCore = "com.datastax.oss" % "java-driver-core-shaded" % DataStaxJavaDriver driverCoreExclude()
val driverMapper = "com.datastax.oss" % "java-driver-mapper-runtime" % DataStaxJavaDriver driverCoreExclude()
Is it possible and advised to change to Scylla driver? Something like
val driverCore = "com.scylladb" % "jscylla-driver-core" % XXX