Insert Spark dataframe into hbase
问题 I have a dataframe and I want to insert it into hbase. I follow this documenation . This is how my dataframe look like: -------------------- |id | name | address | |--------------------| |23 |marry |france | |--------------------| |87 |zied |italie | -------------------- I create a hbase table using this code: val tableName = "two" val conf = HBaseConfiguration.create() if(!admin.isTableAvailable(tableName)) { print("----------------------------------------------------------------------------