Skip to content

Commit

Permalink
feat: Add sync sharding options (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah authored Sep 17, 2024
1 parent bb36463 commit 3063daf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions plugin/v3/plugin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,16 @@ message Sync {
string connection = 2;
}
message Request {
message Shard {
int32 num = 1;
int32 total = 2;
}
repeated string tables = 1;
repeated string skip_tables = 2;
bool skip_dependent_tables = 3;
bool deterministic_cq_id = 4;
BackendOptions backend = 5;
optional Shard shard = 6;
}
message Response {
oneof message {
Expand Down

0 comments on commit 3063daf

Please sign in to comment.