HBASE-728, HBASE-956, HBASE-955 Address thread naming, which threads are Chores, vs Threads, make HLog manager the write ahead log and not extend it to provided optional HLog sync operations.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@708324 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cf7ae9adcb
commit
2de525ab33
|
@ -84,7 +84,7 @@ import org.apache.hadoop.io.SequenceFile.Reader;
|
|||
* separate reentrant lock is used.
|
||||
*
|
||||
*/
|
||||
public class HLog extends Thread implements HConstants, Syncable {
|
||||
public class HLog implements HConstants, Syncable {
|
||||
private static final Log LOG = LogFactory.getLog(HLog.class);
|
||||
private static final String HLOG_DATFILE = "hlog.dat.";
|
||||
static final byte [] METACOLUMN = Bytes.toBytes("METACOLUMN:");
|
||||
|
@ -157,7 +157,6 @@ public class HLog extends Thread implements HConstants, Syncable {
|
|||
this.dir = dir;
|
||||
this.conf = conf;
|
||||
this.listener = listener;
|
||||
this.setName(this.getClass().getSimpleName());
|
||||
this.maxlogentries =
|
||||
conf.getInt("hbase.regionserver.maxlogentries", 100000);
|
||||
this.flushlogentries =
|
||||
|
@ -362,9 +361,6 @@ public class HLog extends Thread implements HConstants, Syncable {
|
|||
try {
|
||||
synchronized (updateLock) {
|
||||
this.closed = true;
|
||||
if (this.isAlive()) {
|
||||
this.interrupt();
|
||||
}
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("closing log writer in " + this.dir.toString());
|
||||
}
|
||||
|
@ -433,10 +429,14 @@ public class HLog extends Thread implements HConstants, Syncable {
|
|||
}
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
public void run() {
|
||||
while (!this.closed) {
|
||||
public void sync() throws IOException {
|
||||
lastLogFlushTime = System.currentTimeMillis();
|
||||
this.writer.sync();
|
||||
unflushedEntries = 0;
|
||||
}
|
||||
|
||||
void optionalSync() {
|
||||
if (!this.closed) {
|
||||
synchronized (updateLock) {
|
||||
if (((System.currentTimeMillis() - this.optionalFlushInterval) >
|
||||
this.lastLogFlushTime) && this.unflushedEntries > 0) {
|
||||
|
@ -446,20 +446,9 @@ public class HLog extends Thread implements HConstants, Syncable {
|
|||
LOG.error("Error flushing HLog", e);
|
||||
}
|
||||
}
|
||||
try {
|
||||
updateLock.wait(this.threadWakeFrequency);
|
||||
} catch (InterruptedException e) {
|
||||
// continue
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void sync() throws IOException {
|
||||
lastLogFlushTime = System.currentTimeMillis();
|
||||
this.writer.sync();
|
||||
unflushedEntries = 0;
|
||||
}
|
||||
|
||||
private void requestLogRoll() {
|
||||
if (this.listener != null) {
|
||||
|
|
Loading…
Reference in New Issue