Skip to content
Closed
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
15 changes: 15 additions & 0 deletions aeon_ddl.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ service DDLService {

// Drops a space by name.
rpc DropSpace(DropSpaceRequest) returns (DropSpaceResponse) {}

// Restart CDC for a space.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unclear what CDC restart does. It'd probably be nice to say a few words about it, as well as about what messages are pushed and when if CDC is enabled for a space.

rpc RestartCDC(RestartCDCRequest) returns (RestartCDCResponse) {}
Copy link
Member

@locker locker Dec 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need it, actually. We only need the SQL API because this is a command that's supposed to be used by the admin. That's why I mentioned only SQL in the ticket.

}

// Creates a space with the given definition.
Expand Down Expand Up @@ -52,3 +55,15 @@ message DropSpaceResponse {
// Error information. Set only on failure.
Error error = 1;
}

// Restart CDC on a space.

message RestartCDCRequest {
// Name of the space to restart CDC.
string space = 1;
}

message RestartCDCResponse {
// Error information. Set only on failure.
Error error = 1;
}