Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,15 @@
project_id=PROJECT_ID,
location=REGION,
feature_online_store_id=FEATURE_ONLINE_STORE_ID,
feature_online_store=FeatureOnlineStore(optimized=FeatureOnlineStore.Optimized()),
feature_online_store=FeatureOnlineStore(
bigtable=FeatureOnlineStore.Bigtable(
auto_scaling=FeatureOnlineStore.Bigtable.AutoScaling(
min_node_count=1,
max_node_count=3,
cpu_utilization_target=50,
)
)
),
)
# [END how_to_cloud_vertex_ai_create_feature_online_store_operator]

Expand Down Expand Up @@ -206,6 +214,7 @@
location=REGION,
feature_online_store_id=FEATURE_ONLINE_STORE_ID,
feature_view_id=FEATURE_VIEW_ID,
trigger_rule=TriggerRule.ALL_DONE,
)
# [END how_to_cloud_vertex_ai_delete_feature_view_operator]

Expand All @@ -215,6 +224,7 @@
project_id=PROJECT_ID,
location=REGION,
feature_online_store_id=FEATURE_ONLINE_STORE_ID,
trigger_rule=TriggerRule.ALL_DONE,
)
# [END how_to_cloud_vertex_ai_delete_feature_online_store_operator]

Expand Down