dlmarion commented on code in PR #3335:
URL: https://github.com/apache/accumulo/pull/3335#discussion_r1176406462
##########
server/manager/src/main/java/org/apache/accumulo/manager/TabletGroupWatcher.java:
##########
@@ -756,9 +761,22 @@ private void mergeMetadataRecords(MergeInfo info) throws
AccumuloException {
} else if (ServerColumnFamily.DIRECTORY_COLUMN.hasColumns(key)) {
var allVolumesDir = new AllVolumesDirectory(range.tableId(),
value.toString());
bw.addMutation(manager.getContext().getAmple().createDeleteMutation(allVolumesDir));
+ } else if (HostingColumnFamily.GOAL_COLUMN.hasColumns(key)) {
+ TabletHostingGoal thisGoal = TabletHostingGoalUtil.fromValue(value);
+ goals.add(thisGoal);
}
}
+ // Set the TabletHostingGoal for this tablet based on the goals of the
other tablets in
Review Comment:
Updated in d3975ec
--
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]