dlmarion commented on code in PR #3294:
URL: https://github.com/apache/accumulo/pull/3294#discussion_r1166982567
##########
core/src/main/java/org/apache/accumulo/core/metadata/schema/MetadataSchema.java:
##########
@@ -332,10 +332,16 @@ public static class ExternalCompactionColumnFamily {
public static final Text NAME = new Text(STR_NAME);
}
- public static class OnDemandAssignmentStateColumnFamily {
- public static final String STR_NAME = "ondemand";
+ public static class HostingGoalColumnFamily {
+ public static final String STR_NAME = "hosting_goal";
public static final Text NAME = new Text(STR_NAME);
+ public static final String ALWAYS = "always"; // tablet should always be
hosted
+ public static final String DEFAULT = "default"; // tablet should be
unassigned
+ public static final String ONDEMAND = "ondemand"; // ondemand request
has been made to assign
+ // tablet
+ public static final String NEVER = "never"; // tablet should never be
hosted
Review Comment:
Updated based on your suggestion in d579d7b
--
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]