mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Fabio Pistolesi
11.39.2015 d7b918ddbbbf1158286f04b7cec14cbd8360e7af
Follow up for OPENDJ-2190 Delete not replicated after 36h of add/delete operations on replicated topology

Align worker threads and replay threads, to compensate differences in storage behaviour the load should be managed with the same amount of resources
1 files modified
2 ■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/MultimasterReplication.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/MultimasterReplication.java
@@ -307,7 +307,7 @@
  private int getNumberOfReplayThreadsOrDefault(ReplicationSynchronizationProviderCfg cfg)
  {
    Integer value = cfg.getNumUpdateReplayThreads();
    return value == null ? Platform.computeNumberOfThreads(16, 1.5f) : value;
    return value == null ? Platform.computeNumberOfThreads(16, 2.0f) : value;
  }
  /**