-
Notifications
You must be signed in to change notification settings - Fork 2.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
SOLR-15004: tests for the replica placement API + placement plugin fixes and light refactoring #2110
Conversation
…re accessible (and can be validated) in ClusterProperties. Fix a bug in update().
…g() to make it easier to debug / report. Improve test abstractions to make it easier to set up tests.
… states and collections
… into jira/solr-15004 (and make precommit happy)
…the affinity test.
… can be used in other placement tests (this required changing visibility of some classes / methods). Allow using the test framework random() for repeatable randomness.
…tingReplicas. There's a bug in AffinityPlacementPlugin
…plica pattern. Add a test.
… node when multiple AZ's have same number of replicas
|
||
private final long prioritizedFreeDiskGB; | ||
|
||
private Random random = new Random(); |
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.
PREDICTABLE_RANDOM: This random generator (java.util.Random) is predictable (details)
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.
This doesn't solve the issue but helps with tests, and it's a better method than adding a setter on AffinityPlacementPluginFactory
:
static {
// We try to make things reproducible in the context of our tests by initializing the random instance
// based on the current seed
String seed = System.getProperty("tests.seed");
if (seed == null) {
RANDOM = new Random();
} else {
RANDOM = new Random(seed.hashCode());
}
}
(borrowed from OCMH)
} | ||
|
||
public static class RandomPlacementPlugin implements PlacementPlugin { | ||
private Random random = new Random(); |
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.
PREDICTABLE_RANDOM: This random generator (java.util.Random) is predictable (details)
…xes and light refactoring (apache#2110) Co-authored-by: Andrzej Bialecki <ab@apache.org>
…xes and light refactoring (apache#2110) Co-authored-by: Andrzej Bialecki <ab@apache.org>
Co-authored-by: Andrzej Bialecki ab@apache.org