HBASE-11580 Failover handling for secondary region replicas - ADDENDUM for javadoc fixes
This commit is contained in:
parent
464e7ce685
commit
d1ca560ff7
|
@ -1983,7 +1983,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver { //
|
||||||
/**
|
/**
|
||||||
* Flushing all stores.
|
* Flushing all stores.
|
||||||
*
|
*
|
||||||
* @see #internalFlushcache(Collection, MonitoredTask)
|
* @see #internalFlushcache(Collection, MonitoredTask, boolean)
|
||||||
*/
|
*/
|
||||||
private FlushResult internalFlushcache(MonitoredTask status)
|
private FlushResult internalFlushcache(MonitoredTask status)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
@ -1993,7 +1993,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver { //
|
||||||
/**
|
/**
|
||||||
* Flushing given stores.
|
* Flushing given stores.
|
||||||
*
|
*
|
||||||
* @see #internalFlushcache(WAL, long, Collection, MonitoredTask)
|
* @see #internalFlushcache(WAL, long, Collection, MonitoredTask, boolean)
|
||||||
*/
|
*/
|
||||||
private FlushResult internalFlushcache(final Collection<Store> storesToFlush,
|
private FlushResult internalFlushcache(final Collection<Store> storesToFlush,
|
||||||
MonitoredTask status, boolean writeFlushWalMarker) throws IOException {
|
MonitoredTask status, boolean writeFlushWalMarker) throws IOException {
|
||||||
|
@ -2238,7 +2238,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver { //
|
||||||
* Writes a marker to WAL indicating a flush is requested but cannot be complete due to various
|
* Writes a marker to WAL indicating a flush is requested but cannot be complete due to various
|
||||||
* reasons. Ignores exceptions from WAL. Returns whether the write succeeded.
|
* reasons. Ignores exceptions from WAL. Returns whether the write succeeded.
|
||||||
* @param wal
|
* @param wal
|
||||||
* @return
|
* @return whether WAL write was successful
|
||||||
*/
|
*/
|
||||||
private boolean writeFlushRequestMarkerToWAL(WAL wal, boolean writeFlushWalMarker) {
|
private boolean writeFlushRequestMarkerToWAL(WAL wal, boolean writeFlushWalMarker) {
|
||||||
if (writeFlushWalMarker && wal != null && !writestate.readOnly) {
|
if (writeFlushWalMarker && wal != null && !writestate.readOnly) {
|
||||||
|
|
Loading…
Reference in New Issue