You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Jonathan Ellis (Commented) (JIRA)" <ji...@apache.org> on 2012/01/12 17:45:40 UTC

[jira] [Commented] (CASSANDRA-3733) Once a host has been hinted to, log messages for it repeat every 10 mins even if no hints are delivered

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

Jonathan Ellis commented on CASSANDRA-3733:
-------------------------------------------

Why doesn't this take care of it?

{code}
.       if (rowsReplayed > 0)
        {
            hintStore.forceFlush();
            try
            {
                CompactionManager.instance.submitMaximal(hintStore, Integer.MAX_VALUE).get();
            }
            catch (Exception e)
            {
                throw new RuntimeException(e);
            }
        }
{code}
                
> Once a host has been hinted to, log messages for it repeat every 10 mins even if no hints are delivered
> -------------------------------------------------------------------------------------------------------
>
>                 Key: CASSANDRA-3733
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-3733
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.0.7
>            Reporter: Brandon Williams
>            Priority: Minor
>
> {noformat}
>  INFO 15:36:03,977 Started hinted handoff for token: 170141183460469231731687303715884105726 with IP: /10.179.111.137
>  INFO 15:36:03,978 Finished hinted handoff of 0 rows to endpoint /10.179.111.137
>  INFO 15:46:31,248 Started hinted handoff for token: 170141183460469231731687303715884105726 with IP: /10.179.111.137
>  INFO 15:46:31,249 Finished hinted handoff of 0 rows to endpoint /10.179.111.137
>  INFO 15:56:29,448 Started hinted handoff for token: 170141183460469231731687303715884105726 with IP: /10.179.111.137
>  INFO 15:56:29,449 Finished hinted handoff of 0 rows to endpoint /10.179.111.137
>  INFO 16:06:09,949 Started hinted handoff for token: 170141183460469231731687303715884105726 with IP: /10.179.111.137
>  INFO 16:06:09,950 Finished hinted handoff of 0 rows to endpoint /10.179.111.137
>  INFO 16:16:21,529 Started hinted handoff for token: 170141183460469231731687303715884105726 with IP: /10.179.111.137
>  INFO 16:16:21,530 Finished hinted handoff of 0 rows to endpoint /10.179.111.137
> {noformat}
> Introduced by CASSANDRA-3554.  The problem is that until a compaction on hints occurs, tombstones are present causing the isEmpty() check to be false.

--
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