regionserver端会启动一个protected final RSRpcServices rpcServices来负责处理client发起的各种rpc请求。
对于写入请求来说,最终会调用HRegion的doBatchMutate(Mutation mutation)或
mutateRowsWithLocks(Collection<Mutation> mutations,Collection<byte[]> rowsToLock, long nonceGroup, long nonce)
这2个方法的处理流程基本类似,具体处理流程如下: