Reduce expectations on WORKLOAD_SIZE to 3000 since Apache Geode's resource management is severly comprimised.

Apache Geode simply cannot handle 180 concurrent Threads running 4000 workload tasks reliably.
This commit is contained in:
John Blum
2020-03-03 04:46:14 +01:00
parent 428aa46fd0
commit 140bab4920

View File

@@ -92,7 +92,7 @@ public class MultiThreadedHighlyConcurrentClientServerHttpSessionAccessIntegrati
// NOTE: This issue may be related to (from Anil Gingade): https://issues.apache.org/jira/browse/GEODE-7663
// NOTE: See https://issues.apache.org/jira/browse/GEODE-7763
private static final int THREAD_COUNT = 180;
private static final int WORKLOAD_SIZE = 4000;
private static final int WORKLOAD_SIZE = 3000;
@BeforeClass
public static void startGemFireServer() throws IOException {