barseghyanartur / starbase

DEPRECATED - HBase Stargate (REST API) client wrapper for Python.
https://pypi.python.org/pypi/starbase
53 stars 32 forks source link

unable to add dynamic column family #20

Open krina1115 opened 8 years ago

krina1115 commented 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').

barseghyanartur commented 8 years ago

@krina1115:

Does the following work for you?

t.add_columns('column1', 'column2', 'column3', 'column4')