Hi there,
I need some assistance in understanding exactly how Dash processes requests in a multi user environment and whether there are potential risks for race conditions/collisions.
I am running a dash app on an AWS ECS task with 8 gunicorn workers. This app can be accessed by multiple users from remote locations.
Our component IDs are fairly predictable (i.e dropdown button is dropdown-button). Does the callback map on the backend distinguish between the various worker processes? For instance, would it be possible for two callbacks in remote locations to become tied to a race condition, where the value of a given output become based on a first come-first served (or equivalent). If this is the case, would it not be possible for requests to become cross-contaminated?
We don’t currently have any session based management on the app which would be an obvious solution (to perhaps a non-existant problem).
Apologies if a silly question but we’re trying to process any potential issues in scaling our operation.
Thanks