Package com.alibaba.wasp.meta

Examples of com.alibaba.wasp.meta.StorageCleanChore


    // Start storage table cleaner thread
   String n = Thread.currentThread().getName();
   int cleanerInterval = conf.getInt("wasp.master.cleaner.interval", 60 * 60 * 1000);
   this.storageCleaner =
      new StorageCleanChore(cleanerInterval,
         this, conf, AbstractMetaService.getService(conf));
         Threads.setDaemonThreadRunning(storageCleaner.getThread(), n + ".storageCleaner");


    // Put up info server.
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.meta.StorageCleanChore

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.