Skip to content

Commit

Permalink
feat: feature store integration base (Part I)
Browse files Browse the repository at this point in the history
add private _featurestores module
add Featurestore/EntityType/Feature class
add featurestore_utils.py
add FeaturestoreClientWithOverride in utils __init__.py
update compat services and types to include featurestore and featurestore online
add get/update/delete/list/search methods
add unit tests for above methods
add skeleton for create/ingest/read/serve methods
  • Loading branch information
morgandu committed Nov 17, 2021
1 parent a2485a3 commit 6c97c6e
Show file tree
Hide file tree
Showing 13 changed files with 2,228 additions and 256 deletions.
26 changes: 26 additions & 0 deletions google/cloud/aiplatform/_featurestores/__init__.py
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-

# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

from google.cloud.aiplatform._featurestores.featurestore import Featurestore
from google.cloud.aiplatform._featurestores.entity_type import EntityType
from google.cloud.aiplatform._featurestores.feature import Feature

__all__ = (
"Featurestore",
"EntityType",
"Feature",
)

0 comments on commit 6c97c6e

Please sign in to comment.