The first time I create a HBase table I want the table to be created with multiple columns in the following way(I know the following way wont work looking for similar kind of way)..
create 'table_name','col_family:column1','col_family:column2'
is this possible? Apart from using the put command and adding a column to a columnfamily dynamically is there any other way??
Put
? HBase is schemaless, thus it is against its logic. – gorros