How can I connect Spark to Google's BigQuery?
I imagine that one could use Spark's JDBC functionality to communicate with BigQuery.
But the only JDBC driver I found starschema is old.
If the answer involves JDBC what should the url parameter look like?
From Spark Docs:
rdd.toDF.write.format("jdbc").options(Map(
"url" -> "jdbc:postgresql:dbserver",
"dbtable" -> "schema.tablename"
))