Open krina1115 opened 8 years ago
while migrating postgresql data to hadoop hbase using starbase python library .I am unable to dynamically add column family as i have to create it while creating table instance t.create('column1').
@krina1115:
Does the following work for you?
t.add_columns('column1', 'column2', 'column3', 'column4')
while migrating postgresql data to hadoop hbase using starbase python library .I am unable to dynamically add column family as i have to create it while creating table instance t.create('column1').