blob: 72f8804ffeb5276515b9caf680a1653abe7d6728 [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.service;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.time.Instant;
import java.util.List;
import org.apache.cassandra.config.StartupChecksOptions;
import org.apache.cassandra.io.util.File;
import org.junit.*;
import org.apache.cassandra.SchemaLoader;
import org.apache.cassandra.config.DatabaseDescriptor;
import org.apache.cassandra.schema.SchemaConstants;
import org.apache.cassandra.db.*;
import org.apache.cassandra.exceptions.StartupException;
import org.apache.cassandra.service.DataResurrectionCheck.Heartbeat;
import org.apache.cassandra.utils.Clock;
import static java.util.Collections.singletonList;
import static org.apache.cassandra.io.util.FileUtils.createTempFile;
import static org.apache.cassandra.service.DataResurrectionCheck.HEARTBEAT_FILE_CONFIG_PROPERTY;
import static org.apache.cassandra.service.StartupChecks.StartupCheckType.check_data_resurrection;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
public class StartupChecksTest
{
public static final String INVALID_LEGACY_SSTABLE_ROOT_PROP = "invalid-legacy-sstable-root";
StartupChecks startupChecks;
Path sstableDir;
static File heartbeatFile;
StartupChecksOptions options = new StartupChecksOptions();
@BeforeClass
public static void setupServer()
{
heartbeatFile = createTempFile("cassandra-heartbeat-", "");
SchemaLoader.prepareServer();
}
@Before
public void setup() throws IOException
{
for (ColumnFamilyStore cfs : Keyspace.open(SchemaConstants.SYSTEM_KEYSPACE_NAME).getColumnFamilyStores())
cfs.clearUnsafe();
for (File dataDir : Directories.getKSChildDirectories(SchemaConstants.SYSTEM_KEYSPACE_NAME))
dataDir.deleteRecursive();
File dataDir = new File(DatabaseDescriptor.getAllDataFileLocations()[0]);
sstableDir = Paths.get(dataDir.absolutePath(), "Keyspace1", "Standard1");
Files.createDirectories(sstableDir);
options.enable(check_data_resurrection);
options.getConfig(check_data_resurrection)
.put(HEARTBEAT_FILE_CONFIG_PROPERTY, heartbeatFile.absolutePath());
startupChecks = new StartupChecks();
}
@After
public void tearDown() throws IOException
{
new File(sstableDir).deleteRecursive();
}
@AfterClass
public static void tearDownClass()
{
heartbeatFile.delete();
}
@Test
public void failStartupIfInvalidSSTablesFound() throws Exception
{
startupChecks = startupChecks.withTest(StartupChecks.checkSSTablesFormat);
copyInvalidLegacySSTables(sstableDir);
verifyFailure(startupChecks, "Detected unreadable sstables");
// we should ignore invalid sstables in a snapshots directory
new File(sstableDir).deleteRecursive();
Path snapshotDir = sstableDir.resolve("snapshots");
Files.createDirectories(snapshotDir);
copyInvalidLegacySSTables(snapshotDir); startupChecks.verify(options);
// and in a backups directory
new File(sstableDir).deleteRecursive();
Path backupDir = sstableDir.resolve("backups");
Files.createDirectories(backupDir);
copyInvalidLegacySSTables(backupDir);
startupChecks.verify(options);
}
@Test
public void compatibilityCheckIgnoresNonDbFiles() throws Exception
{
startupChecks = startupChecks.withTest(StartupChecks.checkSSTablesFormat);
copyLegacyNonSSTableFiles(sstableDir);
assertNotEquals(0, new File(sstableDir).tryList().length);
startupChecks.verify(options);
}
@Test
public void checkReadAheadKbSettingCheck() throws Exception
{
// This test just validates if the verify function
// doesn't throw any exceptions
startupChecks = startupChecks.withTest(StartupChecks.checkReadAheadKbSetting);
startupChecks.verify(options);
}
@Test
public void testGetReadAheadKBPath()
{
Path sdaDirectory = StartupChecks.getReadAheadKBPath("/dev/sda12");
Assert.assertEquals(Paths.get("/sys/block/sda/queue/read_ahead_kb"), sdaDirectory);
Path scsiDirectory = StartupChecks.getReadAheadKBPath("/dev/scsi1");
Assert.assertEquals(Paths.get("/sys/block/scsi/queue/read_ahead_kb"), scsiDirectory);
Path dirWithoutNumbers = StartupChecks.getReadAheadKBPath("/dev/sca");
Assert.assertEquals(Paths.get("/sys/block/sca/queue/read_ahead_kb"), dirWithoutNumbers);
Path invalidDir = StartupChecks.getReadAheadKBPath("/tmp/xpto");
Assert.assertNull(invalidDir);
}
@Test
public void maxMapCountCheck() throws Exception
{
startupChecks = startupChecks.withTest(StartupChecks.checkMaxMapCount);
startupChecks.verify(options);
}
private void copyLegacyNonSSTableFiles(Path targetDir) throws IOException
{
Path legacySSTableRoot = Paths.get(System.getProperty(INVALID_LEGACY_SSTABLE_ROOT_PROP),
"Keyspace1",
"Standard1");
for (String filename : new String[]{"Keyspace1-Standard1-ic-0-TOC.txt",
"Keyspace1-Standard1-ic-0-Digest.sha1",
"legacyleveled.json"})
Files.copy(Paths.get(legacySSTableRoot.toString(), filename), targetDir.resolve(filename));
}
@Test
public void testDataResurrectionCheck() throws Exception
{
DataResurrectionCheck check = new DataResurrectionCheck() {
@Override
List<String> getKeyspaces()
{
return singletonList("abc");
}
@Override
List<TableGCPeriod> getTablesGcPeriods(String userKeyspace)
{
return singletonList(new TableGCPeriod("def", 10));
}
};
Heartbeat heartbeat = new Heartbeat(Instant.ofEpochMilli(Clock.Global.currentTimeMillis()));
heartbeat.serializeToJsonFile(heartbeatFile);
Thread.sleep(15 * 1000);
startupChecks.withTest(check);
verifyFailure(startupChecks, "Invalid tables: abc.def");
}
private void copyInvalidLegacySSTables(Path targetDir) throws IOException
{
File legacySSTableRoot = new File(Paths.get(System.getProperty(INVALID_LEGACY_SSTABLE_ROOT_PROP),
"Keyspace1",
"Standard1"));
for (File f : legacySSTableRoot.tryList())
Files.copy(f.toPath(), targetDir.resolve(f.name()));
}
private void verifyFailure(StartupChecks tests, String message)
{
try
{
tests.verify(options);
fail("Expected a startup exception but none was thrown");
}
catch (StartupException e)
{
assertTrue(e.getMessage().contains(message));
}
}
}