
org.apache.cassandra.db.lifecycle.SSTableSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
package org.apache.cassandra.db.lifecycle;
public enum SSTableSet
{
// returns the "canonical" version of any current sstable, i.e. if an sstable is being replaced and is only partially
// visible to reads, this sstable will be returned as its original entirety, and its replacement will not be returned
// (even if it completely replaces it)
CANONICAL,
// returns the live versions of all sstables, i.e. including partially written sstables
LIVE,
NONCOMPACTING
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy