Package com.linkedin.databus.bootstrap.common.BootstrapCleanerStaticConfig

Examples of com.linkedin.databus.bootstrap.common.BootstrapCleanerStaticConfig.RetentionStaticConfig


        }
        LOG.info("End phase 1 : Gather candidate loginfo :");

        LOG.info("Initial Candidate Set for Source :" + s.getSrcName()
            + " is :" + candidateLogsInfo);
        RetentionStaticConfig rConf = _bootstrapCleanerStaticConfig.getRetentionConfig(s
            .getSrcName());
        LOG.info("Retention Config for source :" + s.getSrcName() + " is :"
            + rConf);

        LOG.info("Begin phase 2 : Filter based on retention config :");
View Full Code Here


    public RetentionStaticConfig build() throws InvalidConfigException
    {
      try
      {
        RetentionType type = RetentionType.valueOf(retentionType);
        return new RetentionStaticConfig(type, retentionQuantity);
      } catch (Exception ex) {
        throw new InvalidConfigException(ex);
      }
    }
View Full Code Here

TOP

Related Classes of com.linkedin.databus.bootstrap.common.BootstrapCleanerStaticConfig.RetentionStaticConfig

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.