You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The limiting factor for concurrency in our case is not cpus (these apps are nearly alway I/O bound), but the amount of memory we'd like to dedicate to portunusd itself. If this can be expressed in the config file (or if a reasonable default can be inferred from the zone's memory allocation) then we can set the threadpool size to S = floor(M/T), where M is the aformentioned memory limit, and T is the per-thread stack size.
The text was updated successfully, but these errors were encountered:
The limiting factor for concurrency in our case is not cpus (these apps are nearly alway I/O bound), but the amount of memory we'd like to dedicate to portunusd itself. If this can be expressed in the config file (or if a reasonable default can be inferred from the zone's memory allocation) then we can set the threadpool size to
S = floor(M/T)
, whereM
is the aformentioned memory limit, andT
is the per-thread stack size.The text was updated successfully, but these errors were encountered: