Skip to content

Commit

Permalink
Increase default number of users to 1000 to improve sucess with firstRun
Browse files Browse the repository at this point in the history
  • Loading branch information
hrosenbe committed Nov 1, 2017
1 parent 2978889 commit ad19e90
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions runHarness/Parameters.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ $parameters{"interactive"} = {

$parameters{"users"} = {
"type" => "=s",
"default" => "300",
"default" => "1000",
"parent" => "appInstance",
"usageText" =>
"This is the number of simulated users to use for a run.\n\tThe number of simulated users is the primary metric of load for the Weathervane benchmark.",
Expand All @@ -1070,7 +1070,7 @@ $parameters{"users"} = {

$parameters{"maxUsers"} = {
"type" => "=i",
"default" => 300,
"default" => 1000,
"parent" => "dataManager",
"usageText" =>
"This parameter controls how much data is pre-loaded into the data services.\nIt is the maximum number of simulated users that will be used for this data-load.\n",
Expand Down
4 changes: 2 additions & 2 deletions weathervane.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
# The number of simulated users to be active in a run.
# The number of users must be at least 60.
#
#"users" : 300,
#"users" : 1000,

# This parameter controls how much data is pre-loaded into the data services.
# It is the maximum number of simulated users that will be used when loading
# the data for this run.
#
#"maxUsers" : 300,
#"maxUsers" : 1000,

# This parameter controls the maximum run duration, in seconds, that needs
# to be supported by the preloaded data. If the current load won't support this
Expand Down
4 changes: 2 additions & 2 deletions weathervane.config.hierarchical
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{
#"users" : 300,
#"maxUsers" : 300,
#"users" : 1000,
#"maxUsers" : 1000,

"description" : "Hierarchical Weathervane Config.",
"runLength" : "medium",
Expand Down
4 changes: 2 additions & 2 deletions weathervane.config.simple
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{
#"users" : 300,
#"maxUsers" : 300,
#"users" : 1000,
#"maxUsers" : 1000,

"description" : "Simple Weathervane Config.",
"runLength" : "medium",
Expand Down

0 comments on commit ad19e90

Please sign in to comment.