Skip to content

Commit

Permalink
map
Browse files Browse the repository at this point in the history
  • Loading branch information
CAJan93 committed Jul 15, 2024
1 parent f0bddd6 commit 7b75d88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions proto/catalog.proto
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,9 @@ message Table {
// }
// but {"some":"thing"} can not be scheduled on that node.
// A materialized view or sink or table with an empty node_labels map can only be scheduled on nodes with
// empty/null node_labels map.
// A node with an empty/null node_labels map can only host streaming jobs with an empty node_labels map.
optional map<string, string> node_labels = 101;
// empty node_labels map.
// A node with an empty node_labels map can only host streaming jobs with an empty node_labels map.
map<string, string> node_labels = 101;

// If this is a materialized view: True if backfill is done, else false.
// If this is a regular table: Always true.
Expand Down
4 changes: 2 additions & 2 deletions proto/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ message WorkerNode {
// "some":"value"
// }
// but {"some":"thing"} can not be scheduled on that node.
// Worker nodes with an empty or null node_labels map MVs with an empty or null node_label map.
optional map<string, string> node_labels = 10;
// Worker nodes with an empty node_labels map MVs with an empty or null node_label map.
map<string, string> node_labels = 10;
}

message Buffer {
Expand Down

0 comments on commit 7b75d88

Please sign in to comment.