public class UtilizationTracker extends BaseUtilizationTracker
All changes to this object occur must under the log write latch. It is possible to read tracked info without holding the latch. This is done by the cleaner when selecting a file and by the checkpointer when determining what FileSummaryLNs need to be written. To read tracked info outside the log write latch, call getTrackedFile or getTrackedFiles.
| Modifier and Type | Method and Description |
|---|---|
void |
countNewLogEntry(long lsn,
LogEntryType type,
int size)
Counts the addition of all new log entries including LNs.
|
void |
countObsoleteNode(long lsn,
LogEntryType type,
int size)
Counts a node that has become obsolete and tracks the LSN offset, if
non-zero, to avoid a lookup during cleaning.
|
void |
countObsoleteNodeDupsAllowed(long lsn,
LogEntryType type,
int size)
Counts as countObsoleteNode does, tracks the obsolete LSN offset, but
does not fire an assert if the offset has already been counted.
|
void |
countObsoleteNodeInexact(long lsn,
LogEntryType type,
int size)
Counts as countObsoleteNode does, but since the LSN may be inexact, does
not track the obsolete LSN offset.
|
long |
evictMemory()
Evicts tracked detail if the budget for the tracker is exceeded.
|
EnvironmentImpl |
getEnvironment() |
TrackedFileSummary |
getUnflushableTrackedSummary(long fileNum)
Returns a tracked summary for the given file which will not be flushed.
|
countObsoleteDb, getTrackedFile, getTrackedFiles, isLNType, trackObsoleteInfo, transferToUtilizationTrackerpublic EnvironmentImpl getEnvironment()
getEnvironment in class BaseUtilizationTrackerpublic long evictMemory()
throws DatabaseException
When flushFileSummary is called, the TrackedFileSummary is cleared via its reset method, which is called by FileSummaryLN.writeToLog. This is how memory is subtracted from the budget.
DatabaseExceptionpublic void countNewLogEntry(long lsn,
LogEntryType type,
int size)
Must be called under the log write latch.
public void countObsoleteNode(long lsn,
LogEntryType type,
int size)
A zero LSN offset is used as a special value when obsolete offset tracking is not desired. [#15365] The file header entry (at offset zero) is never counted as obsolete, it is assumed to be obsolete by the cleaner.
This method should only be called for LNs and INs (i.e, only for nodes). If type is null we assume it is an LN.
Must be called under the log write latch.
public void countObsoleteNodeInexact(long lsn,
LogEntryType type,
int size)
This method should only be called for LNs and INs (i.e, only for nodes). If type is null we assume it is an LN.
Must be called under the log write latch.
public void countObsoleteNodeDupsAllowed(long lsn,
LogEntryType type,
int size)
This method should only be called for LNs and INs (i.e, only for nodes). If type is null we assume it is an LN.
Must be called under the log write latch.
public TrackedFileSummary getUnflushableTrackedSummary(long fileNum)
Copyright © 2024. All rights reserved.