use of alluxio.resource.LockResource in project alluxio by Alluxio.
the class BlockReadHandler method setEof.
private void setEof() {
try (LockResource lr = new LockResource(mLock)) {
if (mContext == null || mContext.getError() != null || mContext.isCancel() || mContext.isEof()) {
return;
}
mContext.setEof(true);
if (!mContext.isDataReaderActive()) {
mContext.setDataReaderActive(true);
createDataReader(mContext, mResponseObserver).run();
}
}
}
use of alluxio.resource.LockResource in project alluxio by Alluxio.
the class BlockReadHandler method setCancel.
private void setCancel() {
try (LockResource lr = new LockResource(mLock)) {
if (mContext == null || mContext.getError() != null || mContext.isEof() || mContext.isCancel()) {
return;
}
mContext.setCancel(true);
if (!mContext.isDataReaderActive()) {
mContext.setDataReaderActive(true);
createDataReader(mContext, mResponseObserver).run();
}
}
}
use of alluxio.resource.LockResource in project alluxio by Alluxio.
the class TieredBlockStore method lockBlock.
@Override
public long lockBlock(long sessionId, long blockId) throws BlockDoesNotExistException {
LOG.debug("lockBlock: sessionId={}, blockId={}", sessionId, blockId);
long lockId = mLockManager.lockBlock(sessionId, blockId, BlockLockType.READ);
boolean hasBlock;
try (LockResource r = new LockResource(mMetadataReadLock)) {
hasBlock = mMetaManager.hasBlockMeta(blockId);
}
if (hasBlock) {
return lockId;
}
mLockManager.unlockBlock(lockId);
throw new BlockDoesNotExistException(ExceptionMessage.NO_BLOCK_ID_FOUND, blockId);
}
use of alluxio.resource.LockResource in project alluxio by Alluxio.
the class TieredBlockStore method lockBlockNoException.
@Override
public long lockBlockNoException(long sessionId, long blockId) {
LOG.debug("lockBlockNoException: sessionId={}, blockId={}", sessionId, blockId);
long lockId = mLockManager.lockBlock(sessionId, blockId, BlockLockType.READ);
boolean hasBlock;
try (LockResource r = new LockResource(mMetadataReadLock)) {
hasBlock = mMetaManager.hasBlockMeta(blockId);
}
if (hasBlock) {
return lockId;
}
mLockManager.unlockBlockNoException(lockId);
return BlockWorker.INVALID_LOCK_ID;
}
use of alluxio.resource.LockResource in project alluxio by Alluxio.
the class TieredBlockStore method moveBlockInternal.
/**
* Moves a block to new location only if allocator finds available space in newLocation. This
* method will not trigger any eviction. Returns {@link MoveBlockResult}.
*
* @param sessionId session id
* @param blockId block id
* @param oldLocation the source location of the block
* @param moveOptions the allocate options for the move
* @return the resulting information about the move operation
* @throws BlockDoesNotExistException if block is not found
* @throws BlockAlreadyExistsException if a block with same id already exists in new location
* @throws InvalidWorkerStateException if the block to move is a temp block
*/
private MoveBlockResult moveBlockInternal(long sessionId, long blockId, BlockStoreLocation oldLocation, AllocateOptions moveOptions) throws BlockDoesNotExistException, BlockAlreadyExistsException, InvalidWorkerStateException, IOException {
long lockId = mLockManager.lockBlock(sessionId, blockId, BlockLockType.WRITE);
try {
long blockSize;
String srcFilePath;
String dstFilePath;
BlockMeta srcBlockMeta;
BlockStoreLocation srcLocation;
BlockStoreLocation dstLocation;
try (LockResource r = new LockResource(mMetadataReadLock)) {
if (mMetaManager.hasTempBlockMeta(blockId)) {
throw new InvalidWorkerStateException(ExceptionMessage.MOVE_UNCOMMITTED_BLOCK, blockId);
}
srcBlockMeta = mMetaManager.getBlockMeta(blockId);
srcLocation = srcBlockMeta.getBlockLocation();
srcFilePath = srcBlockMeta.getPath();
blockSize = srcBlockMeta.getBlockSize();
// Update moveOptions with the block size.
moveOptions.setSize(blockSize);
}
if (!srcLocation.belongsTo(oldLocation)) {
throw new BlockDoesNotExistException(ExceptionMessage.BLOCK_NOT_FOUND_AT_LOCATION, blockId, oldLocation);
}
if (srcLocation.belongsTo(moveOptions.getLocation())) {
return new MoveBlockResult(true, blockSize, srcLocation, srcLocation);
}
TempBlockMeta dstTempBlock;
try {
dstTempBlock = createBlockMetaInternal(sessionId, blockId, false, moveOptions);
} catch (Exception e) {
return new MoveBlockResult(false, blockSize, null, null);
}
// When `newLocation` is some specific location, the `newLocation` and the `dstLocation` are
// just the same; while for `newLocation` with a wildcard significance, the `dstLocation`
// is a specific one with specific tier and dir which belongs to newLocation.
dstLocation = dstTempBlock.getBlockLocation();
// internally from the newLocation and return success with specific block location.
if (dstLocation.belongsTo(srcLocation)) {
mMetaManager.abortTempBlockMeta(dstTempBlock);
return new MoveBlockResult(true, blockSize, srcLocation, dstLocation);
}
dstFilePath = dstTempBlock.getCommitPath();
// Heavy IO is guarded by block lock but not metadata lock. This may throw IOException.
FileUtils.move(srcFilePath, dstFilePath);
try (LockResource r = new LockResource(mMetadataWriteLock)) {
// If this metadata update fails, we panic for now.
// TODO(bin): Implement rollback scheme to recover from IO failures.
mMetaManager.moveBlockMeta(srcBlockMeta, dstTempBlock);
} catch (BlockAlreadyExistsException | BlockDoesNotExistException | WorkerOutOfSpaceException e) {
// we shall never reach here
throw Throwables.propagate(e);
}
return new MoveBlockResult(true, blockSize, srcLocation, dstLocation);
} finally {
mLockManager.unlockBlock(lockId);
}
}
Aggregations