Package com.flaptor.indextank

Examples of com.flaptor.indextank.LogIndexRecoverer


            setStatus(IndexerStatus.recovering);
            logger.info("startFullRecovery requested. Creating and starting a recovery thread.");
           
            Runnable recoverer;
            if (logBasedStorage) {
                recoverer = new LogIndexRecoverer(this, indexCode, logServerHost, logServerPort);
            } else {
                recoverer = new IndexRecoverer(this, "127.0.0.1", basePort, baseDir, indexCode, environment, recoveryStorage, cassandraClusterHosts);
                ((IndexRecoverer)recoverer).resetTimestamp();
            }
           
View Full Code Here

TOP

Related Classes of com.flaptor.indextank.LogIndexRecoverer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.