jtao15 commented on code in PR #11101:
URL: https://github.com/apache/pinot/pull/11101#discussion_r1262893753
##########
pinot-plugins/pinot-minion-tasks/pinot-minion-builtin-tasks/src/main/java/org/apache/pinot/plugin/minion/tasks/mergerollup/segmentgroupmananger/MergeRollupTaskSegmentGroupManagerProvider.java:
##########
@@ -27,20 +27,27 @@
* Provider class for {@link MergeRollupTaskSegmentGroupManager}
*/
public abstract class MergeRollupTaskSegmentGroupManagerProvider {
+
+ private static String _defaultMergeRollupTaskSegmentGroupManagerClassName =
+ "DefaultMergeRollupTaskSegmentGroupManager";
+
+ public static void
setDefaultMergeRollupTaskSegmentGroupManagerClassName(String className) {
+ _defaultMergeRollupTaskSegmentGroupManagerClassName = className;
+ }
+
/**
* Constructs the {@link MergeRollupTaskSegmentGroupManager} using
MergeRollup task configs
*/
public static MergeRollupTaskSegmentGroupManager create(Map<String, String>
taskConfigs) {
String segmentGroupManagerClassName =
taskConfigs.get(MinionConstants.MergeRollupTask.SEGMENT_GROUP_MANAGER_CLASS_NAME_KEY);
Review Comment:
Updated.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]