Package feast.proto.core
Class CoreServiceGrpc.CoreServiceStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractAsyncStub<CoreServiceGrpc.CoreServiceStub>
-
- feast.proto.core.CoreServiceGrpc.CoreServiceStub
-
- Enclosing class:
- CoreServiceGrpc
public static final class CoreServiceGrpc.CoreServiceStub extends io.grpc.stub.AbstractAsyncStub<CoreServiceGrpc.CoreServiceStub>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidapplyEntity(CoreServiceProto.ApplyEntityRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ApplyEntityResponse> responseObserver)Create or update and existing entity.voidapplyFeatureSet(CoreServiceProto.ApplyFeatureSetRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ApplyFeatureSetResponse> responseObserver)Create or update and existing feature set.voidapplyFeatureTable(CoreServiceProto.ApplyFeatureTableRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ApplyFeatureTableResponse> responseObserver)Create or update an existing feature table.voidarchiveProject(CoreServiceProto.ArchiveProjectRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ArchiveProjectResponse> responseObserver)Archives a project.protected CoreServiceGrpc.CoreServiceStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions)voidcreateProject(CoreServiceProto.CreateProjectRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.CreateProjectResponse> responseObserver)Creates a project.voiddeleteFeatureTable(CoreServiceProto.DeleteFeatureTableRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.DeleteFeatureTableResponse> responseObserver)Delete a specific feature tablevoidgetEntity(CoreServiceProto.GetEntityRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetEntityResponse> responseObserver)Returns a specific entityvoidgetFeastCoreVersion(CoreServiceProto.GetFeastCoreVersionRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeastCoreVersionResponse> responseObserver)Retrieve version information about this Feast deploymentvoidgetFeatureSet(CoreServiceProto.GetFeatureSetRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeatureSetResponse> responseObserver)Returns a specific feature setvoidgetFeatureStatistics(CoreServiceProto.GetFeatureStatisticsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeatureStatisticsResponse> responseObserver)Get feature statistics computed over the data in the batch stores.voidgetFeatureTable(CoreServiceProto.GetFeatureTableRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeatureTableResponse> responseObserver)Returns a specific feature tablevoidlistEntities(CoreServiceProto.ListEntitiesRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListEntitiesResponse> responseObserver)Returns all entity references and respective entities matching that filter.voidlistFeatures(CoreServiceProto.ListFeaturesRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListFeaturesResponse> responseObserver)Returns all feature references and respective features matching that filter.voidlistFeatureSets(CoreServiceProto.ListFeatureSetsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListFeatureSetsResponse> responseObserver)Retrieve feature set details given a filter.voidlistFeatureTables(CoreServiceProto.ListFeatureTablesRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListFeatureTablesResponse> responseObserver)List feature tables that match a given filter.voidlistProjects(CoreServiceProto.ListProjectsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListProjectsResponse> responseObserver)Lists all projects active projects.voidlistStores(CoreServiceProto.ListStoresRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListStoresResponse> responseObserver)Retrieve store details given a filter.voidupdateFeatureSetStatus(CoreServiceProto.UpdateFeatureSetStatusRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.UpdateFeatureSetStatusResponse> responseObserver)Internal API for Job Controller to update featureSet's status once responsible ingestion job is runningvoidupdateStore(CoreServiceProto.UpdateStoreRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.UpdateStoreResponse> responseObserver)Updates core with the configuration of the store.
-
-
-
Method Detail
-
build
protected CoreServiceGrpc.CoreServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
buildin classio.grpc.stub.AbstractStub<CoreServiceGrpc.CoreServiceStub>
-
getFeastCoreVersion
public void getFeastCoreVersion(CoreServiceProto.GetFeastCoreVersionRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeastCoreVersionResponse> responseObserver)
Retrieve version information about this Feast deployment
-
getFeatureSet
public void getFeatureSet(CoreServiceProto.GetFeatureSetRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeatureSetResponse> responseObserver)
Returns a specific feature set
-
getEntity
public void getEntity(CoreServiceProto.GetEntityRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetEntityResponse> responseObserver)
Returns a specific entity
-
listFeatureSets
public void listFeatureSets(CoreServiceProto.ListFeatureSetsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListFeatureSetsResponse> responseObserver)
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.
-
listFeatures
public void listFeatures(CoreServiceProto.ListFeaturesRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListFeaturesResponse> responseObserver)
Returns all feature references and respective features matching that filter. If none are found an empty map will be returned If no filter is provided in the request, the response will contain all the features currently stored in the default project.
-
getFeatureStatistics
public void getFeatureStatistics(CoreServiceProto.GetFeatureStatisticsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeatureStatisticsResponse> responseObserver)
Get feature statistics computed over the data in the batch stores. Returns a dataset containing TFDV statistics mapped to each valid historical store.
-
listStores
public void listStores(CoreServiceProto.ListStoresRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListStoresResponse> responseObserver)
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.
-
applyFeatureSet
public void applyFeatureSet(CoreServiceProto.ApplyFeatureSetRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ApplyFeatureSetResponse> responseObserver)
Create or update and existing feature set. This function is idempotent - it will not create a new feature set if schema does not change. Schema changes will update the feature set if the changes are valid. All changes except the following are valid: - Changes to feature set id (name, project) - Changes to entities - Changes to feature name and type
-
applyEntity
public void applyEntity(CoreServiceProto.ApplyEntityRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ApplyEntityResponse> responseObserver)
Create or update and existing entity. This function is idempotent - it will not create a new entity if schema does not change. Schema changes will update the entity if the changes are valid. Following changes are not valid: - Changes to name - Changes to type
-
listEntities
public void listEntities(CoreServiceProto.ListEntitiesRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListEntitiesResponse> responseObserver)
Returns all entity references and respective entities matching that filter. If none are found an empty map will be returned If no filter is provided in the request, the response will contain all the entities currently stored in the default project.
-
updateStore
public void updateStore(CoreServiceProto.UpdateStoreRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.UpdateStoreResponse> responseObserver)
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.
-
createProject
public void createProject(CoreServiceProto.CreateProjectRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.CreateProjectResponse> responseObserver)
Creates a project. Projects serve as namespaces within which resources like features will be created. Feature set names as must be unique within a project while field (Feature/Entity) names must be unique within a Feature Set. Project names themselves must be globally unique.
-
archiveProject
public void archiveProject(CoreServiceProto.ArchiveProjectRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ArchiveProjectResponse> responseObserver)
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
-
listProjects
public void listProjects(CoreServiceProto.ListProjectsRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListProjectsResponse> responseObserver)
Lists all projects active projects.
-
updateFeatureSetStatus
public void updateFeatureSetStatus(CoreServiceProto.UpdateFeatureSetStatusRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.UpdateFeatureSetStatusResponse> responseObserver)
Internal API for Job Controller to update featureSet's status once responsible ingestion job is running
-
applyFeatureTable
public void applyFeatureTable(CoreServiceProto.ApplyFeatureTableRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ApplyFeatureTableResponse> responseObserver)
Create or update an existing feature table. This function is idempotent - it will not create a new feature table if the schema does not change. Schema changes will update the feature table if the changes are valid. All changes except the following are valid: - Changes to feature table name. - Changes to entities - Changes to feature name and type
-
listFeatureTables
public void listFeatureTables(CoreServiceProto.ListFeatureTablesRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.ListFeatureTablesResponse> responseObserver)
List feature tables that match a given filter. Returns the references of the Feature Tables matching that filter. If none are found, an empty list will be returned. If no filter is provided in the request, the response will match all the feature tables currently stored in the registry.
-
getFeatureTable
public void getFeatureTable(CoreServiceProto.GetFeatureTableRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.GetFeatureTableResponse> responseObserver)
Returns a specific feature table
-
deleteFeatureTable
public void deleteFeatureTable(CoreServiceProto.DeleteFeatureTableRequest request, io.grpc.stub.StreamObserver<CoreServiceProto.DeleteFeatureTableResponse> responseObserver)
Delete a specific feature table
-
-