public static final class CoreServiceGrpc.CoreServiceFutureStub extends io.grpc.stub.AbstractStub<CoreServiceGrpc.CoreServiceFutureStub>
| Modifier and Type | Method and Description |
|---|---|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ApplyFeatureSetResponse> |
applyFeatureSet(CoreServiceProto.ApplyFeatureSetRequest request)
Create or update and existing feature set.
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ArchiveProjectResponse> |
archiveProject(CoreServiceProto.ArchiveProjectRequest request)
Archives a project.
|
protected CoreServiceGrpc.CoreServiceFutureStub |
build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) |
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.CreateProjectResponse> |
createProject(CoreServiceProto.CreateProjectRequest request)
Creates a project.
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.GetFeastCoreVersionResponse> |
getFeastCoreVersion(CoreServiceProto.GetFeastCoreVersionRequest request)
Retrieve version information about this Feast deployment
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.GetFeatureSetResponse> |
getFeatureSet(CoreServiceProto.GetFeatureSetRequest request)
Returns a specific feature set
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListFeatureSetsResponse> |
listFeatureSets(CoreServiceProto.ListFeatureSetsRequest request)
Retrieve feature set details given a filter.
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListProjectsResponse> |
listProjects(CoreServiceProto.ListProjectsRequest request)
Lists all projects active projects.
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListStoresResponse> |
listStores(CoreServiceProto.ListStoresRequest request)
Retrieve store details given a filter.
|
com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.UpdateStoreResponse> |
updateStore(CoreServiceProto.UpdateStoreRequest request)
Updates core with the configuration of the store.
|
protected CoreServiceGrpc.CoreServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
build in class io.grpc.stub.AbstractStub<CoreServiceGrpc.CoreServiceFutureStub>public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.GetFeastCoreVersionResponse> getFeastCoreVersion(CoreServiceProto.GetFeastCoreVersionRequest request)
Retrieve version information about this Feast deployment
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.GetFeatureSetResponse> getFeatureSet(CoreServiceProto.GetFeatureSetRequest request)
Returns a specific feature set
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListFeatureSetsResponse> listFeatureSets(CoreServiceProto.ListFeatureSetsRequest request)
Retrieve feature set details given a filter. Returns all feature sets matching that filter. If none are found, an empty list will be returned. If no filter is provided in the request, the response will contain all the feature sets currently stored in the registry.
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListStoresResponse> listStores(CoreServiceProto.ListStoresRequest request)
Retrieve store details given a filter. Returns all stores matching that filter. If none are found, an empty list will be returned. If no filter is provided in the request, the response will contain all the stores currently stored in the registry.
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ApplyFeatureSetResponse> applyFeatureSet(CoreServiceProto.ApplyFeatureSetRequest request)
Create or update and existing feature set. This function is idempotent - it will not create a new feature set if schema does not change. If an existing feature set is updated, core will advance the version number, which will be returned in response.
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.UpdateStoreResponse> updateStore(CoreServiceProto.UpdateStoreRequest request)
Updates core with the configuration of the store. If the changes are valid, core will return the given store configuration in response, and start or update the necessary feature population jobs for the updated store.
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.CreateProjectResponse> createProject(CoreServiceProto.CreateProjectRequest request)
Creates a project. Projects serve as namespaces within which resources like features will be created. Both feature set names as well as field names must be unique within a project. Project names themselves must be globally unique.
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ArchiveProjectResponse> archiveProject(CoreServiceProto.ArchiveProjectRequest request)
Archives a project. Archived projects will continue to exist and function, but won't be visible through the Core API. Any existing ingestion or serving requests will continue to function, but will result in warning messages being logged. It is not possible to unarchive a project through the Core API
public com.google.common.util.concurrent.ListenableFuture<CoreServiceProto.ListProjectsResponse> listProjects(CoreServiceProto.ListProjectsRequest request)
Lists all projects active projects.
Copyright © 2020 Gojek. All rights reserved.