keith-turner commented on issue #4273:
URL: https://github.com/apache/accumulo/issues/4273#issuecomment-1948536809
For naming, could have the following property names.
```
compaction.services.planner.factory
compaction.services.planner.factory.config
```
And the following SPI with `Planner` in the name and changed `forName` to
`forService`.
```java
interface CompactionPlannerFactory {
void init(PluginEnvironment env);
CompactionPlanner forService(String serviceName);
}
interface CompactionPlanner {
Set<GroupConfig> getGroups();
List<Job> plan(tabletPlanningInformation);
}
```
--
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]