Skip to content

Commit

Permalink
Unset is_cc for default cluster replica sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Nov 12, 2024
1 parent ac724c9 commit 6941d74
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/catalog/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl Default for ClusterReplicaSizeMap {
workers: workers.into(),
credits_per_hour: 1.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: false,
selectors: BTreeMap::default(),
},
Expand All @@ -177,7 +177,7 @@ impl Default for ClusterReplicaSizeMap {
workers: 1,
credits_per_hour: scale.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: false,
selectors: BTreeMap::default(),
},
Expand All @@ -193,7 +193,7 @@ impl Default for ClusterReplicaSizeMap {
workers: scale.into(),
credits_per_hour: scale.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: false,
selectors: BTreeMap::default(),
},
Expand All @@ -209,7 +209,7 @@ impl Default for ClusterReplicaSizeMap {
workers: 8,
credits_per_hour: 1.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: false,
selectors: BTreeMap::default(),
},
Expand All @@ -226,7 +226,7 @@ impl Default for ClusterReplicaSizeMap {
workers: 4,
credits_per_hour: 2.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: false,
selectors: BTreeMap::default(),
},
Expand All @@ -242,7 +242,7 @@ impl Default for ClusterReplicaSizeMap {
workers: 0,
credits_per_hour: 0.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: true,
selectors: BTreeMap::default(),
},
Expand All @@ -259,7 +259,7 @@ impl Default for ClusterReplicaSizeMap {
workers: 1,
credits_per_hour: 1.into(),
cpu_exclusive: false,
is_cc: true,
is_cc: false,
disabled: false,
selectors: BTreeMap::default(),
},
Expand Down

0 comments on commit 6941d74

Please sign in to comment.