-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update versions and fixes memleak in UnboundedProcessor (#1106)
This PR updates dependencies and makes minor modifications to UnboundedProcessor due to repeating failures of UnboundedProcessorJCStreassTest, which started reproducing some unspotted issues. Motivation: UnboundedProcessor is a critical component in the RSocket-Java ecosystem and must work properly. After analysis of its internal state machine, it was spotted that sometimes: The request may not be delivered due to natural concurrency The terminal signal may not be delivered since it checks for demand which might be consumed already (due to natural concurrency) The final value could be delivered violating reactive-streams spec Modifications: This PR adds a minimal set of changes, preserving old implementation but eliminating the mentioned bugs --------- Signed-off-by: Oleh Dokuka <oleh.dokuka@icloud.com>
- Loading branch information
1 parent
cb811cf
commit f591f9d
Showing
5 changed files
with
370 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
137 changes: 137 additions & 0 deletions
137
rsocket-core/src/jcstress/java/io/rsocket/utils/FastLogger.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
package io.rsocket.utils; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Comparator; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.concurrent.ConcurrentHashMap; | ||
import java.util.regex.Matcher; | ||
import java.util.regex.Pattern; | ||
import java.util.stream.Collectors; | ||
import reactor.util.Logger; | ||
|
||
/** | ||
* Implementation of {@link Logger} which is based on the {@link ThreadLocal} based queue which | ||
* collects all the events on the per-thread basis. </br> Such logger is designed to have all events | ||
* stored during the stress-test run and then sorted and printed out once all the Threads completed | ||
* execution (inside the {@link org.openjdk.jcstress.annotations.Arbiter} annotated method. </br> | ||
* Note, this implementation only supports trace-level logs and ignores all others, it is intended | ||
* to be used by {@link reactor.core.publisher.StateLogger}. | ||
*/ | ||
public class FastLogger implements Logger { | ||
|
||
final Map<Thread, List<String>> queues = new ConcurrentHashMap<>(); | ||
|
||
final ThreadLocal<List<String>> logsQueueLocal = | ||
ThreadLocal.withInitial( | ||
() -> { | ||
final ArrayList<String> logs = new ArrayList<>(100); | ||
queues.put(Thread.currentThread(), logs); | ||
return logs; | ||
}); | ||
|
||
private final String name; | ||
|
||
public FastLogger(String name) { | ||
this.name = name; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return queues | ||
.values() | ||
.stream() | ||
.flatMap(List::stream) | ||
.sorted( | ||
Comparator.comparingLong( | ||
s -> { | ||
Pattern pattern = Pattern.compile("\\[(.*?)]"); | ||
Matcher matcher = pattern.matcher(s); | ||
matcher.find(); | ||
return Long.parseLong(matcher.group(1)); | ||
})) | ||
.collect(Collectors.joining("\n")); | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return this.name; | ||
} | ||
|
||
@Override | ||
public boolean isTraceEnabled() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public void trace(String msg) { | ||
logsQueueLocal.get().add(String.format("[%s] %s", System.nanoTime(), msg)); | ||
} | ||
|
||
@Override | ||
public void trace(String format, Object... arguments) { | ||
trace(String.format(format, arguments)); | ||
} | ||
|
||
@Override | ||
public void trace(String msg, Throwable t) { | ||
trace(String.format("%s, %s", msg, Arrays.toString(t.getStackTrace()))); | ||
} | ||
|
||
@Override | ||
public boolean isDebugEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void debug(String msg) {} | ||
|
||
@Override | ||
public void debug(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void debug(String msg, Throwable t) {} | ||
|
||
@Override | ||
public boolean isInfoEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void info(String msg) {} | ||
|
||
@Override | ||
public void info(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void info(String msg, Throwable t) {} | ||
|
||
@Override | ||
public boolean isWarnEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void warn(String msg) {} | ||
|
||
@Override | ||
public void warn(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void warn(String msg, Throwable t) {} | ||
|
||
@Override | ||
public boolean isErrorEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void error(String msg) {} | ||
|
||
@Override | ||
public void error(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void error(String msg, Throwable t) {} | ||
} |
Oops, something went wrong.