View Javadoc

1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  package org.apache.hadoop.hbase.replication.regionserver;
20  
21  import org.apache.commons.logging.Log;
22  import org.apache.commons.logging.LogFactory;
23  import org.apache.hadoop.classification.InterfaceAudience;
24  import org.apache.hadoop.conf.Configuration;
25  import org.apache.hadoop.fs.FileSystem;
26  import org.apache.hadoop.fs.Path;
27  import org.apache.hadoop.hbase.regionserver.wal.HLog;
28  
29  import java.io.IOException;
30  
31  /**
32   * Wrapper class around HLog to help manage the implementation details
33   * such as compression.
34   */
35  @InterfaceAudience.Private
36  public class ReplicationHLogReaderManager {
37  
38    private static final Log LOG = LogFactory.getLog(ReplicationHLogReaderManager.class);
39    private final FileSystem fs;
40    private final Configuration conf;
41    private long position = 0;
42    private HLog.Reader reader;
43    private Path lastPath;
44  
45    /**
46     * Creates the helper but doesn't open any file
47     * Use setInitialPosition after using the constructor if some content needs to be skipped
48     * @param fs
49     * @param conf
50     */
51    public ReplicationHLogReaderManager(FileSystem fs, Configuration conf) {
52      this.fs = fs;
53      this.conf = conf;
54    }
55  
56    /**
57     * Opens the file at the current position
58     * @param path
59     * @return
60     * @throws IOException
61     */
62    public HLog.Reader openReader(Path path) throws IOException {
63      // Detect if this is a new file, if so get a new reader else
64      // reset the current reader so that we see the new data
65      if (this.reader == null || !this.lastPath.equals(path)) {
66        this.closeReader();
67        this.reader = HLog.getReader(this.fs, path, this.conf);
68        this.lastPath = path;
69      } else {
70        try {
71          this.reader.reset();
72        } catch (NullPointerException npe) {
73          throw new IOException("NPE resetting reader, likely HDFS-4380", npe);
74        }
75      }
76      return this.reader;
77    }
78  
79    /**
80     * Get the next entry, returned and also added in the array
81     * @param entriesArray
82     * @param currentNbEntries
83     * @return a new entry or null
84     * @throws IOException
85     */
86    public HLog.Entry readNextAndSetPosition(HLog.Entry[] entriesArray,
87                                             int currentNbEntries) throws IOException {
88      HLog.Entry entry = this.reader.next(entriesArray[currentNbEntries]);
89      // Store the position so that in the future the reader can start
90      // reading from here. If the above call to next() throws an
91      // exception, the position won't be changed and retry will happen
92      // from the last known good position
93      this.position = this.reader.getPosition();
94      // We need to set the CC to null else it will be compressed when sent to the sink
95      if (entry != null) {
96        entry.setCompressionContext(null);
97      }
98      return entry;
99    }
100 
101   /**
102    * Advance the reader to the current position
103    * @throws IOException
104    */
105   public void seek() throws IOException {
106     if (this.position != 0) {
107       this.reader.seek(this.position);
108     }
109   }
110 
111   /**
112    * Get the position that we stopped reading at
113    * @return current position, cannot be negative
114    */
115   public long getPosition() {
116     return this.position;
117   }
118 
119   public void setPosition(long pos) {
120     this.position = pos;
121   }
122 
123   /**
124    * Close the current reader
125    * @throws IOException
126    */
127   public void closeReader() throws IOException {
128     if (this.reader != null) {
129       this.reader.close();
130       this.reader = null;
131     }
132   }
133 
134   /**
135    * Tell the helper to reset internal state
136    */
137   public void finishCurrentFile() {
138     this.position = 0;
139     try {
140       this.closeReader();
141     } catch (IOException e) {
142       LOG.warn("Unable to close reader", e);
143     }
144   }
145 
146 }