Class StoreGrpcServiceImpl
java.lang.Object
com.linkedin.venice.protocols.controller.StoreGrpcServiceGrpc.StoreGrpcServiceImplBase
com.linkedin.venice.controller.grpc.server.StoreGrpcServiceImpl
- All Implemented Interfaces:
StoreGrpcServiceGrpc.AsyncService,io.grpc.BindableService
-
Constructor Summary
ConstructorsConstructorDescriptionStoreGrpcServiceImpl(StoreRequestHandler storeRequestHandler, VeniceControllerAccessManager accessManager) -
Method Summary
Modifier and TypeMethodDescriptionvoidcheckResourceCleanupForStoreCreation(ClusterStoreGrpcInfo request, io.grpc.stub.StreamObserver<ResourceCleanupCheckGrpcResponse> responseObserver) voidcreateStore(CreateStoreGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<CreateStoreGrpcResponse> responseObserver) voiddeleteAclForStore(DeleteAclForStoreGrpcRequest request, io.grpc.stub.StreamObserver<DeleteAclForStoreGrpcResponse> responseObserver) voidgetAclForStore(GetAclForStoreGrpcRequest request, io.grpc.stub.StreamObserver<GetAclForStoreGrpcResponse> responseObserver) voidgetStore(GetStoreGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<GetStoreGrpcResponse> responseObserver) Gets store information for a given store in a cluster.voidlistStores(ListStoresGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<ListStoresGrpcResponse> responseObserver) Lists all stores in a cluster with optional filtering.voidupdateAclForStore(UpdateAclForStoreGrpcRequest request, io.grpc.stub.StreamObserver<UpdateAclForStoreGrpcResponse> responseObserver) voidvalidateStoreDeleted(ValidateStoreDeletedGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<ValidateStoreDeletedGrpcResponse> responseObserver) Methods inherited from class com.linkedin.venice.protocols.controller.StoreGrpcServiceGrpc.StoreGrpcServiceImplBase
bindService
-
Constructor Details
-
StoreGrpcServiceImpl
public StoreGrpcServiceImpl(StoreRequestHandler storeRequestHandler, VeniceControllerAccessManager accessManager)
-
-
Method Details
-
createStore
public void createStore(CreateStoreGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<CreateStoreGrpcResponse> responseObserver) -
updateAclForStore
public void updateAclForStore(UpdateAclForStoreGrpcRequest request, io.grpc.stub.StreamObserver<UpdateAclForStoreGrpcResponse> responseObserver) -
getAclForStore
public void getAclForStore(GetAclForStoreGrpcRequest request, io.grpc.stub.StreamObserver<GetAclForStoreGrpcResponse> responseObserver) -
deleteAclForStore
public void deleteAclForStore(DeleteAclForStoreGrpcRequest request, io.grpc.stub.StreamObserver<DeleteAclForStoreGrpcResponse> responseObserver) -
checkResourceCleanupForStoreCreation
public void checkResourceCleanupForStoreCreation(ClusterStoreGrpcInfo request, io.grpc.stub.StreamObserver<ResourceCleanupCheckGrpcResponse> responseObserver) -
validateStoreDeleted
public void validateStoreDeleted(ValidateStoreDeletedGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<ValidateStoreDeletedGrpcResponse> responseObserver) -
listStores
public void listStores(ListStoresGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<ListStoresGrpcResponse> responseObserver) Lists all stores in a cluster with optional filtering. No ACL check; any user can list stores. -
getStore
public void getStore(GetStoreGrpcRequest grpcRequest, io.grpc.stub.StreamObserver<GetStoreGrpcResponse> responseObserver) Gets store information for a given store in a cluster. No ACL check; this is a read-only operation.
-