-
Notifications
You must be signed in to change notification settings - Fork 336
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
[fix] Reconnection logic and Backoff policy doesn't work correctly #1197
Conversation
@RobertIndie PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm concerned that such breaking changes could significantly impact users. Users would have to implement the new methods introduced by the backoff policy, even if they haven't encountered this issue. Perhaps we could consider including this change in the 1.0 version.
I have initiated a discussion of the Go client 1.0.0: https://lists.apache.org/thread/h022q6nrk23tz2k0qpxjf6j8m1o4qsrt
Yes, I agree with you. |
Any updates? |
# Conflicts: # pulsar/consumer_partition.go # pulsar/internal/rpc_client.go # pulsar/producer_partition.go
@nodece The code conflicts have been resolved, but this PR involves changes to the public API. Do you recommend releasing it in version v0.13.0? |
A breaking change that we add new method to the In the user project, the user cannot import the |
Co-authored-by: Zixuan Liu <nodeces@gmail.com>
Co-authored-by: Zixuan Liu <nodeces@gmail.com>
Co-authored-by: Zixuan Liu <nodeces@gmail.com>
Update:
pulsar-client-go/pulsar/consumer_partition.go Lines 1709 to 1712 in 1152cfc
pulsar-client-go/pulsar/consumer_partition.go Lines 607 to 609 in 1152cfc
|
Co-authored-by: Zixuan Liu <nodeces@gmail.com>
Co-authored-by: Zixuan Liu <nodeces@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please help resolve the conflicts
# Conflicts: # pulsar/producer_partition.go # pulsar/producer_test.go
Co-authored-by: Zike Yang <zike@apache.org>
Co-authored-by: Zike Yang <zike@apache.org>
Fixes #1187
Modifications
backoff.go
to thebackoff
directory (because there are circular dependencies, they are not moved to the pulsar directory.)BackOffPolicy
interfaceIsMaxBackoffReached(delayReconnectTime, totalDelayReconnectTime time.Duration) bool
This is a breaking change that modifies the package name and interface name.
Package:
internal
->backoff
Interface name:
BackoffPolicy
->Policy
Verifying this change
Does this pull request potentially affect one of the following parts:
If
yes
was chosen, please highlight the changesDocumentation