0
votes

Hi i recently started exploring Google Bigtable features.

If I want to delete particular column family data corresponding to particular row key of the table then how can i achieve this.

Using this command I am able to get all records

cbt -project my-project -instance my-instance lookup my-table rowkey

Please suggest.

1

1 Answers

1
votes

To delete the data from a specific column and row, you can use the cbt deletecolumn command

cbt deletecolumn <table-id> <row-key> <family> <column>

Example:

 cbt deletecolumn mobile-time-series phone#4c410523#20190501 stats_summary os_name

There are more example commands in the cbt reference guide.