I am attempting to stress test an OOD platform. I am using locust to do so, but have not been able to get dummy accounts set up (yet - it would make this a lot simpler if and when that happens).
As a work around I am using my own login details, and generating multiple session cookies to authenticate each “user” (i.e. each user has a separate session). While I know this is not ideal, I have a couple of questions to gauge just how not ideal it is…
-
Will using the same user account but different OOD sessions pose a bottleneck somewhere that will not occur if I were to use different user accounts. I am guessing probably, but it would be good for someone to confirm.
-
In order to get a unique interactive Jupyter session I load the interactive sessions page, which can get somewhat large depending on the number of “users” (i.e. each “user” has its own session cookies, and launches its own interactove session which is then grabbed from this page). It looks like perhaps there is a timeout on the loading of the page (as the response times seems to very often hit 60 seconds and then fail). Where are the timeouts for the server to respond set, i cant seem to see it in the docs? And will this increased response time be seen by all users, or is it a bottleneck due to using different sessions for one user.
Thanks for any advice!