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

Large number of bootstrapping nodes cause gossip to stop working

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Normal
    • Resolution: Fixed
    • 1.1.11, 1.2.5
    • None
    • None
    • Normal

    Description

      Long running section of code in PendingRangeCalculatorService is synchronized on bootstrapTokens. This causes gossip to stop working as it waits for the same lock when a large number of nodes (hundreds in our case) are bootstrapping. Consequently, the whole cluster becomes non-functional.

      I experimented with the following change in PendingRangeCalculatorService.java and it resolved the problem in our case. Prior code had synchronized around the for loop.

      synchronized(bootstrapTokens) {
      bootstrapTokens = new LinkedHashMap<Token, InetAddress>(bootstrapTokens);
      }

      for (Map.Entry<Token, InetAddress> entry : bootstrapTokens.entrySet())
      {
      InetAddress endpoint = entry.getValue();

      allLeftMetadata.updateNormalToken(entry.getKey(), endpoint);
      for (Range<Token> range : strategy.getAddressRanges(allLeftMetadata).get(endpoint))
      pendingRanges.put(range, endpoint);
      allLeftMetadata.removeEndpoint(endpoint);
      }

      Attachments

        Activity

          People

            okibirev Oleg Kibirev
            okibirev Oleg Kibirev
            Oleg Kibirev
            Brandon Williams
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: