transport: complete M0–M7
shared: add stream+consumer policy helpers; NATS context header builder aggregate/runner/projection: centralize stream validation and header usage; set bounded consumer params projection: add QueryService gRPC and wire into main; settings include PROJECTION_GRPC_ADDR gateway: gRPC routing to Projection/Runner with deadlines; bounded read-only retries; pooled gRPC channels (bounded LRU+TTL); admin proxy forwards to gRPC; probes use concurrency limiter + TTL cache runner: add RunnerAdmin gRPC server (drain, status, reload) and wire into main; settings include RUNNER_GRPC_ADDR tests: add gateway authz for runner admin, projection tenant isolation, runner admin drain semantics docs: update TRANSPORT_DEVELOPMENT_PLAN to reflect completed milestones and details
This commit is contained in:
17
projection/proto/query.proto
Normal file
17
projection/proto/query.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package projection.gateway.v1;
|
||||
|
||||
service QueryService {
|
||||
rpc ExecuteQuery(QueryRequest) returns (QueryResponse);
|
||||
}
|
||||
|
||||
message QueryRequest {
|
||||
string tenant_id = 1;
|
||||
string view_type = 2;
|
||||
string uqf = 3;
|
||||
}
|
||||
|
||||
message QueryResponse {
|
||||
string json = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user