HDFS-8821. Explain message "Operation category X is not supported in state standby". Contributed by Gautam Gopalakrishnan.
This commit is contained in:
parent
88d8736dde
commit
c5caa25b8f
|
@ -357,6 +357,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
|
HDFS-8821. Explain message "Operation category X is not supported
|
||||||
|
in state standby" (Gautam Gopalakrishnan via harsh)
|
||||||
|
|
||||||
HDFS-3918. EditLogTailer shouldn't log WARN when other node
|
HDFS-3918. EditLogTailer shouldn't log WARN when other node
|
||||||
is in standby mode (todd via harsh)
|
is in standby mode (todd via harsh)
|
||||||
|
|
||||||
|
|
|
@ -82,8 +82,9 @@ public class StandbyState extends HAState {
|
||||||
(op == OperationCategory.READ && context.allowStaleReads())) {
|
(op == OperationCategory.READ && context.allowStaleReads())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
String faq = ". Visit https://s.apache.org/sbnn-error";
|
||||||
String msg = "Operation category " + op + " is not supported in state "
|
String msg = "Operation category " + op + " is not supported in state "
|
||||||
+ context.getState();
|
+ context.getState() + faq;
|
||||||
throw new StandbyException(msg);
|
throw new StandbyException(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue