We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I get a memory leak when my consumers work on dev enviroments, without any load
Expected Behavior memory not leak
Actual Behavior memory leak
Steps to reproduce Our Consumer creation code is below
.createReceiveRecord( new TypeReference<OrderEventRetryDTO>() { }, kafkaConsumerConfigProperties) .doOnNext(this::process) .onErrorContinue(this::onError) .doOnError(exception -> log.error(String.format( "Exception while consuming message on topic=%s with error = ", topic), exception)) .subscribe();
In dynatrace we are seeing this below.
Our Environment Java version: 17 Reactor version(s) used: io.projectreactor.kafka:reactor-kafka: 1.3.8
The text was updated successfully, but these errors were encountered:
Have you looked at the heap to see what the leak consists of?
Sorry, something went wrong.
No branches or pull requests
I get a memory leak when my consumers work on dev enviroments, without any load
Expected Behavior
memory not leak
Actual Behavior
memory leak
Steps to reproduce
Our Consumer creation code is below
In dynatrace we are seeing this below.
Our Environment
Java version: 17
Reactor version(s) used: io.projectreactor.kafka:reactor-kafka: 1.3.8
The text was updated successfully, but these errors were encountered: