You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Bryan Duxbury (JIRA)" <ji...@apache.org> on 2007/12/08 02:04:43 UTC

[jira] Commented: (HADOOP-2384) [hbase] Delete all members of a column family on a specific row

    [ https://issues.apache.org/jira/browse/HADOOP-2384?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549629 ] 

Bryan Duxbury commented on HADOOP-2384:
---------------------------------------

How about

{code}
/**
 * Deletes all cells that match row and column family, regardless of timestamp
 */
void deleteFamily(Text row, Text family);

/**
 * Deletes all cells that match row and column family, equal to or before timestamp
 */
void deleteFamily(Text row, Text family, long timestamp);
{code}

> [hbase] Delete all members of a column family on a specific row
> ---------------------------------------------------------------
>
>                 Key: HADOOP-2384
>                 URL: https://issues.apache.org/jira/browse/HADOOP-2384
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> HADOOP-1550 adds delete all cells on a row.  HADOOP-1784 adds deleting all cells for a particular row and column.   Remaining is deleting all cells for a particular column family.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.