Only start 1 subunit worker per node

This commit removes the 3 unneeded subunit worker processes from the
subunit_worker node type. Previously, 4 workers were launched on the
same node (similar to the logstash workers) but this caused issues
in production. (they consumed all the ram) After dropping down to one
process it was able to handle the load without issue and didn't
consume all the resources.

Change-Id: I5f7f85fc6f8bfb5d2fbec548b58c5d8a1bc0e628
This commit is contained in:
Matthew Treinish 2015-01-30 13:09:08 -05:00
parent a27aef70dc
commit 73b17812c0
1 changed files with 0 additions and 15 deletions

View File

@ -30,19 +30,4 @@ class openstack_project::subunit_worker (
db_host => $subunit2sql_db_host,
db_pass => $subunit2sql_db_pass,
}
subunit2sql::worker { 'B':
config_file => 'puppet:///modules/openstack_project/logstash/jenkins-subunit-worker.yaml',
db_host => $subunit2sql_db_host,
db_pass => $subunit2sql_db_pass,
}
subunit2sql::worker { 'C':
config_file => 'puppet:///modules/openstack_project/logstash/jenkins-subunit-worker.yaml',
db_host => $subunit2sql_db_host,
db_pass => $subunit2sql_db_pass,
}
subunit2sql::worker { 'D':
config_file => 'puppet:///modules/openstack_project/logstash/jenkins-subunit-worker.yaml',
db_host => $subunit2sql_db_host,
db_pass => $subunit2sql_db_pass,
}
}