-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Allow for topic deletions with regex consumers #5230
Conversation
run cpp tests |
run integration tests |
run java8 tests |
@jiazhai since you are familiar with regex subscription and also involved in the original discussion, can you please take a look at this change? |
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.
Logic looks good.
run java8 tests |
1 similar comment
run java8 tests |
The pr change the proto file, will move the milestone to |
I've just created #6136 to fix the release notes |
### Motivation *A change that had to be moved to 2.5.0 (because it [changed the .proto file](#5230 (comment))), is still listed as having been done in 2.4.2 in the release notes.* ### Modifications *Move the change from 2.4.2 to 2.5.0.*
### Motivation *A change that had to be moved to 2.5.0 (because it [changed the .proto file](apache#5230 (comment))), is still listed as having been done in 2.4.2 in the release notes.* ### Modifications *Move the change from 2.4.2 to 2.5.0.*
Motivation
Currently it's not possible to delete topics when there is a regex consumer attached to them. The reason is that the regex consumer will immediately reconnect and cause the topic to be re-created.
Modifications