org.neo4j.consistency.ConsistencyCheckTool Maven / Gradle / Ivy
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.consistency;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.time.ZoneId;
import java.util.List;
import java.util.Map;
import org.neo4j.consistency.checking.full.ConsistencyCheckIncompleteException;
import org.neo4j.consistency.checking.full.ConsistencyFlags;
import org.neo4j.graphdb.factory.GraphDatabaseSettings;
import org.neo4j.helpers.Args;
import org.neo4j.helpers.Strings;
import org.neo4j.helpers.collection.MapUtil;
import org.neo4j.helpers.progress.ProgressMonitorFactory;
import org.neo4j.io.fs.DefaultFileSystemAbstraction;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.io.pagecache.PageCache;
import org.neo4j.kernel.configuration.Config;
import org.neo4j.kernel.impl.pagecache.ConfigurableStandalonePageCacheFactory;
import org.neo4j.kernel.impl.recovery.RecoveryRequiredChecker;
import org.neo4j.kernel.monitoring.Monitors;
import org.neo4j.logging.FormattedLogProvider;
import org.neo4j.logging.LogProvider;
import static org.neo4j.helpers.Args.jarUsage;
import static org.neo4j.helpers.Strings.joinAsLines;
import static org.neo4j.helpers.collection.MapUtil.stringMap;
public class ConsistencyCheckTool
{
private static final String CONFIG = "config";
private static final String VERBOSE = "v";
public static void main( String[] args )
{
try
{
System.err.println("WARNING: ConsistencyCheckTool is deprecated and support for it will be" +
"removed in a future version of Neo4j. Please use neo4j-admin check-consistency.");
runConsistencyCheckTool( args, System.out, System.err );
}
catch ( ToolFailureException e )
{
e.exitTool();
}
}
public static ConsistencyCheckService.Result runConsistencyCheckTool( String[] args, PrintStream outStream,
PrintStream errStream )
throws ToolFailureException
{
FileSystemAbstraction fileSystem = new DefaultFileSystemAbstraction();
try
{
ConsistencyCheckTool tool =
new ConsistencyCheckTool( new ConsistencyCheckService(), fileSystem, outStream, errStream );
return tool.run( args );
}
finally
{
try
{
fileSystem.close();
}
catch ( IOException e )
{
System.err.print( "Failure during file system shutdown." );
}
}
}
private final ConsistencyCheckService consistencyCheckService;
private final PrintStream systemOut;
private final PrintStream systemError;
private final FileSystemAbstraction fs;
ConsistencyCheckTool( ConsistencyCheckService consistencyCheckService, FileSystemAbstraction fs,
PrintStream systemOut, PrintStream systemError )
{
this.consistencyCheckService = consistencyCheckService;
this.fs = fs;
this.systemOut = systemOut;
this.systemError = systemError;
}
ConsistencyCheckService.Result run( String... args ) throws ToolFailureException
{
Args arguments = Args.withFlags( VERBOSE ).parse( args );
File storeDir = determineStoreDirectory( arguments );
Config tuningConfiguration = readConfiguration( arguments );
boolean verbose = isVerbose( arguments );
checkDbState( storeDir, tuningConfiguration );
ZoneId logTimeZone = tuningConfiguration.get( GraphDatabaseSettings.db_timezone ).getZoneId();
LogProvider logProvider = FormattedLogProvider.withZoneId( logTimeZone ).toOutputStream( systemOut );
try
{
return consistencyCheckService.runFullConsistencyCheck( storeDir, tuningConfiguration,
ProgressMonitorFactory.textual( systemError ), logProvider, fs, verbose,
new ConsistencyFlags( tuningConfiguration ) );
}
catch ( ConsistencyCheckIncompleteException e )
{
throw new ToolFailureException( "Check aborted due to exception", e );
}
}
private boolean isVerbose( Args arguments )
{
return arguments.getBoolean( VERBOSE, false, true );
}
private void checkDbState( File storeDir, Config tuningConfiguration ) throws ToolFailureException
{
try ( PageCache pageCache = ConfigurableStandalonePageCacheFactory.createPageCache( fs, tuningConfiguration ) )
{
RecoveryRequiredChecker requiredChecker = new RecoveryRequiredChecker( fs, pageCache,
tuningConfiguration, new Monitors() );
if ( requiredChecker.isRecoveryRequiredAt( storeDir ) )
{
throw new ToolFailureException( Strings.joinAsLines(
"Active logical log detected, this might be a source of inconsistencies.",
"Please recover database before running the consistency check.",
"To perform recovery please start database and perform clean shutdown." ) );
}
}
catch ( IOException e )
{
systemError.printf( "Failure when checking for recovery state: '%s', continuing as normal.%n", e );
}
}
private File determineStoreDirectory( Args arguments ) throws ToolFailureException
{
List unprefixedArguments = arguments.orphans();
if ( unprefixedArguments.size() != 1 )
{
throw new ToolFailureException( usage() );
}
File storeDir = new File( unprefixedArguments.get( 0 ) );
if ( !storeDir.isDirectory() )
{
throw new ToolFailureException(
Strings.joinAsLines( String.format( "'%s' is not a directory", storeDir ) ) + usage() );
}
return storeDir;
}
private Config readConfiguration( Args arguments ) throws ToolFailureException
{
Map specifiedConfig = stringMap();
String configFilePath = arguments.get( CONFIG, null );
if ( configFilePath != null )
{
File configFile = new File( configFilePath );
try
{
specifiedConfig = MapUtil.load( configFile );
}
catch ( IOException e )
{
throw new ToolFailureException( String.format( "Could not read configuration file [%s]",
configFilePath ), e );
}
}
return Config.defaults( specifiedConfig );
}
private String usage()
{
return joinAsLines(
jarUsage( getClass(), " [-config ] [-v] " ),
"WHERE: -config Is the location of an optional properties file",
" containing tuning parameters for the consistency check.",
" -v Produce execution output.",
" Is the path to the store to check."
);
}
public static class ToolFailureException extends Exception
{
ToolFailureException( String message )
{
super( message );
}
ToolFailureException( String message, Throwable cause )
{
super( message, cause );
}
public void exitTool()
{
printErrorMessage();
exit();
}
public void printErrorMessage()
{
System.err.println( getMessage() );
if ( getCause() != null )
{
getCause().printStackTrace( System.err );
}
}
}
private static void exit()
{
System.exit( 1 );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy