You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Brandon Williams (Commented) (JIRA)" <ji...@apache.org> on 2012/02/28 14:12:49 UTC

[jira] [Commented] (CASSANDRA-3972) HintedHandoff fails to deliver any hints

    [ https://issues.apache.org/jira/browse/CASSANDRA-3972?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13218143#comment-13218143 ] 

Brandon Williams commented on CASSANDRA-3972:
---------------------------------------------

At least one problem here is that CFS.removeDeleted is removing everything here (though listing the hints family in the cli works correctly):

{code}
ColumnFamily hintsPage = ColumnFamilyStore.removeDeleted(hintStore.getColumnFamily(filter), Integer.MAX_VALUE);
{code}

At DEBUG you can see the columns collected, but then hintsPage is null.  If we simply change this to:

{code}
ColumnFamily hintsPage = hintStore.getColumnFamily(filter);
{code}

Then at least some of the hints get sent.
                
> HintedHandoff fails to deliver any hints
> ----------------------------------------
>
>                 Key: CASSANDRA-3972
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-3972
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.0
>            Reporter: Brandon Williams
>            Assignee: Brandon Williams
>            Priority: Blocker
>              Labels: hintedhandoff
>             Fix For: 1.1.0
>
>
> Summary says it all.  Whether in a memtable or sstable, no hints are delivered.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira