Skip to content

Commit

Permalink
[core] Bump DD scheduler Protobuf interface
Browse files Browse the repository at this point in the history
  • Loading branch information
teo committed Feb 15, 2021
1 parent 740abf0 commit cc8b335
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 36 deletions.
73 changes: 39 additions & 34 deletions core/integration/ddsched/protos/ddsched.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions core/integration/ddsched/protos/ddsched.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ message PartitionInfo {
}

enum PartitionState {
__IGNORE = 0;
IGNORE__ = 0;

PARTITION_UNKNOWN = 1;
// Partition not known to DataDistControl. Initialize by calling PartitionInitialize()

Expand All @@ -43,7 +44,10 @@ enum PartitionState {
// All components configured, ready for dataflow commands

PARTITION_TERMINATING = 6;
// Partition is terminating. EPN-FLP connections are cleanly terminated.
// Partition is terminating. EPN-FLP connections will be cleanly closed.

PARTITION_TERMINATED = 7;
// Partition is terminated. TfScheduler does not accept further requests
}


Expand Down

0 comments on commit cc8b335

Please sign in to comment.