Merge pull request #10546 from sfc-gh-ajbeamon/speedup-dr-upgrade
Speed up DR upgrade tests
This commit is contained in:
commit
09a0a60c07
|
@ -628,8 +628,8 @@ ACTOR Future<Void> readCommitted(Database cx,
|
|||
}
|
||||
rangevalue = copy;
|
||||
rangevalue.more = true;
|
||||
// Half of the time wait for this tr to expire so that the next read is at a different version
|
||||
if (deterministicRandom()->random01() < 0.5)
|
||||
// Some of the time wait for this tr to expire so that the next read is at a different version
|
||||
if (deterministicRandom()->random01() < 0.01)
|
||||
wait(delay(6.0));
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ simBackupAgents=BackupToDB
|
|||
|
||||
testName=Cycle
|
||||
nodeCount=30000
|
||||
transactionsPerSecond=2500.0
|
||||
transactionsPerSecond=1000.0
|
||||
testDuration=30.0
|
||||
expectedRate=0
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ waitForQuiescenceBegin=false
|
|||
|
||||
testName=Cycle
|
||||
nodeCount=30000
|
||||
transactionsPerSecond=2500.0
|
||||
transactionsPerSecond=1000.0
|
||||
testDuration=30.0
|
||||
expectedRate=0
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ simBackupAgents=BackupToDB
|
|||
|
||||
testName=Cycle
|
||||
nodeCount=30000
|
||||
transactionsPerSecond=2500.0
|
||||
transactionsPerSecond=1000.0
|
||||
testDuration=30.0
|
||||
expectedRate=0
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ waitForQuiescenceBegin=false
|
|||
|
||||
testName=Cycle
|
||||
nodeCount=30000
|
||||
transactionsPerSecond=2500.0
|
||||
transactionsPerSecond=1000.0
|
||||
testDuration=30.0
|
||||
expectedRate=0
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ simBackupAgents = "BackupToDB"
|
|||
[[test.workload]]
|
||||
testName = "Cycle"
|
||||
nodeCount = 30000
|
||||
transactionsPerSecond = 2500.0
|
||||
transactionsPerSecond = 1000.0
|
||||
testDuration = 30.0
|
||||
expectedRate = 0
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ waitForQuiescenceBegin = false
|
|||
[[test.workload]]
|
||||
testName = "Cycle"
|
||||
nodeCount = 30000
|
||||
transactionsPerSecond = 2500.0
|
||||
transactionsPerSecond = 1000.0
|
||||
testDuration = 30.0
|
||||
expectedRate = 0
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ simBackupAgents = "BackupToDB"
|
|||
[[test.workload]]
|
||||
testName = "Cycle"
|
||||
nodeCount = 30000
|
||||
transactionsPerSecond = 2500.0
|
||||
transactionsPerSecond = 1000.0
|
||||
testDuration = 30.0
|
||||
expectedRate = 0
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ waitForQuiescenceBegin = false
|
|||
[[test.workload]]
|
||||
testName = "Cycle"
|
||||
nodeCount = 30000
|
||||
transactionsPerSecond = 2500.0
|
||||
transactionsPerSecond = 1000.0
|
||||
testDuration = 30.0
|
||||
expectedRate = 0
|
||||
|
||||
|
|
Loading…
Reference in New Issue