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
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
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