Package feast.proto.serving
Class ServingServiceGrpc.ServingServiceFutureStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<ServingServiceGrpc.ServingServiceFutureStub>
-
- feast.proto.serving.ServingServiceGrpc.ServingServiceFutureStub
-
- Enclosing class:
- ServingServiceGrpc
public static final class ServingServiceGrpc.ServingServiceFutureStub extends io.grpc.stub.AbstractStub<ServingServiceGrpc.ServingServiceFutureStub>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ServingServiceGrpc.ServingServiceFutureStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions)com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetBatchFeaturesResponse>getBatchFeatures(ServingAPIProto.GetBatchFeaturesRequest request)Get batch features asynchronously.com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetFeastServingInfoResponse>getFeastServingInfo(ServingAPIProto.GetFeastServingInfoRequest request)Get information about this Feast serving.com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetJobResponse>getJob(ServingAPIProto.GetJobRequest request)Get the latest job status for batch feature retrieval.com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetOnlineFeaturesResponse>getOnlineFeatures(ServingAPIProto.GetOnlineFeaturesRequest request)Get online features synchronously.
-
-
-
Method Detail
-
build
protected ServingServiceGrpc.ServingServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
buildin classio.grpc.stub.AbstractStub<ServingServiceGrpc.ServingServiceFutureStub>
-
getFeastServingInfo
public com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetFeastServingInfoResponse> getFeastServingInfo(ServingAPIProto.GetFeastServingInfoRequest request)
Get information about this Feast serving.
-
getOnlineFeatures
public com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetOnlineFeaturesResponse> getOnlineFeatures(ServingAPIProto.GetOnlineFeaturesRequest request)
Get online features synchronously.
-
getBatchFeatures
public com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetBatchFeaturesResponse> getBatchFeatures(ServingAPIProto.GetBatchFeaturesRequest request)
Get batch features asynchronously. The client should check the status of the returned job periodically by calling ReloadJob to determine if the job has completed successfully or with an error. If the job completes successfully i.e. status = JOB_STATUS_DONE with no error, then the client can check the file_uris for the location to download feature values data. The client is assumed to have access to these file URIs.
-
getJob
public com.google.common.util.concurrent.ListenableFuture<ServingAPIProto.GetJobResponse> getJob(ServingAPIProto.GetJobRequest request)
Get the latest job status for batch feature retrieval.
-
-