NREL / OpenStudio-server

The OpenStudio Server is a docker or Helm deployable instance which allows for large-scale parametric analyses of building energy models using the OpenStudio or URBANopt CLIs.
http://www.openstudio.net/
Other
46 stars 20 forks source link

increase # of concurrent analyses #784

Closed brianlball closed 3 months ago

brianlball commented 3 months ago

To increase the number of concurrent analyses, change the COUNT to the # you want below: https://github.com/NREL/OpenStudio-server/blob/develop/docker/server/start-web-background.sh#L11 you can also kubectl exec -it **web** -- /bin/bash and run COUNT=# bundle exec rake environment resque:workers manually with the # of additional analyses you want.

make sure the number of queued sims is less than the Default redis connections of 10,000 or change it to 40,000 for example with adding --maxclients 40000 to:

https://github.com/NREL/OpenStudio-server/blob/develop/docker-compose.yml#L19

brianlball commented 3 months ago

https://github.com/NREL/OpenStudio-server/pull/783