Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "FileFormatDesignDoc" page has been changed by StuHood. http://wiki.apache.org/cassandra/FileFormatDesignDoc?action=diff&rev1=27&rev2=28 -------------------------------------------------- {{{#!highlight c++ /** - * The largest record in an SSTable: "chunk_count" consecutive chunks represent + * The largest record in an SSTable: consecutive Chunks represent a - * a span of tuples, where each chunk represents "arity" levels of nesting. The + * 'span' of tuples, where each chunk represents a level of nesting. - * chunks in a span will have arities that sum to the total depth of the SSTable. */ record Chunk { - /** Count of chunks in the current span. */ + /** The index of the chunk in the span. */ - int chunk_count; + int chunk; - /** Levels of nesting represented by this chunk. */ - int arity; /** * The ordering of values in the chunk: "self"-ordered chunks are stored in sorted order, while
