keith-turner commented on issue #3512: URL: https://github.com/apache/accumulo/issues/3512#issuecomment-1607831114
While examining the code looking for causes I found one possible candidate cause for this. It may not be the cause of this problem, but it needs to be fixed. Scan sessions register a cleanup call if the session is not accessed in a certain amount of time. This cleanup code calls session.cleanUp which returns a boolean, however that return value is not checked. When it returns false the session was not cleaned up and clean up needs to be attempted again later. Below is the line where the return value was not checked. https://github.com/apache/accumulo/blob/260fde4370c06a4059fd62b5658124d61532d729/server/tserver/src/main/java/org/apache/accumulo/tserver/session/SessionManager.java#L285 I will work on a fix for this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
