mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
89 lines
1.9 KiB
Protocol Buffer
89 lines
1.9 KiB
Protocol Buffer
syntax = "proto3";
|
|
package vdsm;
|
|
|
|
option go_package = "github.com/pilosa/pilosa/v2/proto/vdsm";
|
|
|
|
import "pilosa.proto";
|
|
|
|
// deprecated
|
|
message DataSource {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
string description = 3;
|
|
string type = 4;
|
|
map<string, string> config = 5;
|
|
string status = 6;
|
|
}
|
|
|
|
message VDS {
|
|
string id = 1;
|
|
string name = 2;
|
|
string description = 3;
|
|
string pilosa_index = 4;
|
|
repeated DataSource datasources = 5;
|
|
}
|
|
|
|
message GetVDSsRequest {
|
|
}
|
|
|
|
message GetVDSsResponse {
|
|
repeated VDS vdss = 1;
|
|
}
|
|
|
|
message GetVDSRequest {
|
|
oneof idOrName {
|
|
string id = 1;
|
|
string name = 2;
|
|
}
|
|
}
|
|
|
|
message GetVDSResponse {
|
|
VDS vds = 1;
|
|
}
|
|
|
|
message PostVDSRequest {
|
|
string definition = 1;
|
|
}
|
|
|
|
message PostVDSResponse {
|
|
string id = 1;
|
|
string uri = 2;
|
|
}
|
|
|
|
message DeleteVDSRequest {
|
|
oneof idOrName {
|
|
string id = 1;
|
|
string name = 2;
|
|
}
|
|
}
|
|
|
|
message DeleteVDSResponse {
|
|
}
|
|
|
|
// copied from pilosa.proto to use "vds" instead of "index"
|
|
message QueryPQLRequest {
|
|
string vds = 1;
|
|
string pql = 2;
|
|
}
|
|
|
|
// copied from pilosa.proto to use "vds" instead of "index" and "records" instead of "columns"
|
|
message InspectRequest {
|
|
string vds = 1;
|
|
pilosa.IdsOrKeys records = 2;
|
|
repeated string filterFields = 3;
|
|
uint64 limit = 4;
|
|
uint64 offset = 5;
|
|
string query = 6;
|
|
}
|
|
|
|
service Molecula {
|
|
rpc GetVDSs(GetVDSsRequest) returns (GetVDSsResponse) {};
|
|
rpc GetVDS(GetVDSRequest) returns (GetVDSResponse) {};
|
|
rpc PostVDS(PostVDSRequest) returns (PostVDSResponse) {};
|
|
rpc DeleteVDS(DeleteVDSRequest) returns (DeleteVDSResponse) {};
|
|
rpc QuerySQL(pilosa.QuerySQLRequest) returns (stream pilosa.RowResponse) {};
|
|
rpc QuerySQLUnary(pilosa.QuerySQLRequest) returns (pilosa.TableResponse) {};
|
|
rpc QueryPQL(QueryPQLRequest) returns (stream pilosa.RowResponse) {};
|
|
rpc QueryPQLUnary(QueryPQLRequest) returns (pilosa.TableResponse) {};
|
|
rpc Inspect(InspectRequest) returns (stream pilosa.RowResponse) {};
|
|
}
|