We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 096fad1 commit 7767447Copy full SHA for 7767447
1 file changed
google/cloud/aiplatform/v1beta1/feature_online_store_service.proto
@@ -73,9 +73,20 @@ enum FeatureViewDataFormat {
73
74
// Lookup key for a feature view.
75
message FeatureViewDataKey {
76
+ // ID that is comprised from several parts (columns).
77
+ message CompositeKey {
78
+ // Parts to construct Entity ID. Should match with the same ID columns as
79
+ // defined in FeatureView in the same order.
80
+ repeated string parts = 1;
81
+ }
82
+
83
oneof key_oneof {
84
// String key to use for lookup.
85
string key = 1;
86
87
+ // The actual Entity ID will be composed from this struct. This should match
88
+ // with the way ID is defined in the FeatureView spec.
89
+ CompositeKey composite_key = 2;
90
}
91
92
0 commit comments