szlta commented on a change in pull request #909: HIVE-22821
URL: https://github.com/apache/hive/pull/909#discussion_r388200796
##########
File path:
llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapProtocolServerImpl.java
##########
@@ -333,6 +333,23 @@ public GetTokenResponseProto
getDelegationToken(RpcController controller,
}
}
+ @Override
+ public LlapDaemonProtocolProtos.EvictEntityResponseProto evictEntity(
+ RpcController controller,
LlapDaemonProtocolProtos.EvictEntityRequestProto protoRequest)
+ throws ServiceException {
+ LlapDaemonProtocolProtos.EvictEntityResponseProto.Builder
responseProtoBuilder =
+ LlapDaemonProtocolProtos.EvictEntityResponseProto.newBuilder();
+
+ LlapIo<?> llapIo = LlapProxy.getIo();
+ if (llapIo != null) {
+ llapIo.evictEntity(protoRequest);
+ responseProtoBuilder.setAck(true);
Review comment:
Yes, ff we opt to get rid of async stuff this will make sense to do
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]