如何通过Happybase将RDD放入Hbase表

时间:2018-12-17 07:17:12

标签: apache-spark hbase happybase

我想将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])})

0 个答案:

没有答案