Package feast.proto.core
Class JobControllerServiceGrpc.JobControllerServiceFutureStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractFutureStub<JobControllerServiceGrpc.JobControllerServiceFutureStub>
-
- feast.proto.core.JobControllerServiceGrpc.JobControllerServiceFutureStub
-
- Enclosing class:
- JobControllerServiceGrpc
public static final class JobControllerServiceGrpc.JobControllerServiceFutureStub extends io.grpc.stub.AbstractFutureStub<JobControllerServiceGrpc.JobControllerServiceFutureStub>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected JobControllerServiceGrpc.JobControllerServiceFutureStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions)com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListIngestionJobsResponse>listIngestionJobs(CoreServiceProto.ListIngestionJobsRequest request)List Ingestion Jobs given an optional filter.com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.RestartIngestionJobResponse>restartIngestionJob(CoreServiceProto.RestartIngestionJobRequest request)Restart an Ingestion Job.com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.StopIngestionJobResponse>stopIngestionJob(CoreServiceProto.StopIngestionJobRequest request)Stop an Ingestion Job.
-
-
-
Method Detail
-
build
protected JobControllerServiceGrpc.JobControllerServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
buildin classio.grpc.stub.AbstractStub<JobControllerServiceGrpc.JobControllerServiceFutureStub>
-
listIngestionJobs
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListIngestionJobsResponse> listIngestionJobs(CoreServiceProto.ListIngestionJobsRequest request)
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 com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.RestartIngestionJobResponse> restartIngestionJob(CoreServiceProto.RestartIngestionJobRequest request)
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 com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.StopIngestionJobResponse> stopIngestionJob(CoreServiceProto.StopIngestionJobRequest request)
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
-
-