Uses of Class
org.apache.cassandra.io.sstable.SSTable
-
Packages that use SSTable Package Description org.apache.cassandra.db.lifecycle org.apache.cassandra.io.sstable.format org.apache.cassandra.io.sstable.format.big -
-
Uses of SSTable in org.apache.cassandra.db.lifecycle
Methods in org.apache.cassandra.db.lifecycle with parameters of type SSTable Modifier and Type Method Description void
LifecycleNewTracker. trackNew(SSTable table)
Called when a new table is about to be created, so that this table can be tracked by a transaction.void
LifecycleTransaction. trackNew(SSTable table)
void
WrappedLifecycleTransaction. trackNew(SSTable table)
void
LifecycleNewTracker. untrackNew(SSTable table)
Called when a new table is no longer required, so that this table can be untracked by a transaction.void
LifecycleTransaction. untrackNew(SSTable table)
void
WrappedLifecycleTransaction. untrackNew(SSTable table)
-
Uses of SSTable in org.apache.cassandra.io.sstable.format
Subclasses of SSTable in org.apache.cassandra.io.sstable.format Modifier and Type Class Description class
SSTableReader
An SSTableReader can be constructed in a number of places, but typically is either read from disk at startup, or constructed from a flushed memtable, or after compaction to replace some existing sstables.class
SSTableWriter
This is the API all table writers must implement. -
Uses of SSTable in org.apache.cassandra.io.sstable.format.big
Subclasses of SSTable in org.apache.cassandra.io.sstable.format.big Modifier and Type Class Description class
BigTableReader
SSTableReaders are open()ed by Keyspace.onStart; after that they are created by SSTableWriter.renameAndOpen.class
BigTableWriter
class
BigTableZeroCopyWriter
-