scala—将此Dataframe存储到hbase

eyh26e7m  于 2021-06-10  发布在  Hbase
关注(0)|答案(0)|浏览(223)

我有一个Dataframe,它的模式是:

|-- id: string (nullable = true)
 |-- sentences: array (nullable = true)
 |    |-- element: struct (containsNull = true)
 |    |    |-- sentence: string (nullable = true)
 |    |    |-- attributes: array (nullable = true)
 |    |    |    |-- element: struct (containsNull = true)
 |    |    |    |    |-- tokens: string (nullable = true)
 |    |    |    |    |-- ner: string (nullable = true)
 |    |    |    |    |-- pos: string (nullable = true)

我想把它保存在hbase表中,用“id”和“sentence”作为行键,hbase表有两个列族,“ner”和“pos”,用“tokens”作为它们的键。在scala做
这是通过Spark流来的。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题