dlmarion commented on PR #5375: URL: https://github.com/apache/accumulo/pull/5375#issuecomment-2694513669
> > @ctubbsii and @dlmarion curious if you have any insight into why the thrift one way messages are not executing in parallel on the tablet server. > > I thought there was some issue you found awhile back that indicated there was an issue with the thrift server type that made it use a small number of threads (maybe one) for handling RPC requests. I don't recall the details. It looks our default Thrift server [type](https://github.com/apache/accumulo/blob/2.1/server/base/src/main/java/org/apache/accumulo/server/rpc/ThriftServerType.java#L58) will end up [creating](https://github.com/apache/accumulo/blob/2.1/server/base/src/main/java/org/apache/accumulo/server/rpc/TServerUtils.java#L266) a custom non-blocking Thrift server with one accept thread. If the value of `GENERAL_RPC_SERVER_TYPE` is set to `threadpool`, then it ends up [creating](https://github.com/apache/accumulo/blob/2.1/server/base/src/main/java/org/apache/accumulo/server/rpc/TServerUtils.java#L228) a Thrift server will multiple select threads. I would suggest making this change to see if you see a difference. It's possible that the tablet server's single accept thread is busy working on other RPCs and hasn't gotten around to the one you are interested in yet. -- 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]
