Package com.linkedin.databus.bootstrap.common

Examples of com.linkedin.databus.bootstrap.common.BootstrapDBCleaner


            new ConfigLoader<BootstrapReadOnlyConfig>("databus.bootstrap.db.", bsConfig);

    _sCleanerConfig = configLoader.loadConfig(_sBootstrapConfigProps);
    _sBootstrapConfig = configLoader2.loadConfig(_sBootstrapConfigProps);

    BootstrapDBCleaner cleaner = new BootstrapDBCleaner("StandAloneCleaner",
                              _sCleanerConfig,
                              _sBootstrapConfig,
                              null,
                              _sSources);

    cleaner.doClean();
  }
View Full Code Here


      _applierThreads.put(source, applierThread);
    }

    // Create BootstrapDBCleaner
    final String dbCleanerName = "DBCleaner";
    _dbCleaner = new BootstrapDBCleaner(dbCleanerName,
        _bootstrapProducerStaticConfig.getCleaner(),
        _bootstrapProducerStaticConfig, _applierThreads, _registeredSources);

    // Create periodic trigger thread
    _dbPeriodicTriggerThread = new BootstrapDBPeriodicTriggerThread(_dbCleaner,
View Full Code Here

TOP

Related Classes of com.linkedin.databus.bootstrap.common.BootstrapDBCleaner

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.