We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d90861 commit 5dce0f4Copy full SHA for 5dce0f4
1 file changed
src/aind_ephys_portal/panel/logging.py
@@ -150,7 +150,7 @@ def get_max_number_of_gui_sessions():
150
print(f"Using MAX_GUI_SESSIONS_PER_TASK from environment: {os.environ['MAX_GUI_SESSIONS_PER_TASK']}")
151
MAX_SESSIONS_PER_WORKER = int(os.environ["MAX_GUI_SESSIONS_PER_TASK"])
152
else:
153
- SESSION_AVG_RAM_USAGE_GB = 2
+ SESSION_AVG_RAM_USAGE_GB = 6
154
TOTAL_RAM_GB = get_container_total_memory() / (1024**3)
155
MAX_SESSIONS_PER_WORKER = int(np.floor(TOTAL_RAM_GB / SESSION_AVG_RAM_USAGE_GB))
156
0 commit comments