Package com.alipay.bluewhale.core.utils

Examples of com.alipay.bluewhale.core.utils.EvenSampler


    this.taskStats = TasksCommon.mk_task_stats(taskObj, samplerate);
  }

  private TaskSendTargets makeSendTargets() {
    String taskName = TasksCommon.get_readable_name(topologyContext);
    EvenSampler statSample = StormConfig.mk_stats_sampler(stormConf);
    //// ��ȡ��ǰtask��ÿ��streamӦ��������ЩcommponID,�Լ���������η����
    // <Stream_id,<component,Grouping>>
    Map<String, Map<String, MkGrouper>> streamComponentGrouper = TasksCommon
        .outbound_components(topologyContext);
    Map<Integer, String> task2Component = topologyContext
View Full Code Here


    return (int) (1 / Double.parseDouble(String.valueOf(conf
        .get(Config.TOPOLOGY_STATS_SAMPLE_RATE))));
  }
 
  public static EvenSampler mk_stats_sampler(Map conf) {
    return new EvenSampler(sampling_rate(conf));
  }
View Full Code Here

TOP

Related Classes of com.alipay.bluewhale.core.utils.EvenSampler

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.