ddanielr commented on code in PR #3657:
URL: https://github.com/apache/accumulo/pull/3657#discussion_r1275146308
##########
core/src/main/java/org/apache/accumulo/core/spi/compaction/DefaultCompactionPlanner.java:
##########
@@ -216,7 +217,9 @@ public void init(InitParameters params) {
"'numThreads' should not be specified for external compactions");
String group = Objects.requireNonNull(executorConfig.group,
"'group' must be specified for external type");
- ceid = params.getExecutorManager().getExternalExecutor(group);
+
+ ceid =
+
params.getExecutorManager().getExternalExecutor(serviceId.canonical() + "." +
group);
Review Comment:
Ok, that makes sense.
My goal was to support the queue only format so that way the service isn't
mis-typed by the user.
```
tserver.compaction.major.service.system.planner.opts.executors=[{'queue':'default'}]
```
--
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]