blob: 1d888ff240e12c07857e7a2bdcc152918d6285fb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cassandra.cql3;
import java.util.Random;
import org.junit.Assume;
import org.junit.Test;
import org.apache.cassandra.Util;
import org.apache.cassandra.db.ClusteringPrefix;
import org.apache.cassandra.db.DecoratedKey;
import org.apache.cassandra.db.marshal.Int32Type;
import org.apache.cassandra.io.sstable.format.SSTableReader;
import org.apache.cassandra.io.sstable.format.big.BigFormat;
import org.apache.cassandra.io.sstable.format.big.BigTableReader;
import org.apache.cassandra.io.sstable.format.big.RowIndexEntry;
import org.apache.cassandra.io.sstable.format.bti.BtiFormat;
import org.apache.cassandra.utils.ByteBufferUtil;
public class TombstonesWithIndexedSSTableTest extends CQLTester
{
@Test
public void testTombstoneBoundariesInIndexCached() throws Throwable
{
testTombstoneBoundariesInIndex("ALL");
}
@Test
public void testTombstoneBoundariesInIndexNotCached() throws Throwable
{
testTombstoneBoundariesInIndex("NONE");
}
public void testTombstoneBoundariesInIndex(String cacheKeys) throws Throwable
{
Assume.assumeTrue("This test requires that the default SSTable format is BIG", BigFormat.isSelected());
// That test reproduces the bug from CASSANDRA-11158 where a range tombstone boundary in the column index would
// cause an assertion failure.
int ROWS = 1000;
int VALUE_LENGTH = 100;
createTable("CREATE TABLE %s (k int, t int, s text static, v text, PRIMARY KEY (k, t)) WITH caching = { 'keys' : '" + cacheKeys + "' }");
// We create a partition that is big enough that the underlying sstable will be indexed
// For that, we use a large-ish number of row, and a value that isn't too small.
String text = makeRandomString(VALUE_LENGTH);
for (int i = 0; i < ROWS; i++)
execute("INSERT INTO %s(k, t, v) VALUES (?, ?, ?)", 0, i, text + i);
DecoratedKey dk = Util.dk(ByteBufferUtil.bytes(0));
int minDeleted = ROWS;
int maxDeleted = 0;
// Place some range deletions around an indexed location to get a tombstone boundary as the index's firstName.
// Because we insert a tombstone before it, the index position may move, so repeat procedure until the index
// boundary hits a tombstone boundary.
deletionLoop:
while (true)
{
flush();
compact();
int indexedRow = -1;
for (SSTableReader sstable : getCurrentColumnFamilyStore().getLiveSSTables())
{
BigTableReader reader = (BigTableReader) sstable;
// The line below failed with key caching off (CASSANDRA-11158)
RowIndexEntry indexEntry = reader.getRowIndexEntry(dk, SSTableReader.Operator.EQ);
if (indexEntry != null && indexEntry.isIndexed())
{
RowIndexEntry.IndexInfoRetriever infoRetriever = indexEntry.openWithIndex(reader.getIndexFile());
ClusteringPrefix<?> firstName = infoRetriever.columnsIndex(1).firstName;
if (firstName.kind().isBoundary())
break deletionLoop;
indexedRow = Int32Type.instance.compose(firstName.bufferAt(0));
}
}
assert indexedRow >= 0;
minDeleted = Math.min(minDeleted, indexedRow - 2);
maxDeleted = Math.max(maxDeleted, indexedRow + 5);
execute("DELETE FROM %s WHERE k = 0 AND t >= ? AND t < ?", indexedRow - 2, indexedRow + 3);
execute("DELETE FROM %s WHERE k = 0 AND t >= ? AND t < ?", indexedRow, indexedRow + 5);
}
flush();
// The line below failed with key caching on (CASSANDRA-11158)
compact();
assertRowCount(execute("SELECT s FROM %s WHERE k = ?", 0), ROWS - (maxDeleted - minDeleted));
assertRowCount(execute("SELECT s FROM %s WHERE k = ? ORDER BY t DESC", 0), ROWS - (maxDeleted - minDeleted));
assertRowCount(execute("SELECT DISTINCT s FROM %s WHERE k = ?", 0), 1);
assertRowCount(execute("SELECT DISTINCT s FROM %s WHERE k = ? ORDER BY t DESC", 0), 1);
}
@Test
public void testActiveTombstoneInIndexCached() throws Throwable
{
Assume.assumeFalse("BTI format does not use key cache", BtiFormat.isSelected());
testActiveTombstoneInIndex("ALL");
}
@Test
public void testActiveTombstoneInIndexNotCached() throws Throwable
{
testActiveTombstoneInIndex("NONE");
}
public void testActiveTombstoneInIndex(String cacheKeys) throws Throwable
{
int ROWS = 1000;
int VALUE_LENGTH = 100;
createTable("CREATE TABLE %s (k int, t int, v1 text, v2 text, v3 text, v4 text, PRIMARY KEY (k, t)) WITH caching = { 'keys' : '" + cacheKeys + "' }");
String text = makeRandomString(VALUE_LENGTH);
// Write a large-enough partition to be indexed.
for (int i = 0; i < ROWS; i++)
execute("INSERT INTO %s(k, t, v1) VALUES (?, ?, ?) USING TIMESTAMP 1", 0, i, text);
// Add v2 that should survive part of the deletion we later insert
for (int i = 0; i < ROWS; i++)
execute("INSERT INTO %s(k, t, v2) VALUES (?, ?, ?) USING TIMESTAMP 3", 0, i, text);
flush();
// Now delete parts of this partition, but add enough new data to make sure the deletion spans index blocks
int minDeleted1 = ROWS/10;
int maxDeleted1 = 5 * ROWS/10;
execute("DELETE FROM %s USING TIMESTAMP 2 WHERE k = 0 AND t >= ? AND t < ?", minDeleted1, maxDeleted1);
// Delete again to make a boundary
int minDeleted2 = 4 * ROWS/10;
int maxDeleted2 = 9 * ROWS/10;
execute("DELETE FROM %s USING TIMESTAMP 4 WHERE k = 0 AND t >= ? AND t < ?", minDeleted2, maxDeleted2);
// Add v3 surviving that deletion too and also ensuring the two deletions span index blocks
for (int i = 0; i < ROWS; i++)
execute("INSERT INTO %s(k, t, v3) VALUES (?, ?, ?) USING TIMESTAMP 5", 0, i, text);
flush();
// test deletions worked
verifyExpectedActiveTombstoneRows(ROWS, text, minDeleted1, minDeleted2, maxDeleted2);
// Test again compacted. This is much easier to pass and doesn't actually test active tombstones in index
compact();
verifyExpectedActiveTombstoneRows(ROWS, text, minDeleted1, minDeleted2, maxDeleted2);
}
private void verifyExpectedActiveTombstoneRows(int ROWS, String text, int minDeleted1, int minDeleted2, int maxDeleted2) throws Throwable
{
assertRowCount(execute("SELECT t FROM %s WHERE k = ? AND v1 = ? ALLOW FILTERING", 0, text), ROWS - (maxDeleted2 - minDeleted1));
assertRowCount(execute("SELECT t FROM %s WHERE k = ? AND v1 = ? ORDER BY t DESC ALLOW FILTERING", 0, text), ROWS - (maxDeleted2 - minDeleted1));
assertRowCount(execute("SELECT t FROM %s WHERE k = ? AND v2 = ? ALLOW FILTERING", 0, text), ROWS - (maxDeleted2 - minDeleted2));
assertRowCount(execute("SELECT t FROM %s WHERE k = ? AND v2 = ? ORDER BY t DESC ALLOW FILTERING", 0, text), ROWS - (maxDeleted2 - minDeleted2));
assertRowCount(execute("SELECT t FROM %s WHERE k = ? AND v3 = ? ALLOW FILTERING", 0, text), ROWS);
assertRowCount(execute("SELECT t FROM %s WHERE k = ? AND v3 = ? ORDER BY t DESC ALLOW FILTERING", 0, text), ROWS);
// test index yields the correct active deletions
for (int i = 0; i < ROWS; ++i)
{
final String v1Expected = i < minDeleted1 || i >= maxDeleted2 ? text : null;
final String v2Expected = i < minDeleted2 || i >= maxDeleted2 ? text : null;
assertRows(execute("SELECT v1,v2,v3 FROM %s WHERE k = ? AND t >= ? LIMIT 1", 0, i),
row(v1Expected, v2Expected, text));
assertRows(execute("SELECT v1,v2,v3 FROM %s WHERE k = ? AND t <= ? ORDER BY t DESC LIMIT 1", 0, i),
row(v1Expected, v2Expected, text));
}
}
public static String makeRandomString(int length)
{
Random random = new Random();
char[] chars = new char[length];
for (int i = 0; i < length; ++i)
chars[i++] = (char) ('a' + random.nextInt('z' - 'a' + 1));
return new String(chars);
}
}