Package | Description |
---|---|
org.apache.cassandra.db | |
org.apache.cassandra.db.commitlog | |
org.apache.cassandra.io.sstable | |
org.apache.cassandra.io.sstable.metadata |
Modifier and Type | Class and Description |
---|---|
static class |
Memtable.LastReplayPosition |
Modifier and Type | Method and Description |
---|---|
ReplayPosition |
ColumnFamilyStore.discardSSTables(long truncatedAt)
Discard all SSTables that were created before given timestamp.
|
static ReplayPosition |
SystemKeyspace.getTruncatedPosition(java.util.UUID cfId) |
Modifier and Type | Method and Description |
---|---|
boolean |
Memtable.accepts(OpOrder.Group opGroup,
ReplayPosition replayPosition) |
void |
ColumnFamilyStore.apply(DecoratedKey key,
ColumnFamily columnFamily,
SecondaryIndexManager.Updater indexer,
OpOrder.Group opGroup,
ReplayPosition replayPosition)
Insert/Update the column family for this key.
|
com.google.common.util.concurrent.ListenableFuture<?> |
ColumnFamilyStore.forceFlush(ReplayPosition flushIfDirtyBefore)
Flush if there is unflushed data that was written to the CommitLog before @param flushIfDirtyBefore
(inclusive).
|
Memtable |
DataTracker.getMemtableFor(OpOrder.Group opGroup,
ReplayPosition replayPosition) |
boolean |
Memtable.isCleanAfter(ReplayPosition position) |
static void |
SystemKeyspace.saveTruncationRecord(ColumnFamilyStore cfs,
long truncatedAt,
ReplayPosition position) |
Constructor and Description |
---|
LastReplayPosition(ReplayPosition copy) |
Modifier and Type | Field and Description |
---|---|
static ReplayPosition |
ReplayPosition.NONE |
Modifier and Type | Field and Description |
---|---|
static java.util.Comparator<ReplayPosition> |
ReplayPosition.comparator |
Modifier and Type | Method and Description |
---|---|
ReplayPosition |
CommitLog.add(Mutation mutation)
Add a Mutation to the commit log.
|
ReplayPosition |
ReplayPosition.clone() |
ReplayPosition |
ReplayPosition.ReplayPositionSerializer.deserialize(java.io.DataInput in) |
ReplayPosition |
CommitLog.getContext() |
ReplayPosition |
CommitLogSegment.getContext() |
static ReplayPosition |
ReplayPosition.getReplayPosition(java.lang.Iterable<? extends SSTableReader> sstables)
Convenience method to compute the replay position for a group of SSTables.
|
Modifier and Type | Method and Description |
---|---|
int |
ReplayPosition.compareTo(ReplayPosition other) |
boolean |
CommitLogSegment.contains(ReplayPosition context)
Check to see if a certain ReplayPosition is contained by this segment file.
|
void |
CommitLog.discardCompletedSegments(java.util.UUID cfId,
ReplayPosition context)
Modifies the per-CF dirty cursors of any commit log segments for the column family according to the position
given.
|
void |
CommitLogSegment.markClean(java.util.UUID cfId,
ReplayPosition context)
Marks the ColumnFamily specified by cfId as clean for this log segment.
|
void |
ReplayPosition.ReplayPositionSerializer.serialize(ReplayPosition rp,
DataOutputPlus out) |
long |
ReplayPosition.ReplayPositionSerializer.serializedSize(ReplayPosition rp,
TypeSizes typeSizes) |
Modifier and Type | Method and Description |
---|---|
ReplayPosition |
SSTableReader.getReplayPosition() |
Modifier and Type | Field and Description |
---|---|
protected ReplayPosition |
MetadataCollector.replayPosition |
ReplayPosition |
StatsMetadata.replayPosition |
Modifier and Type | Method and Description |
---|---|
MetadataCollector |
MetadataCollector.replayPosition(ReplayPosition replayPosition) |
Constructor and Description |
---|
StatsMetadata(EstimatedHistogram estimatedRowSize,
EstimatedHistogram estimatedColumnCount,
ReplayPosition replayPosition,
long minTimestamp,
long maxTimestamp,
int maxLocalDeletionTime,
double compressionRatio,
StreamingHistogram estimatedTombstoneDropTime,
int sstableLevel,
java.util.List<java.nio.ByteBuffer> minColumnNames,
java.util.List<java.nio.ByteBuffer> maxColumnNames,
boolean hasLegacyCounterShards,
long repairedAt) |
Copyright © 2016 The Apache Software Foundation