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
I discovered a memory leak in a service that constantly creates, looks up, and deletes tables.
the code juse delete the client from array but not close the client.
the client's goroutine like receive_rpcs(contain one tmp buffer for conn) will always exist.
For example, a table is deleted, but regionsever is normal. Requesting again may trigger the shutdown logic, but I'm not sure.
The text was updated successfully, but these errors were encountered:
I discovered a memory leak in a service that constantly creates, looks up, and deletes tables.
the code juse delete the client from array but not close the client.
the client's goroutine like receive_rpcs(contain one tmp buffer for conn) will always exist.
For example, a table is deleted, but regionsever is normal. Requesting again may trigger the shutdown logic, but I'm not sure.
The text was updated successfully, but these errors were encountered: