Skip to content

Commit

Permalink
colocated-without-hints: turn pinot.broker.enable.partition.metadata.…
Browse files Browse the repository at this point in the history
…manager enabled by default
  • Loading branch information
gortiz committed Oct 11, 2024
1 parent c64095f commit 24036a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public static class Broker {

public static final String CONFIG_OF_ENABLE_PARTITION_METADATA_MANAGER =
"pinot.broker.enable.partition.metadata.manager";
public static final boolean DEFAULT_ENABLE_PARTITION_METADATA_MANAGER = false;
public static final boolean DEFAULT_ENABLE_PARTITION_METADATA_MANAGER = true;
public static final String IMPLICIT_COLOCATE_JOIN = "pinot.broker.multistage.implicit.colocate";
public static final boolean DEFAULT_IMPLICIT_COLOCATE_JOIN = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public List<String> types() {
@Override
public Map<String, Object> getConfigOverrides() {
Map<String, Object> overrides = new HashMap<>(super.getConfigOverrides());
// This is actually not required anymore, but we are keeping it as reference
overrides.put(CommonConstants.Broker.CONFIG_OF_ENABLE_PARTITION_METADATA_MANAGER, "true");
return overrides;
}
Expand Down

0 comments on commit 24036a9

Please sign in to comment.