-
Notifications
You must be signed in to change notification settings - Fork 117
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
Dispatcher verticles are now worker verticles #2300
Conversation
/test channel-integration-tests-sasl-plain_eventing-kafka-broker_main |
2 similar comments
/test channel-integration-tests-sasl-plain_eventing-kafka-broker_main |
/test channel-integration-tests-sasl-plain_eventing-kafka-broker_main |
/test channel-integration-tests-sasl-plain_eventing-kafka-broker_main |
/test channel-integration-tests-sasl-plain_eventing-kafka-broker_main |
Worked, retesting: /test channel-integration-tests-sasl-ssl_eventing-kafka-broker_main |
unrelated EOF error knative/pkg#1509:
and timeout on KafkaChannel readiness:
|
Retesting the EOF error: |
|
/retest-required |
Codecov Report
@@ Coverage Diff @@
## main #2300 +/- ##
============================================
- Coverage 65.51% 65.44% -0.08%
Complexity 699 699
============================================
Files 140 140
Lines 9216 9240 +24
Branches 209 211 +2
============================================
+ Hits 6038 6047 +9
- Misses 2777 2789 +12
- Partials 401 404 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Job timed out after 2h but it was working
|
/test channel-integration-tests-sasl-plain_eventing-kafka-broker_main |
/test integration-tests_eventing-kafka-broker_main |
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
Signed-off-by: Pierangelo Di Pilato <[email protected]>
/retest-required |
data-plane/core/src/main/java/dev/knative/eventing/kafka/broker/core/metrics/Metrics.java
Outdated
Show resolved
Hide resolved
data-plane/core/src/main/java/dev/knative/eventing/kafka/broker/core/metrics/Metrics.java
Outdated
Show resolved
Hide resolved
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.
Just added a minor comment.
My knowledge on Vert.x is rather limited, so, LGTM since tests are green and the reproducer is fixed
Signed-off-by: Pierangelo Di Pilato <[email protected]>
/lgtm Thanks! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aliok, pierDipi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test integration-tests_eventing-kafka-broker_main |
/cherry-pick release-1.4 |
/cherry-pick release-1.5 |
@pierDipi: #2300 failed to apply on top of branch "release-1.4":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@pierDipi: #2300 failed to apply on top of branch "release-1.5":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
* Add reproducer as test Signed-off-by: Pierangelo Di Pilato <[email protected]> * WIP fix Signed-off-by: Pierangelo Di Pilato <[email protected]> * Use for loop in reproducer Signed-off-by: Pierangelo Di Pilato <[email protected]> * Fix reproducer script path Signed-off-by: Pierangelo Di Pilato <[email protected]> * Handle closed sender Signed-off-by: Pierangelo Di Pilato <[email protected]> * Fix unit tests Signed-off-by: Pierangelo Di Pilato <[email protected]> * Describe KafkaChannel and Subscription for debugging Signed-off-by: Pierangelo Di Pilato <[email protected]> * Move reproducer to test location and use a smaller number Signed-off-by: Pierangelo Di Pilato <[email protected]> * Revert meterBinderExecutor thread pool changes Signed-off-by: Pierangelo Di Pilato <[email protected]>
* Add reproducer as test Signed-off-by: Pierangelo Di Pilato <[email protected]> * WIP fix Signed-off-by: Pierangelo Di Pilato <[email protected]> * Use for loop in reproducer Signed-off-by: Pierangelo Di Pilato <[email protected]> * Fix reproducer script path Signed-off-by: Pierangelo Di Pilato <[email protected]> * Handle closed sender Signed-off-by: Pierangelo Di Pilato <[email protected]> * Fix unit tests Signed-off-by: Pierangelo Di Pilato <[email protected]> * Describe KafkaChannel and Subscription for debugging Signed-off-by: Pierangelo Di Pilato <[email protected]> * Move reproducer to test location and use a smaller number Signed-off-by: Pierangelo Di Pilato <[email protected]> * Revert meterBinderExecutor thread pool changes Signed-off-by: Pierangelo Di Pilato <[email protected]>
* Add reproducer as test Signed-off-by: Pierangelo Di Pilato <[email protected]> * WIP fix Signed-off-by: Pierangelo Di Pilato <[email protected]> * Use for loop in reproducer Signed-off-by: Pierangelo Di Pilato <[email protected]> * Fix reproducer script path Signed-off-by: Pierangelo Di Pilato <[email protected]> * Handle closed sender Signed-off-by: Pierangelo Di Pilato <[email protected]> * Fix unit tests Signed-off-by: Pierangelo Di Pilato <[email protected]> * Describe KafkaChannel and Subscription for debugging Signed-off-by: Pierangelo Di Pilato <[email protected]> * Move reproducer to test location and use a smaller number Signed-off-by: Pierangelo Di Pilato <[email protected]> * Revert meterBinderExecutor thread pool changes Signed-off-by: Pierangelo Di Pilato <[email protected]>
Using worker verticles instead of event loop verticle
provides better isolation between consumers.
I added a reproducer for #2263 (thanks Marek)
that is now running in CI during KafkaChannel testing.
I've also improved logging which helped me tracking
down the issue.
As Vert.x's docs says:
That's the reason why we're moving to synchronized
and atomic data structures for dispatcher components.
Fixes #2263