Package feast.proto.core
Class JobServiceGrpc.JobServiceImplBase
- java.lang.Object
-
- feast.proto.core.JobServiceGrpc.JobServiceImplBase
-
- All Implemented Interfaces:
io.grpc.BindableService
- Enclosing class:
- JobServiceGrpc
public abstract static class JobServiceGrpc.JobServiceImplBase extends Object implements io.grpc.BindableService
-
-
Constructor Summary
Constructors Constructor Description JobServiceImplBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.grpc.ServerServiceDefinitionbindService()voidcancelJob(JobServiceProto.CancelJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.CancelJobResponse> responseObserver)Cancel a single jobvoidgetHistoricalFeatures(JobServiceProto.GetHistoricalFeaturesRequest request, io.grpc.stub.StreamObserver<JobServiceProto.GetHistoricalFeaturesResponse> responseObserver)Produce a training dataset, return a job id that will provide a file referencevoidgetJob(JobServiceProto.GetJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.GetJobResponse> responseObserver)Get details of a single jobvoidlistJobs(JobServiceProto.ListJobsRequest request, io.grpc.stub.StreamObserver<JobServiceProto.ListJobsResponse> responseObserver)List all types of jobsvoidstartOfflineToOnlineIngestionJob(JobServiceProto.StartOfflineToOnlineIngestionJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.StartOfflineToOnlineIngestionJobResponse> responseObserver)Start job to ingest data from offline store into online storevoidstartStreamToOnlineIngestionJob(JobServiceProto.StartStreamToOnlineIngestionJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.StartStreamToOnlineIngestionJobResponse> responseObserver)Start job to ingest data from stream into online store
-
-
-
Method Detail
-
startOfflineToOnlineIngestionJob
public void startOfflineToOnlineIngestionJob(JobServiceProto.StartOfflineToOnlineIngestionJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.StartOfflineToOnlineIngestionJobResponse> responseObserver)
Start job to ingest data from offline store into online store
-
getHistoricalFeatures
public void getHistoricalFeatures(JobServiceProto.GetHistoricalFeaturesRequest request, io.grpc.stub.StreamObserver<JobServiceProto.GetHistoricalFeaturesResponse> responseObserver)
Produce a training dataset, return a job id that will provide a file reference
-
startStreamToOnlineIngestionJob
public void startStreamToOnlineIngestionJob(JobServiceProto.StartStreamToOnlineIngestionJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.StartStreamToOnlineIngestionJobResponse> responseObserver)
Start job to ingest data from stream into online store
-
listJobs
public void listJobs(JobServiceProto.ListJobsRequest request, io.grpc.stub.StreamObserver<JobServiceProto.ListJobsResponse> responseObserver)
List all types of jobs
-
cancelJob
public void cancelJob(JobServiceProto.CancelJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.CancelJobResponse> responseObserver)
Cancel a single job
-
getJob
public void getJob(JobServiceProto.GetJobRequest request, io.grpc.stub.StreamObserver<JobServiceProto.GetJobResponse> responseObserver)
Get details of a single job
-
bindService
public final io.grpc.ServerServiceDefinition bindService()
- Specified by:
bindServicein interfaceio.grpc.BindableService
-
-