ble.put(row1, column0, value)
>
>
> Matteo
>
>
>
> On Tue, Apr 29, 2014 at 12:09 PM, Chamika Kasun >wrote:
>
> > Yes this code is correct. Here what the code does is only create a column
> > family. What i want to do is inside the column family i want to crea
>
> HColumnDescriptor hcd = new HColumnDescriptor(htd.getFamily(FAMILY));
>
> htd.addFamily(hcd);
>
> admin.createTable(htd);
>
> When you insert data, you specify column along with data value.
>
>
> Cheers
>
>
> On Tue, Apr 29, 2014 at 11:08 AM
Hi all,
Here what i want to do is i want to firstly need to create and a column
family and then need to create a column for data to be added later. Here i
can not use PUT command as it requires a value parameter(because idea of
that application is first initiate the table and data will be added la
Here i want to create a column family on a selected cluster. In cassandra i
can do this as follows, But since i'm soo much new to HBase i have no idea
how to do this using hbase. please help me out.
In cassandra :
public void createColumnFamily(Cluster cluster,String tableName,String
columnFamily