[data-plane]: TokenVerifier: execute blocking calls in parallel (ordered = false
)
#3673
Labels
area/data-plane
good first issue
Denotes an issue ready for a new contributor, according to the "help wanted" guidelines.
kind/good-first-issue
Denotes an issue ready for a new contributor.
triage/accepted
Issues which should be fixed (post-triage)
Currently we don't disable the ordering of the blocking call in
eventing-kafka-broker/data-plane/core/src/main/java/dev/knative/eventing/kafka/broker/core/oidc/TokenVerifier.java
Lines 43 to 59 in 02be94e
This leads to non-parallel/serial calls and thus reduced throughput.
Therefor we should check if we can use
vertx.executeBlocking(handler, ordered)
withordered = false
.Additional Information:
executeBlocking
java docThe text was updated successfully, but these errors were encountered: