将JSON类型spark RDD保存到Cassandra表

时间:2018-03-28 12:45:21

标签: apache-spark cassandra spark-streaming rdd spark-cassandra-connector

我想将spark RDD存储到Cassandra表中,但它不起作用。 我的RDD格式为

{"id":"04bBGJpwUh","date":"2018-03-26 05:28:25","temp":37,"press":16}
{"id":"pi4Axn3iOd","date":"2018-03-26 05:28:27","temp":49,"press":17}

我的cassandra表是

CREATE TABLE mydata.stations(id text primary key,date text,temp int,press int);

任何人都可以帮我怎么做?我尝试了几个例子,但没有一个是有效的。

0 个答案:

没有答案