how to change the name of column family in the hbase table

前端 未结 1 956
Happy的楠姐
Happy的楠姐 2021-01-21 16:02

I have a Hbase table with only 1 column family(cf1) having 100 columns under it. I need to change cf1 to new column family(CF1).

In short i need to modify column famil

相关标签:
1条回答
  • 2021-01-21 16:19

    I think you should copy columns from family to family then delete old column family. If there was a hbase client api for that, it would do the same, i think. Because data written to hbase files contains column family name in it.

    0 讨论(0)
提交回复
热议问题