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.
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:
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 runCOUNT=# 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