001/** 002 * 003 * Licensed to the Apache Software Foundation (ASF) under one 004 * or more contributor license agreements. See the NOTICE file 005 * distributed with this work for additional information 006 * regarding copyright ownership. The ASF licenses this file 007 * to you under the Apache License, Version 2.0 (the 008 * "License"); you may not use this file except in compliance 009 * with the License. You may obtain a copy of the License at 010 * 011 * http://www.apache.org/licenses/LICENSE-2.0 012 * 013 * Unless required by applicable law or agreed to in writing, software 014 * distributed under the License is distributed on an "AS IS" BASIS, 015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 016 * See the License for the specific language governing permissions and 017 * limitations under the License. 018 */ 019package org.apache.hadoop.hbase.wal; 020 021import java.io.IOException; 022import org.apache.hadoop.conf.Configuration; 023import org.apache.hadoop.fs.FileSystem; 024import org.apache.hadoop.fs.Path; 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 throws IOException, CommonFSUtils.StreamLacksCapabilityException; 053 } 054 055 /** 056 * Public because of FSHLog. Should be package-private 057 */ 058 public static Writer createWriter(final Configuration conf, final FileSystem fs, final Path path, 059 final boolean overwritable) throws IOException { 060 return createWriter(conf, fs, path, overwritable, WALUtil.getWALBlockSize(conf, fs, path)); 061 } 062 063 /** 064 * Public because of FSHLog. Should be package-private 065 */ 066 public static Writer createWriter(final Configuration conf, final FileSystem fs, final Path path, 067 final boolean overwritable, long blocksize) throws IOException { 068 // Configuration already does caching for the Class lookup. 069 Class<? extends Writer> logWriterClass = 070 conf.getClass("hbase.regionserver.hlog.writer.impl", ProtobufLogWriter.class, 071 Writer.class); 072 Writer writer = null; 073 try { 074 writer = logWriterClass.getDeclaredConstructor().newInstance(); 075 writer.init(fs, path, conf, overwritable, blocksize); 076 return writer; 077 } catch (Exception e) { 078 if (e instanceof CommonFSUtils.StreamLacksCapabilityException) { 079 LOG.error("The RegionServer write ahead log provider for FileSystem implementations " + 080 "relies on the ability to call " + e.getMessage() + " for proper operation during " + 081 "component failures, but the current FileSystem does not support doing so. Please " + 082 "check the config value of '" + CommonFSUtils.HBASE_WAL_DIR + "' and ensure " + 083 "it points to a FileSystem mount that has suitable capabilities for output streams."); 084 } else { 085 LOG.debug("Error instantiating log writer.", e); 086 } 087 if (writer != null) { 088 try{ 089 writer.close(); 090 } catch(IOException ee){ 091 LOG.error("cannot close log writer", ee); 092 } 093 } 094 throw new IOException("cannot get log writer", e); 095 } 096 } 097 098 @Override 099 protected FSHLog createWAL() throws IOException { 100 return new FSHLog(CommonFSUtils.getWALFileSystem(conf), CommonFSUtils.getWALRootDir(conf), 101 getWALDirectoryName(factory.factoryId), 102 getWALArchiveDirectoryName(conf, factory.factoryId), conf, listeners, true, logPrefix, 103 META_WAL_PROVIDER_ID.equals(providerId) ? META_WAL_PROVIDER_ID : null); 104 } 105 106 @Override 107 protected void doInit(Configuration conf) throws IOException { 108 } 109}