When flushing, old transaction log is not removed, closes #1180.
This commit is contained in:
parent
297a496998
commit
91f97bb7b6
|
@ -843,8 +843,10 @@ public class RobinEngine extends AbstractIndexShardComponent implements Engine {
|
||||||
indexWriter.commit(MapBuilder.<String, String>newMapBuilder().put(Translog.TRANSLOG_ID_KEY, Long.toString(translogId)).map());
|
indexWriter.commit(MapBuilder.<String, String>newMapBuilder().put(Translog.TRANSLOG_ID_KEY, Long.toString(translogId)).map());
|
||||||
translog.makeTransientCurrent();
|
translog.makeTransientCurrent();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
translog.revertTransient();
|
||||||
throw new FlushFailedEngineException(shardId, e);
|
throw new FlushFailedEngineException(shardId, e);
|
||||||
} catch (OutOfMemoryError e) {
|
} catch (OutOfMemoryError e) {
|
||||||
|
translog.revertTransient();
|
||||||
failEngine(e);
|
failEngine(e);
|
||||||
throw new FlushFailedEngineException(shardId, e);
|
throw new FlushFailedEngineException(shardId, e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -87,6 +87,11 @@ public interface Translog extends IndexShardComponent {
|
||||||
*/
|
*/
|
||||||
void makeTransientCurrent();
|
void makeTransientCurrent();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverts back to not have a transient translog.
|
||||||
|
*/
|
||||||
|
void revertTransient();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a create operation to the transaction log.
|
* Adds a create operation to the transaction log.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -35,12 +35,15 @@ import org.elasticsearch.index.translog.TranslogStreams;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.channels.ClosedChannelException;
|
import java.nio.channels.ClosedChannelException;
|
||||||
|
import java.util.concurrent.locks.ReadWriteLock;
|
||||||
|
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kimchy (shay.banon)
|
* @author kimchy (shay.banon)
|
||||||
*/
|
*/
|
||||||
public class FsTranslog extends AbstractIndexShardComponent implements Translog {
|
public class FsTranslog extends AbstractIndexShardComponent implements Translog {
|
||||||
|
|
||||||
|
private final ReadWriteLock rwl = new ReentrantReadWriteLock();
|
||||||
private final File location;
|
private final File location;
|
||||||
|
|
||||||
private volatile FsTranslogFile current;
|
private volatile FsTranslogFile current;
|
||||||
|
@ -93,74 +96,118 @@ public class FsTranslog extends AbstractIndexShardComponent implements Translog
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void clearUnreferenced() {
|
@Override public void clearUnreferenced() {
|
||||||
File[] files = location.listFiles();
|
rwl.writeLock().lock();
|
||||||
if (files != null) {
|
try {
|
||||||
for (File file : files) {
|
File[] files = location.listFiles();
|
||||||
if (file.getName().equals("translog-" + current.id())) {
|
if (files != null) {
|
||||||
continue;
|
for (File file : files) {
|
||||||
}
|
if (file.getName().equals("translog-" + current.id())) {
|
||||||
try {
|
continue;
|
||||||
file.delete();
|
}
|
||||||
} catch (Exception e) {
|
if (trans != null && file.getName().equals("translog-" + trans.id())) {
|
||||||
// ignore
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
file.delete();
|
||||||
|
} catch (Exception e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} finally {
|
||||||
|
rwl.writeLock().unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void newTranslog(long id) throws TranslogException {
|
@Override public void newTranslog(long id) throws TranslogException {
|
||||||
FsTranslogFile newFile;
|
rwl.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
newFile = new FsTranslogFile(shardId, id, new RafReference(new File(location, "translog-" + id)));
|
FsTranslogFile newFile;
|
||||||
} catch (IOException e) {
|
try {
|
||||||
throw new TranslogException(shardId, "failed to create new translog file", e);
|
newFile = new FsTranslogFile(shardId, id, new RafReference(new File(location, "translog-" + id)));
|
||||||
}
|
} catch (IOException e) {
|
||||||
FsTranslogFile old = current;
|
throw new TranslogException(shardId, "failed to create new translog file", e);
|
||||||
current = newFile;
|
|
||||||
if (old != null) {
|
|
||||||
// we might create a new translog overriding the current translog id
|
|
||||||
boolean delete = true;
|
|
||||||
if (old.id() == id) {
|
|
||||||
delete = false;
|
|
||||||
}
|
}
|
||||||
old.close(delete);
|
FsTranslogFile old = current;
|
||||||
|
current = newFile;
|
||||||
|
if (old != null) {
|
||||||
|
// we might create a new translog overriding the current translog id
|
||||||
|
boolean delete = true;
|
||||||
|
if (old.id() == id) {
|
||||||
|
delete = false;
|
||||||
|
}
|
||||||
|
old.close(delete);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
rwl.writeLock().unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void newTransientTranslog(long id) throws TranslogException {
|
@Override public void newTransientTranslog(long id) throws TranslogException {
|
||||||
|
rwl.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
|
assert this.trans == null;
|
||||||
this.trans = new FsTranslogFile(shardId, id, new RafReference(new File(location, "translog-" + id)));
|
this.trans = new FsTranslogFile(shardId, id, new RafReference(new File(location, "translog-" + id)));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new TranslogException(shardId, "failed to create new translog file", e);
|
throw new TranslogException(shardId, "failed to create new translog file", e);
|
||||||
|
} finally {
|
||||||
|
rwl.writeLock().unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void makeTransientCurrent() {
|
@Override public void makeTransientCurrent() {
|
||||||
this.current = this.trans;
|
FsTranslogFile old;
|
||||||
this.trans = null;
|
rwl.writeLock().lock();
|
||||||
|
try {
|
||||||
|
assert this.trans != null;
|
||||||
|
old = current;
|
||||||
|
this.current = this.trans;
|
||||||
|
this.trans = null;
|
||||||
|
} finally {
|
||||||
|
rwl.writeLock().unlock();
|
||||||
|
}
|
||||||
|
old.close(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void revertTransient() {
|
||||||
|
FsTranslogFile old;
|
||||||
|
rwl.writeLock().lock();
|
||||||
|
try {
|
||||||
|
old = trans;
|
||||||
|
this.trans = null;
|
||||||
|
} finally {
|
||||||
|
rwl.writeLock().unlock();
|
||||||
|
}
|
||||||
|
old.close(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public byte[] read(Location location) {
|
public byte[] read(Location location) {
|
||||||
FsTranslogFile trans = this.trans;
|
rwl.readLock().lock();
|
||||||
if (trans != null && trans.id() == location.translogId) {
|
try {
|
||||||
try {
|
FsTranslogFile trans = this.trans;
|
||||||
return trans.read(location);
|
if (trans != null && trans.id() == location.translogId) {
|
||||||
} catch (Exception e) {
|
try {
|
||||||
// ignore
|
return trans.read(location);
|
||||||
|
} catch (Exception e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
if (current.id() == location.translogId) {
|
||||||
if (current.id() == location.translogId) {
|
try {
|
||||||
try {
|
return current.read(location);
|
||||||
return current.read(location);
|
} catch (Exception e) {
|
||||||
} catch (IOException e) {
|
// ignore
|
||||||
// ignore
|
}
|
||||||
}
|
}
|
||||||
|
return null;
|
||||||
|
} finally {
|
||||||
|
rwl.readLock().unlock();
|
||||||
}
|
}
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public Location add(Operation operation) throws TranslogException {
|
@Override public Location add(Operation operation) throws TranslogException {
|
||||||
CachedStreamOutput.Entry cachedEntry = CachedStreamOutput.popEntry();
|
CachedStreamOutput.Entry cachedEntry = CachedStreamOutput.popEntry();
|
||||||
|
rwl.readLock().lock();
|
||||||
try {
|
try {
|
||||||
BytesStreamOutput out = cachedEntry.cachedBytes();
|
BytesStreamOutput out = cachedEntry.cachedBytes();
|
||||||
out.writeInt(0); // marker for the size...
|
out.writeInt(0); // marker for the size...
|
||||||
|
@ -187,6 +234,7 @@ public class FsTranslog extends AbstractIndexShardComponent implements Translog
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new TranslogException(shardId, "Failed to write operation [" + operation + "]", e);
|
throw new TranslogException(shardId, "Failed to write operation [" + operation + "]", e);
|
||||||
} finally {
|
} finally {
|
||||||
|
rwl.readLock().unlock();
|
||||||
CachedStreamOutput.pushEntry(cachedEntry);
|
CachedStreamOutput.pushEntry(cachedEntry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -222,13 +270,18 @@ public class FsTranslog extends AbstractIndexShardComponent implements Translog
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void close(boolean delete) {
|
@Override public void close(boolean delete) {
|
||||||
FsTranslogFile current1 = this.current;
|
rwl.writeLock().lock();
|
||||||
if (current1 != null) {
|
try {
|
||||||
current1.close(delete);
|
FsTranslogFile current1 = this.current;
|
||||||
}
|
if (current1 != null) {
|
||||||
current1 = this.trans;
|
current1.close(delete);
|
||||||
if (current1 != null) {
|
}
|
||||||
current1.close(delete);
|
current1 = this.trans;
|
||||||
|
if (current1 != null) {
|
||||||
|
current1.close(delete);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
rwl.writeLock().unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue