Uploaded image for project: 'Cassandra'
  1. Cassandra
  2. CASSANDRA-1678

describe_schema_versions does not list downed hosts

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Low
    • Resolution: Fixed
    • 0.7.0 rc 1
    • Legacy/CQL
    • None
    • Low

    Description

      According to the description unreachable hosts should be listed. It does not seem like they are.

       map<string, list<string>> describe_schema_versions()
      
        [java] key:c3f38ebc-e1c5-11df-95a0-e700f669bcfc
           [java] 	127.0.0.2
           [java] 	127.0.0.3
           [java] 	127.0.0.4
           [java] 	127.0.0.1
      
      Address         Status State   Load            Token                                       
                                             105444142448428656124184491892431731479    
      127.0.0.3       Up     Normal  56.53 KB        43021486531749787992103274496183765897      
      127.0.0.1       Up     Normal  56.24 KB        49910048177093876350019363877113991186      
      127.0.0.5       Down   Normal  52.49 KB        64377498999076014343862177049497951437      
      127.0.0.2       Up     Normal  65.27 KB        84713069031498515281943177906254878023      
      127.0.0.4       Up     Normal  55.95 KB        105444142448428656124184491892431731479
      

      The code looks like this:

       Cassandra.Client client = fcw.getClient();
          Map<String,List<String>> sv =client.describe_schema_versions();
          for (Map.Entry<String,List<String>> mapEntry: sv.entrySet()){
            System.out.println("key:"+mapEntry.getKey());
            for (String listForKey : mapEntry.getValue()){
              System.out.println("\t"+listForKey);
            }
          }
      

      Attachments

        Activity

          People

            gdusbabek Gary Dusbabek
            appodictic Edward Capriolo
            Gary Dusbabek
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: