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 wfssrv process is quite resource-intensive even when not being actively used. It appears that garbage collection is not being done properly which appears to be an issue with tornado in some circumstances. Need to go through and make sure all of the callbacks are exiting properly, unused objects get deleted manually, and maybe add some direct calls to gc to force garbage collection to happen.
The text was updated successfully, but these errors were encountered:
it starts off much smaller and increases with use, but seems to eventually stabilize around this level of usage. so it looks like it's not actively leaking, but it seems like there are things that could probably be garbage collected.
The
wfssrv
process is quite resource-intensive even when not being actively used. It appears that garbage collection is not being done properly which appears to be an issue with tornado in some circumstances. Need to go through and make sure all of the callbacks are exiting properly, unused objects get deleted manually, and maybe add some direct calls togc
to force garbage collection to happen.The text was updated successfully, but these errors were encountered: