-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathConnector.proto
More file actions
34 lines (26 loc) · 818 Bytes
/
Connector.proto
File metadata and controls
34 lines (26 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
syntax = "proto3";
package grpc.connector;
import "google/protobuf/timestamp.proto";
import "feast/types/Value.proto";
import "feast/types/EntityKey.proto";
import "feast/serving/ServingService.proto";
option go_package = "github.com/feast-dev/feast/go/protos/feast/serving";
message ConnectorFeature {
feast.serving.FeatureReferenceV2 reference = 1;
google.protobuf.Timestamp timestamp = 2;
feast.types.Value value = 3;
}
message ConnectorFeatureList {
repeated ConnectorFeature featureList = 1;
}
service OnlineStore {
rpc OnlineRead(OnlineReadRequest) returns (OnlineReadResponse);
}
message OnlineReadRequest {
repeated feast.types.EntityKey entityKeys = 1;
string view = 2;
repeated string features = 3;
}
message OnlineReadResponse {
repeated ConnectorFeatureList results = 1;
}