我想将RDD(由我的代码中的“单词”定义)值放入表列值中。我正在使用Happybase连接。
words = rdd.map(lambda line :line.split(" ")).collect()
spark = getSparkSessionInstance(rdd.context.getConf())
connection = happybase.Connection("master", port=9090)
connection.open()
print(connection.tables())
table = connection.table('locdata')
table.put(str(time),{'data:lat':str(words[0]),'data:lon':str(words[1])})