Skip to content
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

Merged
merged 28 commits into from
Dec 1, 2020

Conversation

murblanc
Copy link
Member

@murblanc murblanc commented Dec 1, 2020

Co-authored-by: Andrzej Bialecki ab@apache.org

sigram and others added 27 commits November 17, 2020 18:57
…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.
… into jira/solr-15004 (and make precommit happy)
… 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
… node when multiple AZ's have same number of replicas

private final long prioritizedFreeDiskGB;

private Random random = new Random();
Copy link

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)

Copy link
Contributor

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();
Copy link

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)

@murblanc murblanc merged commit 3df7250 into master Dec 1, 2020
@murblanc murblanc deleted the jira/solr-15004 branch December 1, 2020 21:02
ctargett pushed a commit to ctargett/lucene-solr that referenced this pull request Dec 16, 2020
…xes and light refactoring (apache#2110)

Co-authored-by: Andrzej Bialecki <ab@apache.org>
epugh pushed a commit to epugh/lucene-solr-1 that referenced this pull request Jan 15, 2021
…xes and light refactoring (apache#2110)

Co-authored-by: Andrzej Bialecki <ab@apache.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants