linkedin/kafka-tools

View on GitHub
kafka/tools/client.py

Summary

Maintainability
F
3 days
Test Coverage

File client.py has 666 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
Severity: Major
Found in kafka/tools/client.py - About 1 day to fix

    Client has 36 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Client:
        # Special timestamps for offset requests
        OFFSET_EARLIEST = -2
        OFFSET_LATEST = -1
    
    
    Severity: Minor
    Found in kafka/tools/client.py - About 4 hrs to fix

      Function _send_some_brokers has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def _send_some_brokers(self, requests, ignore_errors=True):
              """
              Sends a request to one or more brokers. The responses are returned mapped to the broker that
              they were retrieved from. This method uses a thread pool to parallelize sends.
      
      
      Severity: Minor
      Found in kafka/tools/client.py - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _send_list_offsets_to_brokers has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def _send_list_offsets_to_brokers(self, request_values):
              """
              Given a mapping of broker IDs to values for ListOffset requests, send the requests to all the brokers and
              collate the responses into a mapping of topic names to TopicOffsets instances
      
      
      Severity: Minor
      Found in kafka/tools/client.py - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function connect has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def connect(self):
              """
              Connect to the all cluster brokers and populate topic and partition information. If the client was created with
              a zkconnect string, first we connect to Zookeeper to bootstrap the broker and topic information from there,
              and then the client connects to all brokers in the cluster. Otherwise, connect to the bootstrap broker
      Severity: Minor
      Found in kafka/tools/client.py - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _maybe_update_metadata_for_topics has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def _maybe_update_metadata_for_topics(self, topics, cache=True):
              """
              Fetch metadata for the topics specified from the cluster if cache is False or if the cached metadata has expired.
              The cluster brokers and topics are updated with the metadata information.
      
      
      Severity: Minor
      Found in kafka/tools/client.py - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _update_groups_from_lists has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def _update_groups_from_lists(self, responses):
              """
              Given a list of ListGroups responses, make sure that all the groups are in the cluster correctly
      
              Args:
      Severity: Minor
      Found in kafka/tools/client.py - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _update_brokers_from_metadata has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def _update_brokers_from_metadata(self, metadata):
              """
              Given a Metadata response (either V0 or V1), update the broker information for this
              cluster. We don't delete brokers because we don't know if the brokers is gone temporarily
              (crashed or maintenance) or permanently.
      Severity: Minor
      Found in kafka/tools/client.py - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              try:
                  topic = self.cluster.topics[topic_name]
                  force_update = (not cache) or (not topic.updated_since(time.time() - self.configuration.metadata_refresh))
              except KeyError:
                  force_update = True
      Severity: Major
      Found in kafka/tools/client.py and 1 other location - About 3 hrs to fix
      kafka/tools/client.py on lines 202..206

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 65.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              try:
                  group = self.cluster.groups[group_name]
                  force_update = (not cache) or (not group.updated_since(time.time() - self.configuration.metadata_refresh))
              except KeyError:
                  force_update = True
      Severity: Major
      Found in kafka/tools/client.py and 1 other location - About 3 hrs to fix
      kafka/tools/client.py on lines 152..156

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 65.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              if (not cache) or (self._last_full_metadata < (time.time() - self.configuration.metadata_refresh)):
      Severity: Minor
      Found in kafka/tools/client.py and 1 other location - About 30 mins to fix
      kafka/tools/client.py on lines 789..789

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 32.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              if (not cache) or (self._last_group_list < (time.time() - self.configuration.metadata_refresh)):
      Severity: Minor
      Found in kafka/tools/client.py and 1 other location - About 30 mins to fix
      kafka/tools/client.py on lines 737..737

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 32.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      There are no issues that match your filters.

      Category
      Status