Re: Get the methodName and parameters from the Call object in server.java

2016-05-02 Thread Kun Ren
Thanks a lot for your reply. Yes, I thought this before, but I didn't use this because I will insert it into a queue when I intercept the request, and sort them and do something, and then run the request, it means that the request will not be executed immediately, since I don't want to block the

Re: Get the methodName and parameters from the Call object in server.java

2016-05-02 Thread Mingliang Liu
Will the NameNodeRpcServer.java a better place for your interception (for HDFS related operations)? Thanks, L > On May 2, 2016, at 3:09 PM, Kun Ren wrote: > > Hi Genius, > > I want to intercept the requests in the processRpcRequest() method in the > listener component in server.java, for exa

Get the methodName and parameters from the Call object in server.java

2016-05-02 Thread Kun Ren
Hi Genius, I want to intercept the requests in the processRpcRequest() method in the listener component in server.java, for example if I want to intercept the "mkdirs" and "append" request, I just try to get the method name and parameters before this line: callQueue.put(call); Currently