Package com.cloudera.flume.master.logical

Examples of com.cloudera.flume.master.logical.LogicalConfigurationManager


  void buildMaster() throws IOException {
    cfgMan = new ConfigManager(FlumeMaster.createConfigStore(FlumeConfiguration
        .get()));
    StatusManager statman = new StatusManager();
    flowed = new FlowConfigManager.FailoverFlowConfigManager(cfgMan, statman);
    logical = new LogicalConfigurationManager(flowed, new ConfigManager(),
        statman);
    flumeMaster = new FlumeMaster(new CommandManager(), logical, statman,
        new MasterAckManager(), FlumeConfiguration.get());
  }
View Full Code Here


    ConfigurationManager failover = new FailoverConfigurationManager(cfgMan,
        self2, fcMan);

    StatusManager statman = new StatusManager();
    ConfigurationManager self = new ConfigManager();
    ConfigurationManager logical = new LogicalConfigurationManager(failover,
        self, statman);
    flumeMaster = new FlumeMaster(new CommandManager(), logical, statman,
        new MasterAckManager(), FlumeConfiguration.get());

  }
View Full Code Here

    ConfigurationManager failover = new FailoverConfigurationManager(cfgMan,
        self2, fcMan);

    StatusManager statman = new StatusManager();
    ConfigurationManager self = new ConfigManager();
    ConfigurationManager logical = new LogicalConfigurationManager(failover,
        self, statman);
    flumeMaster = new FlumeMaster(new CommandManager(), logical, statman,
        new MasterAckManager(), FlumeConfiguration.get());

  }
View Full Code Here

    ConfigurationManager failover = new FailoverConfigurationManager(cfgMan,
        self2, fcMan);

    StatusManager statman = new StatusManager();
    ConfigurationManager self = new ConfigManager();
    ConfigurationManager logical = new LogicalConfigurationManager(failover,
        self, statman);
    flumeMaster = new FlumeMaster(new CommandManager(), logical, statman,
        new MasterAckManager(), FlumeConfiguration.get());

  }
View Full Code Here

      // situations. For now we disallow translation.
      LOG.info("Single master, config translations enabled");
      ConfigurationManager base = new ConfigManager(cfgStore);
      ConfigurationManager flowedFailovers = new FlowConfigManager.FailoverFlowConfigManager(
          base, statman);
      this.specman = new LogicalConfigurationManager(flowedFailovers,
          new ConfigManager(), statman);
    }

    if (FlumeConfiguration.get().getMasterIsDistributed()) {
      this.ackman = new GossipedMasterAckManager(FlumeConfiguration.get());
View Full Code Here

      // situations. For now we disallow translation.
      LOG.info("Single master, config translations enabled");
      ConfigurationManager base = new ConfigManager(cfgStore);
      ConfigurationManager flowedFailovers = new FlowConfigManager.FailoverFlowConfigManager(
          base, statman);
      this.specman = new LogicalConfigurationManager(flowedFailovers,
          new ConfigManager(), statman);
    }

    if (FlumeConfiguration.get().getMasterIsDistributed()) {
      this.ackman = new GossipedMasterAckManager(FlumeConfiguration.get());
View Full Code Here

    // thier configurations partitioned now, only the user entered root
    // configurations are saved.
    ConfigurationManager base = new ConfigManager(cfgStore);
    ConfigurationManager flowedFailovers = new FlowConfigManager.FailoverFlowConfigManager(
        base, statman);
    this.specman = new LogicalConfigurationManager(flowedFailovers,
        new ConfigManager(), statman);

    if (FlumeConfiguration.get().getMasterIsDistributed()) {
      this.ackman = new GossipedMasterAckManager(FlumeConfiguration.get());
    } else {
View Full Code Here

TOP

Related Classes of com.cloudera.flume.master.logical.LogicalConfigurationManager

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.