Skip to content

Commit

Permalink
Reduce internal queue limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibob7 committed Jul 22, 2019
1 parent 51ec6a7 commit d270ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esque/clients.py
Expand Up @@ -114,7 +114,7 @@ def get_file_writer(self, partition: int) -> FileWriter:
class Producer(ABC):
def __init__(self):
self.queue_length = 100000
self.internal_queue_length_limit = self.queue_length / 0.8
self.internal_queue_length_limit = self.queue_length / 0.5
self._config = Config().create_confluent_config()
self._config.update(
{
Expand Down

0 comments on commit d270ad1

Please sign in to comment.