forked from dpkp/kafka-python
-
Notifications
You must be signed in to change notification settings - Fork 13
KAFKA-4160: Ensure rebalance listener not called with coordinator lock #164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
wbarnha
wants to merge
114
commits into
kafka-python-ng:master
Choose a base branch
from
dpkp:KAFKA_4160_rebalance_listener_without_lock
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
KAFKA-4160: Ensure rebalance listener not called with coordinator lock #164
wbarnha
wants to merge
114
commits into
kafka-python-ng:master
from
dpkp:KAFKA_4160_rebalance_listener_without_lock
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This reverts commit a6d0579.
* Drop dist packaging steps and focus instead on testing. * Merge kafka/java matrix. * Separate pylint step, ignore errors for now.
* handle artifact downloads; patch libs on install for kafka < 1 * export env vars * no progressbar for wget * Add lint: target; call pytest directly in test: recipe * Use make targets in gh workflow; use java 21; drop java helper script * add zstandard to requirements-dev
Co-authored-by: micwoj92 <45581170+micwoj92@users.noreply.github.com>
Co-authored-by: HalfSweet <60973476+HalfSweet@users.noreply.github.com>
Co-authored-by: Denis Otkidach <denis.otkidach@gmail.com>
Co-authored-by: Laityned <d.a.w.markus@student.tue.nl> Co-authored-by: misha.gavela <Arfey17.mg@gmail.com>
Co-authored-by: Dave Voutila <voutilad@gmail.com>
Co-authored-by: drewdogg <drewdogg@users.noreply.github.com>
Co-authored-by: chopatate <florian.courouge@outlook.fr>
…onn.check_version (#2477)
* conn: no connection delays between dns entries; merge blacked_out w/ connection_delay * conn: next_ifr_request_timeout_ms() returns delay until next req timeout * Drop poll timeout reset when no in flight requests * Do not mark conn as sending if future immediately resolves (error) * client poll: do not set 100ms timeout for unfinished futures * Improve metadata refresh backoff/retry -- respect connection delays * conn: honor reconnect backoff in connection_delay when connecting * Log connection delay for not-ready nodes in producer sender loop * Increase default reconnect_backoff_max_ms to 30000 (30 secs)
159f5a3
to
0ed425c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See https://issues.apache.org/jira/browse/KAFKA-4160 . The original fix was intended to support rebalance listeners that may run longer than the session timeout.
This change is