We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51463ff commit 2d0e279Copy full SHA for 2d0e279
aeon_ddl.proto
@@ -17,6 +17,13 @@ service DDLService {
17
// Creates a space with the given definition.
18
19
message CreateSpaceRequest {
20
+ // CDC section of a space definition.
21
+ message CDC {
22
+ // Queue topic to push captured data changes to.
23
+ string topic = 1;
24
+ // Queue message TTL, in seconds.
25
+ double ttl = 2;
26
+ }
27
// Name of the new space.
28
string name = 1;
29
// Format of the new space.
@@ -25,6 +32,8 @@ message CreateSpaceRequest {
32
repeated KeyPartDef key_def = 3;
33
// Storage engine.
34
Engine engine = 4;
35
+ // CDC configuration.
36
+ CDC cdc = 5;
37
}
38
30
39
message CreateSpaceResponse {
0 commit comments