cshannon commented on issue #3094: URL: https://github.com/apache/accumulo/issues/3094#issuecomment-1335372632
The issue is that the original patch doesn't work because the client will never be set in the thread local. The thread local is set as part of ClientInfoProcessorFactory [here](https://github.com/apache/accumulo/blob/a541197cd3304910cf80dc83b7063a2bcd3eb1d6/server/base/src/main/java/org/apache/accumulo/server/rpc/ClientInfoProcessorFactory.java#L43) and this factory is configured when using TThreadPoolServer. However, TThreadPoolServer is specifically only used for blocking servers, not nonblocking. So we will need a different approach to capture/log the client when using the non blocking server. -- 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]
