001/** 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the 007 * "License"); you may not use this file except in compliance 008 * with the License. You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018package org.apache.hadoop.hbase.regionserver.handler; 019 020import edu.umd.cs.findbugs.annotations.Nullable; 021import java.io.IOException; 022import java.util.concurrent.TimeUnit; 023import org.apache.hadoop.hbase.HConstants; 024import org.apache.hadoop.hbase.ServerName; 025import org.apache.hadoop.hbase.executor.EventHandler; 026import org.apache.hadoop.hbase.executor.EventType; 027import org.apache.hadoop.hbase.regionserver.HRegion; 028import org.apache.hadoop.hbase.regionserver.HRegionServer; 029import org.apache.hadoop.hbase.regionserver.Region; 030import org.apache.hadoop.hbase.regionserver.RegionServerServices.RegionStateTransitionContext; 031import org.apache.hadoop.hbase.util.Bytes; 032import org.apache.hadoop.hbase.util.RetryCounter; 033import org.apache.yetus.audience.InterfaceAudience; 034import org.slf4j.Logger; 035import org.slf4j.LoggerFactory; 036 037import org.apache.hadoop.hbase.shaded.protobuf.generated.RegionServerStatusProtos.RegionStateTransition.TransitionCode; 038 039/** 040 * Handles closing of a region on a region server. 041 * <p/> 042 * Just done the same thing with the old {@link CloseRegionHandler}, with some modifications on 043 * fencing and retrying. But we need to keep the {@link CloseRegionHandler} as is to keep compatible 044 * with the zk less assignment for 1.x, otherwise it is not possible to do rolling upgrade. 045 */ 046@InterfaceAudience.Private 047public class UnassignRegionHandler extends EventHandler { 048 049 private static final Logger LOG = LoggerFactory.getLogger(UnassignRegionHandler.class); 050 051 private final String encodedName; 052 053 private final long closeProcId; 054 // If true, the hosting server is aborting. Region close process is different 055 // when we are aborting. 056 // TODO: not used yet, we still use the old CloseRegionHandler when aborting 057 private final boolean abort; 058 059 private final ServerName destination; 060 061 private final RetryCounter retryCounter; 062 063 public UnassignRegionHandler(HRegionServer server, String encodedName, long closeProcId, 064 boolean abort, @Nullable ServerName destination, EventType eventType) { 065 super(server, eventType); 066 this.encodedName = encodedName; 067 this.closeProcId = closeProcId; 068 this.abort = abort; 069 this.destination = destination; 070 this.retryCounter = HandlerUtil.getRetryCounter(); 071 } 072 073 private HRegionServer getServer() { 074 return (HRegionServer) server; 075 } 076 077 @Override 078 public void process() throws IOException { 079 HRegionServer rs = getServer(); 080 byte[] encodedNameBytes = Bytes.toBytes(encodedName); 081 Boolean previous = rs.getRegionsInTransitionInRS().putIfAbsent(encodedNameBytes, Boolean.FALSE); 082 if (previous != null) { 083 if (previous) { 084 // This could happen as we will update the region state to OPEN when calling 085 // reportRegionStateTransition, so the HMaster will think the region is online, before we 086 // actually open the region, as reportRegionStateTransition is part of the opening process. 087 long backoff = retryCounter.getBackoffTimeAndIncrementAttempts(); 088 LOG.warn("Received CLOSE for the region: {}, which we are already " + 089 "trying to OPEN. try again after {}ms", encodedName, backoff); 090 rs.getExecutorService().delayedSubmit(this, backoff, TimeUnit.MILLISECONDS); 091 } else { 092 LOG.info("Received CLOSE for the region: {}, which we are already trying to CLOSE," + 093 " but not completed yet", encodedName); 094 } 095 return; 096 } 097 HRegion region = rs.getRegion(encodedName); 098 if (region == null) { 099 LOG.debug( 100 "Received CLOSE for a region {} which is not online, and we're not opening/closing.", 101 encodedName); 102 rs.getRegionsInTransitionInRS().remove(encodedNameBytes, Boolean.FALSE); 103 return; 104 } 105 String regionName = region.getRegionInfo().getEncodedName(); 106 LOG.info("Close {}", regionName); 107 if (region.getCoprocessorHost() != null) { 108 // XXX: The behavior is a bit broken. At master side there is no FAILED_CLOSE state, so if 109 // there are exception thrown from the CP, we can not report the error to master, and if here 110 // we just return without calling reportRegionStateTransition, the TRSP at master side will 111 // hang there for ever. So here if the CP throws an exception out, the only way is to abort 112 // the RS... 113 region.getCoprocessorHost().preClose(abort); 114 } 115 if (region.close(abort) == null) { 116 // XXX: Is this still possible? The old comment says about split, but now split is done at 117 // master side, so... 118 LOG.warn("Can't close region {}, was already closed during close()", regionName); 119 rs.getRegionsInTransitionInRS().remove(encodedNameBytes, Boolean.FALSE); 120 return; 121 } 122 rs.removeRegion(region, destination); 123 if (!rs.reportRegionStateTransition(new RegionStateTransitionContext(TransitionCode.CLOSED, 124 HConstants.NO_SEQNUM, closeProcId, -1, region.getRegionInfo()))) { 125 throw new IOException("Failed to report close to master: " + regionName); 126 } 127 // Cache the close region procedure id after report region transition succeed. 128 rs.finishRegionProcedure(closeProcId); 129 rs.getRegionsInTransitionInRS().remove(encodedNameBytes, Boolean.FALSE); 130 LOG.info("Closed {}", regionName); 131 } 132 133 @Override 134 protected void handleException(Throwable t) { 135 LOG.warn("Fatal error occurred while closing region {}, aborting...", encodedName, t); 136 getServer().abort("Failed to close region " + encodedName + " and can not recover", t); 137 } 138 139 public static UnassignRegionHandler create(HRegionServer server, String encodedName, 140 long closeProcId, boolean abort, @Nullable ServerName destination) { 141 // Just try our best to determine whether it is for closing meta. It is not the end of the world 142 // if we put the handler into a wrong executor. 143 Region region = server.getRegion(encodedName); 144 EventType eventType = 145 region != null && region.getRegionInfo().isMetaRegion() ? EventType.M_RS_CLOSE_META 146 : EventType.M_RS_CLOSE_REGION; 147 return new UnassignRegionHandler(server, encodedName, closeProcId, abort, destination, 148 eventType); 149 } 150}