public class HsMemoryDataManager extends Object implements HsSpillingInfoProvider, HsMemoryDataManagerOperation
HsSpillingInfoProvider.ConsumeStatus, HsSpillingInfoProvider.ConsumeStatusWithId, HsSpillingInfoProvider.SpillStatus| Constructor and Description |
|---|
HsMemoryDataManager(int numSubpartitions,
int bufferSize,
BufferPool bufferPool,
HsSpillingStrategy spillStrategy,
HsFileDataIndex fileDataIndex,
Path dataFilePath,
BufferCompressor bufferCompressor,
long poolSizeCheckInterval) |
| Modifier and Type | Method and Description |
|---|---|
void |
append(ByteBuffer record,
int targetChannel,
Buffer.DataType dataType)
Append record to
HsMemoryDataManager, It will be managed by HsSubpartitionMemoryDataManager witch it belongs to. |
void |
close()
Close this
HsMemoryDataManager, it means no data can append to memory and all buffer
taken by this class will recycle. |
Deque<BufferIndexAndChannel> |
getBuffersInOrder(int subpartitionId,
HsSpillingInfoProvider.SpillStatus spillStatus,
HsSpillingInfoProvider.ConsumeStatusWithId consumeStatusWithId)
Get all buffers with the expected status from the subpartition.
|
List<Integer> |
getNextBufferIndexToConsume(HsConsumerId consumerId)
Get all subpartition's next buffer index to consume of specific consumer.
|
int |
getNumSubpartitions()
Get the number of downstream consumers.
|
int |
getNumTotalRequestedBuffers()
Get total number of buffers requested from buffer pool.
|
int |
getNumTotalUnSpillBuffers()
Get total number of not decided to spill buffers.
|
int |
getPoolSize()
Get the current size of buffer pool.
|
void |
markBufferReleasedFromFile(int subpartitionId,
int bufferIndex)
This method is called when buffer should mark as released in
HsFileDataIndex. |
void |
onBufferConsumed(BufferIndexAndChannel consumedBuffer)
This method is called when buffer is consumed.
|
void |
onBufferFinished()
This method is called when buffer is finished.
|
void |
onConsumerReleased(int subpartitionId,
HsConsumerId consumerId)
This method is called when consumer is decided to released.
|
void |
onDataAvailable(int subpartitionId,
Collection<HsConsumerId> consumerIds)
This method is called when subpartition data become available.
|
HsDataView |
registerNewConsumer(int subpartitionId,
HsConsumerId consumerId,
HsSubpartitionConsumerInternalOperations viewOperations)
|
BufferBuilder |
requestBufferFromPool()
Request buffer from buffer pool.
|
void |
setOutputMetrics(HsOutputMetrics metrics) |
public HsMemoryDataManager(int numSubpartitions,
int bufferSize,
BufferPool bufferPool,
HsSpillingStrategy spillStrategy,
HsFileDataIndex fileDataIndex,
Path dataFilePath,
BufferCompressor bufferCompressor,
long poolSizeCheckInterval)
throws IOException
IOExceptionpublic void append(ByteBuffer record, int targetChannel, Buffer.DataType dataType) throws IOException
HsMemoryDataManager, It will be managed by HsSubpartitionMemoryDataManager witch it belongs to.record - to be managed by this class.targetChannel - target subpartition of this record.dataType - the type of this record. In other words, is it data or event.IOExceptionpublic HsDataView registerNewConsumer(int subpartitionId, HsConsumerId consumerId, HsSubpartitionConsumerInternalOperations viewOperations)
HsSubpartitionConsumerInternalOperations to subpartitionViewOperationsMap. It is used to obtain the consumption progress of the
subpartition.public void close()
HsMemoryDataManager, it means no data can append to memory and all buffer
taken by this class will recycle.public void setOutputMetrics(HsOutputMetrics metrics)
public int getPoolSize()
HsSpillingInfoProvidergetPoolSize in interface HsSpillingInfoProviderpublic int getNumSubpartitions()
HsSpillingInfoProvidergetNumSubpartitions in interface HsSpillingInfoProviderpublic int getNumTotalRequestedBuffers()
HsSpillingInfoProvidergetNumTotalRequestedBuffers in interface HsSpillingInfoProviderpublic int getNumTotalUnSpillBuffers()
HsSpillingInfoProvidergetNumTotalUnSpillBuffers in interface HsSpillingInfoProviderpublic Deque<BufferIndexAndChannel> getBuffersInOrder(int subpartitionId, HsSpillingInfoProvider.SpillStatus spillStatus, HsSpillingInfoProvider.ConsumeStatusWithId consumeStatusWithId)
HsSpillingInfoProvidergetBuffersInOrder in interface HsSpillingInfoProvidersubpartitionId - target buffers belong to.spillStatus - expected buffer spill status.consumeStatusWithId - expected buffer consume status and consumer id.public List<Integer> getNextBufferIndexToConsume(HsConsumerId consumerId)
HsSpillingInfoProvidergetNextBufferIndexToConsume in interface HsSpillingInfoProviderconsumerId - of the target downstream consumer.public void markBufferReleasedFromFile(int subpartitionId,
int bufferIndex)
HsMemoryDataManagerOperationHsFileDataIndex.markBufferReleasedFromFile in interface HsMemoryDataManagerOperationsubpartitionId - the subpartition that target buffer belong to.bufferIndex - index of buffer to mark as released.public BufferBuilder requestBufferFromPool() throws InterruptedException
HsMemoryDataManagerOperationrequestBufferFromPool in interface HsMemoryDataManagerOperationInterruptedExceptionpublic void onBufferConsumed(BufferIndexAndChannel consumedBuffer)
HsMemoryDataManagerOperationonBufferConsumed in interface HsMemoryDataManagerOperationconsumedBuffer - target buffer to mark as consumed.public void onBufferFinished()
HsMemoryDataManagerOperationonBufferFinished in interface HsMemoryDataManagerOperationpublic void onDataAvailable(int subpartitionId,
Collection<HsConsumerId> consumerIds)
HsMemoryDataManagerOperationonDataAvailable in interface HsMemoryDataManagerOperationsubpartitionId - the subpartition's identifier that this consumer belongs to.consumerIds - the consumer's identifier which need notify data available.public void onConsumerReleased(int subpartitionId,
HsConsumerId consumerId)
HsMemoryDataManagerOperationonConsumerReleased in interface HsMemoryDataManagerOperationsubpartitionId - the subpartition's identifier that this consumer belongs to.consumerId - the consumer's identifier which decided to be released.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.