public class SplitTailTask extends AbstractPrepareTask
The split point is choosen by locating the right-most non-leaf node. The key range which would enter that node is placed within the new right-sibling index partition. The rest of the key range is placed within the new left-sibling index partition.
The tail split operation is extremely fast since it only redefines the index partitions. However, it require RMI to the metadata index to do that and therefore should not be done during synchronous overflow in order to reduce the possibility for errors during that operation.
The right-sibling of tail split is a prime candidate for a move since there is an expectation that it will continue to be hot for writes. Therefore the caller has an opportunity when specifying a tail split to also specify that the new right-sibling index partition will be moved onto a caller specified data service.
AbstractTask.DelegateTask<T>, AbstractTask.InnerReadWriteTxServiceCallable<T>, AbstractTask.InnerWriteServiceCallable<T>, AbstractTask.ResubmitException
DEBUG, INFO, log, resourceManager
checkpointNanoTime, concurrencyManager, isReadWriteTx, nanoTime_assignedWorker, nanoTime_beginWork, nanoTime_finishedWork, nanoTime_submitTask, readOnly, taskCounters, timestamp, transactionManager, tx
Constructor and Description |
---|
SplitTailTask(com.bigdata.resources.ViewMetadata vmd,
UUID moveTarget) |
Modifier and Type | Method and Description |
---|---|
protected void |
clearRefs()
Method is responsible for clearing the
SoftReference s held by
ViewMetadata for the source view(s) on the old journal. |
protected Object |
doTask()
Implement the task behavior here.
|
toString
assertResource, assertRunning, assertUnisolated, call, clearLoggingContext, dropIndex, getCommitTime, getIndex, getJournal, getOnlyResource, getResource, getResourceManager, getTaskCounters, getTaskName, getTimestamp, isResource, registerIndex, setupLoggingContext, toString
public SplitTailTask(com.bigdata.resources.ViewMetadata vmd, UUID moveTarget)
vmd
- moveTarget
- When non-null
the new right-sibling (the tail)
will be moved to the specified data service after the split.protected void clearRefs()
AbstractPrepareTask
SoftReference
s held by
ViewMetadata
for the source view(s) on the old journal.
Note: This method MUST be invoked in order to permit those references to be cleared more eagerly than the end of the entire asynchronous overflow operation (which is when the task references would themselves go out of scope and become available for GC).
clearRefs
in class AbstractPrepareTask
protected Object doTask() throws Exception
AbstractTask
Note: Long-running implementations MUST periodically test
Thread.interrupted()
and MUST throw an exception, such as
InterruptedException
, if they are interrupted. This behavior
allows tasks to be canceled in a timely manner.
If you ignore or fail to test Thread.interrupted()
then your task
CAN NOT be aborted. If it is Future.cancel(boolean)
with
false
then the task will run to completion even though it
has been cancelled (but the Future
will appear to have been
cancelled).
If you simply return
rather than throwing an exception
then the WriteExecutorService
will assume that your task
completed and your (partial) results will be made restart-safe at the
next commit!
doTask
in class AbstractTask
AbstractTask.call()
iff the
operation succeeds.Exception
- The exception that will be thrown by AbstractTask.call()
iff the
operation fails.InterruptedException
- This exception SHOULD be thrown if
Thread.interrupted()
becomes true during
execution.Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.