You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Jaakko Laine (JIRA)" <ji...@apache.org> on 2010/01/13 14:26:54 UTC

[jira] Assigned: (CASSANDRA-673) bootstrapping does not work properly using multiple key space

     [ https://issues.apache.org/jira/browse/CASSANDRA-673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jaakko Laine reassigned CASSANDRA-673:
--------------------------------------

    Assignee: Jaakko Laine

> bootstrapping does not work properly using multiple key space
> -------------------------------------------------------------
>
>                 Key: CASSANDRA-673
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-673
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>         Environment: 1.	cluster has at least one empty key-space
> 2.	one node be added into cluster to do bootstrap
>            Reporter: Michael Lee
>            Assignee: Jaakko Laine
>            Priority: Minor
>             Fix For: 0.5
>
>
> when use multiple key-spaces, and one key-space has no SSTable, then bootstrap may not work right.
> Say nodes A, B, C, D have key spaces "KS1" and "KS2", KS1 is empty, now add empty node E into cluster.
> Suppose E decide to drag data from A and B(bootstrap source), E will send range to A and B, and A, B will scan all key-spaces they got and send ack to E, which contains list of key-space name(StreamContextManager.StreamContext),
> when E get ack from A and B, it scan this list, but when encounter first empty key-space, it will stop and remove node from bootstrap sources list:
> StreamInitiateVerbHandler.doVerb:
> ......
>                 if (streamContexts.length == 0 && StorageService.instance().isBootstrapMode())
>                 {
>                     if (logger.isDebugEnabled())
>                         logger.debug("no data needed from " + message.getFrom());
>                     StorageService.instance().removeBootstrapSource(message.getFrom());
>                     return;
>                 }
> ......
> If list of bootstrap sources is empty, E will finish bootstrapping
> So, the result is: E get nothing from source A, B, even KS2 has lots of data.

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