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.wal; 019 020import java.io.IOException; 021import org.apache.hadoop.conf.Configuration; 022import org.apache.hadoop.fs.FileSystem; 023import org.apache.hadoop.fs.Path; 024import org.apache.hadoop.hbase.io.asyncfs.monitor.StreamSlowMonitor; 025import org.apache.hadoop.hbase.regionserver.wal.FSHLog; 026import org.apache.hadoop.hbase.regionserver.wal.ProtobufLogWriter; 027import org.apache.hadoop.hbase.regionserver.wal.WALUtil; 028import org.apache.hadoop.hbase.util.CommonFSUtils; 029import org.apache.hadoop.hbase.util.CommonFSUtils.StreamLacksCapabilityException; 030import org.apache.yetus.audience.InterfaceAudience; 031import org.apache.yetus.audience.InterfaceStability; 032import org.slf4j.Logger; 033import org.slf4j.LoggerFactory; 034 035/** 036 * A WAL provider that use {@link FSHLog}. 037 */ 038@InterfaceAudience.Private 039@InterfaceStability.Evolving 040public class FSHLogProvider extends AbstractFSWALProvider<FSHLog> { 041 042 private static final Logger LOG = LoggerFactory.getLogger(FSHLogProvider.class); 043 044 // Only public so classes back in regionserver.wal can access 045 public interface Writer extends WALProvider.Writer { 046 /** 047 * @throws IOException if something goes wrong initializing an output stream 048 * @throws StreamLacksCapabilityException if the given FileSystem can't provide streams that 049 * meet the needs of the given Writer implementation. 050 */ 051 void init(FileSystem fs, Path path, Configuration c, boolean overwritable, long blocksize, 052 StreamSlowMonitor monitor) throws IOException, CommonFSUtils.StreamLacksCapabilityException; 053 } 054 055 /** 056 * Public because of FSHLog. Should be package-private 057 * @param overwritable if the created writer can overwrite. For recovered edits, it is true and 058 * for WAL it is false. Thus we can distinguish WAL and recovered edits by 059 * this. 060 */ 061 public static Writer createWriter(final Configuration conf, final FileSystem fs, final Path path, 062 final boolean overwritable) throws IOException { 063 return createWriter(conf, fs, path, overwritable, 064 WALUtil.getWALBlockSize(conf, fs, path, overwritable)); 065 } 066 067 /** 068 * Public because of FSHLog. Should be package-private 069 */ 070 public static Writer createWriter(final Configuration conf, final FileSystem fs, final Path path, 071 final boolean overwritable, long blocksize) throws IOException { 072 // Configuration already does caching for the Class lookup. 073 Class<? extends Writer> logWriterClass = 074 conf.getClass("hbase.regionserver.hlog.writer.impl", ProtobufLogWriter.class, Writer.class); 075 Writer writer = null; 076 try { 077 writer = logWriterClass.getDeclaredConstructor().newInstance(); 078 FileSystem rootFs = FileSystem.get(path.toUri(), conf); 079 writer.init(rootFs, path, conf, overwritable, blocksize, 080 StreamSlowMonitor.create(conf, path.getName())); 081 return writer; 082 } catch (Exception e) { 083 if (e instanceof CommonFSUtils.StreamLacksCapabilityException) { 084 LOG.error("The RegionServer write ahead log provider for FileSystem implementations " 085 + "relies on the ability to call " + e.getMessage() + " for proper operation during " 086 + "component failures, but the current FileSystem does not support doing so. Please " 087 + "check the config value of '" + CommonFSUtils.HBASE_WAL_DIR + "' and ensure " 088 + "it points to a FileSystem mount that has suitable capabilities for output streams."); 089 } else { 090 LOG.debug("Error instantiating log writer.", e); 091 } 092 throw new IOException("cannot get log writer", e); 093 } 094 } 095 096 @Override 097 protected FSHLog createWAL() throws IOException { 098 return new FSHLog(CommonFSUtils.getWALFileSystem(conf), abortable, 099 CommonFSUtils.getWALRootDir(conf), getWALDirectoryName(factory.factoryId), 100 getWALArchiveDirectoryName(conf, factory.factoryId), conf, listeners, true, logPrefix, 101 META_WAL_PROVIDER_ID.equals(providerId) ? META_WAL_PROVIDER_ID : null); 102 } 103 104 @Override 105 protected void doInit(Configuration conf) throws IOException { 106 } 107}