Package feast.proto.core
Class JobControllerServiceGrpc.JobControllerServiceStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractAsyncStub<JobControllerServiceGrpc.JobControllerServiceStub>
-
- feast.proto.core.JobControllerServiceGrpc.JobControllerServiceStub
-
- Enclosing class:
- JobControllerServiceGrpc
public static final class JobControllerServiceGrpc.JobControllerServiceStub extends io.grpc.stub.AbstractAsyncStub<JobControllerServiceGrpc.JobControllerServiceStub>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected JobControllerServiceGrpc.JobControllerServiceStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions)voidlistIngestionJobs(CoreServiceProto.ListIngestionJobsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListIngestionJobsResponse> responseObserver)List Ingestion Jobs given an optional filter.voidrestartIngestionJob(CoreServiceProto.RestartIngestionJobRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.RestartIngestionJobResponse> responseObserver)Restart an Ingestion Job.voidstopIngestionJob(CoreServiceProto.StopIngestionJobRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.StopIngestionJobResponse> responseObserver)Stop an Ingestion Job.
-
-
-
Method Detail
-
build
protected JobControllerServiceGrpc.JobControllerServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
buildin classio.grpc.stub.AbstractStub<JobControllerServiceGrpc.JobControllerServiceStub>
-
listIngestionJobs
public void listIngestionJobs(CoreServiceProto.ListIngestionJobsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListIngestionJobsResponse> responseObserver)
List Ingestion Jobs given an optional filter. Returns allow ingestions matching the given request filter. Returns all ingestion jobs if no filter is provided. Returns an empty list if no ingestion jobs match the filter.
-
restartIngestionJob
public void restartIngestionJob(CoreServiceProto.RestartIngestionJobRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.RestartIngestionJobResponse> responseObserver)
Restart an Ingestion Job. Restarts the ingestion job with the given job id. NOTE: Data might be lost during the restart for some job runners. Does not support stopping a job in a transitional (ie pending, suspending, aborting), terminal state (ie suspended or aborted) or unknown status
-
stopIngestionJob
public void stopIngestionJob(CoreServiceProto.StopIngestionJobRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.StopIngestionJobResponse> responseObserver)
Stop an Ingestion Job. Stop (Aborts) the ingestion job with the given job id. Does nothing if the target job if already in a terminal state (ie suspended or aborted). Does not support stopping a job in a transitional (ie pending, suspending, aborting) or unknown status
-
-