Skip to content
Merged
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
9 changes: 9 additions & 0 deletions aeon_ddl.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ service DDLService {
// Creates a space with the given definition.

message CreateSpaceRequest {
// CDC section of a space definition.
message CDC {
// Queue topic to push captured data changes to.
string topic = 1;
// Queue message TTL, in seconds.
double ttl = 2;
}
// Name of the new space.
string name = 1;
// Format of the new space.
Expand All @@ -25,6 +32,8 @@ message CreateSpaceRequest {
repeated KeyPartDef key_def = 3;
// Storage engine.
Engine engine = 4;
// CDC configuration.
CDC cdc = 5;
}

message CreateSpaceResponse {
Expand Down