Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ public final GetBootstrapNodesResponse getBootstrapNodes(RpcController controlle
}

@Override
@QosPriority(priority = HConstants.ADMIN_QOS)
public UpdateConfigurationResponse updateConfiguration(RpcController controller,
UpdateConfigurationRequest request) throws ServiceException {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1545,6 +1545,7 @@ public CompactRegionResponse compactRegion(final RpcController controller,
}

@Override
@QosPriority(priority = HConstants.ADMIN_QOS)
public CompactionSwitchResponse compactionSwitch(RpcController controller,
CompactionSwitchRequest request) throws ServiceException {
rpcPreCheck("compactionSwitch");
Expand Down Expand Up @@ -2223,6 +2224,7 @@ public ReplicateWALEntryResponse replicateWALEntry(final RpcController controlle
* @param request the request
*/
@Override
@QosPriority(priority = HConstants.ADMIN_QOS)
public RollWALWriterResponse rollWALWriter(final RpcController controller,
final RollWALWriterRequest request) throws ServiceException {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,8 @@ public void testAnnotations() {
checkMethod(conf, "CloseRegion", HConstants.ADMIN_QOS, qosFunction);
checkMethod(conf, "CompactRegion", HConstants.ADMIN_QOS, qosFunction);
checkMethod(conf, "FlushRegion", HConstants.ADMIN_QOS, qosFunction);
checkMethod(conf, "UpdateConfiguration", HConstants.ADMIN_QOS, qosFunction);
checkMethod(conf, "CompactionSwitch", HConstants.ADMIN_QOS, qosFunction);
checkMethod(conf, "RollWALWriter", HConstants.ADMIN_QOS, qosFunction);
}
}