Manno15 commented on a change in pull request #2249:
URL: https://github.com/apache/accumulo/pull/2249#discussion_r697511774
##########
File path:
server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/CompactionManager.java
##########
@@ -295,13 +295,16 @@ private void compact(Compactable compactable) {
var csid = compactable.getConfiguredService(ctype);
var service = services.get(csid);
if (service == null) {
- log.error(
- "Tablet {} returned non existant compaction service {} for
compaction type {}. Check"
- + " the table compaction dispatcher configuration. Attempting
to fall back to "
- + "{} service.",
- compactable.getExtent(), csid, ctype, DEFAULT_SERVICE);
-
- service = services.get(DEFAULT_SERVICE);
+ checkForConfigChanges(true);
+ service = services.get(csid);
+ if (service == null) {
+ log.error(
+ "Tablet {} returned non existant compaction service {} for
compaction type {}. Check"
Review comment:
```suggestion
"Tablet {} returned non existent compaction service {} for
compaction type {}. Check"
```
--
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]