use of com.twitter.heron.healthmgr.common.MetricsStats in project incubator-heron by apache.
the class SlowInstanceDiagnoser method diagnose.
@Override
public Diagnosis diagnose(List<Symptom> symptoms) {
List<Symptom> bpSymptoms = getBackPressureSymptoms(symptoms);
Map<String, ComponentMetrics> processingRateSkewComponents = getProcessingRateSkewComponents(symptoms);
Map<String, ComponentMetrics> waitQDisparityComponents = getWaitQDisparityComponents(symptoms);
if (bpSymptoms.isEmpty() || waitQDisparityComponents.isEmpty() || !processingRateSkewComponents.isEmpty()) {
// execution count, no action is needed
return null;
} else if (bpSymptoms.size() > 1) {
// TODO handle cases where multiple detectors create back pressure symptom
throw new IllegalStateException("Multiple back-pressure symptoms case");
}
ComponentMetrics bpMetrics = bpSymptoms.iterator().next().getComponent();
// verify wait Q disparity and back pressure for the same component exists
ComponentMetrics pendingBufferMetrics = waitQDisparityComponents.get(bpMetrics.getName());
if (pendingBufferMetrics == null) {
// no wait Q disparity for the component with back pressure. There is no slow instance
return null;
}
ComponentMetrics mergedData = ComponentMetrics.merge(bpMetrics, pendingBufferMetrics);
ComponentMetricsHelper compStats = new ComponentMetricsHelper(mergedData);
compStats.computeBpStats();
MetricsStats bufferStats = compStats.computeMinMaxStats(METRIC_BUFFER_SIZE);
Symptom resultSymptom = null;
for (InstanceMetrics boltMetrics : compStats.getBoltsWithBackpressure()) {
double bufferSize = boltMetrics.getMetricValueSum(METRIC_BUFFER_SIZE.text());
double bpValue = boltMetrics.getMetricValueSum(METRIC_BACK_PRESSURE.text());
if (bufferStats.getMetricMax() < bufferSize * 2) {
LOG.info(String.format("SLOW: %s back-pressure(%s) and high buffer size: %s " + "and similar processing rates", boltMetrics.getName(), bpValue, bufferSize));
resultSymptom = new Symptom(SYMPTOM_SLOW_INSTANCE.text(), mergedData);
}
}
return resultSymptom != null ? new Diagnosis(DIAGNOSIS_SLOW_INSTANCE.text(), resultSymptom) : null;
}
use of com.twitter.heron.healthmgr.common.MetricsStats in project incubator-heron by apache.
the class SkewDetector method detect.
/**
* Detects components experiencing data skew, instances with vastly different execute counts.
*
* @return A collection of affected components
*/
@Override
public List<Symptom> detect() {
ArrayList<Symptom> result = new ArrayList<>();
Map<String, ComponentMetrics> metrics = sensor.get();
for (ComponentMetrics compMetrics : metrics.values()) {
ComponentMetricsHelper compStats = new ComponentMetricsHelper(compMetrics);
MetricsStats stats = compStats.computeMinMaxStats(sensor.getMetricName());
if (stats.getMetricMax() > skewRatio * stats.getMetricMin()) {
LOG.info(String.format("Detected skew for %s, min = %f, max = %f", compMetrics.getName(), stats.getMetricMin(), stats.getMetricMax()));
result.add(new Symptom(symptomName.text(), compMetrics));
}
}
return result;
}
use of com.twitter.heron.healthmgr.common.MetricsStats in project incubator-heron by apache.
the class LargeWaitQueueDetector method detect.
/**
* Detects all components unable to keep up with input load, hence having a large pending buffer
* or wait queue
*
* @return A collection of all components executing slower than input rate.
*/
@Override
public List<Symptom> detect() {
ArrayList<Symptom> result = new ArrayList<>();
Map<String, ComponentMetrics> bufferSizes = pendingBufferSensor.get();
for (ComponentMetrics compMetrics : bufferSizes.values()) {
ComponentMetricsHelper compStats = new ComponentMetricsHelper(compMetrics);
MetricsStats stats = compStats.computeMinMaxStats(METRIC_BUFFER_SIZE.text());
if (stats.getMetricMin() > sizeLimit) {
LOG.info(String.format("Detected large wait queues for %s, smallest queue is %f", compMetrics.getName(), stats.getMetricMin()));
result.add(new Symptom(SYMPTOM_LARGE_WAIT_Q.text(), compMetrics));
}
}
return result;
}
use of com.twitter.heron.healthmgr.common.MetricsStats in project incubator-heron by apache.
the class DataSkewDiagnoser method diagnose.
@Override
public Diagnosis diagnose(List<Symptom> symptoms) {
List<Symptom> bpSymptoms = getBackPressureSymptoms(symptoms);
Map<String, ComponentMetrics> processingRateSkewComponents = getProcessingRateSkewComponents(symptoms);
Map<String, ComponentMetrics> waitQDisparityComponents = getWaitQDisparityComponents(symptoms);
if (bpSymptoms.isEmpty() || processingRateSkewComponents.isEmpty() || waitQDisparityComponents.isEmpty()) {
// Since there is no back pressure or disparate execute count, no action is needed
return null;
} else if (bpSymptoms.size() > 1) {
// TODO handle cases where multiple detectors create back pressure symptom
throw new IllegalStateException("Multiple back-pressure symptoms case");
}
ComponentMetrics bpMetrics = bpSymptoms.iterator().next().getComponent();
// verify data skew, larger queue size and back pressure for the same component exists
ComponentMetrics exeCountMetrics = processingRateSkewComponents.get(bpMetrics.getName());
ComponentMetrics pendingBufferMetrics = waitQDisparityComponents.get(bpMetrics.getName());
if (exeCountMetrics == null || pendingBufferMetrics == null) {
// for the component with back pressure. This is not a data skew case
return null;
}
ComponentMetrics mergedData = ComponentMetrics.merge(bpMetrics, ComponentMetrics.merge(exeCountMetrics, pendingBufferMetrics));
ComponentMetricsHelper compStats = new ComponentMetricsHelper(mergedData);
compStats.computeBpStats();
MetricsStats exeStats = compStats.computeMinMaxStats(METRIC_EXE_COUNT);
MetricsStats bufferStats = compStats.computeMinMaxStats(METRIC_BUFFER_SIZE);
Symptom resultSymptom = null;
for (InstanceMetrics boltMetrics : compStats.getBoltsWithBackpressure()) {
double exeCount = boltMetrics.getMetricValueSum(METRIC_EXE_COUNT.text());
double bufferSize = boltMetrics.getMetricValueSum(METRIC_BUFFER_SIZE.text());
double bpValue = boltMetrics.getMetricValueSum(METRIC_BACK_PRESSURE.text());
if (exeStats.getMetricMax() < 1.10 * exeCount && bufferStats.getMetricMax() < 2 * bufferSize) {
LOG.info(String.format("DataSkew: %s back-pressure(%s), high execution count: %s and " + "high buffer size %s", boltMetrics.getName(), bpValue, exeCount, bufferSize));
resultSymptom = new Symptom(SYMPTOM_DATA_SKEW.text(), mergedData);
}
}
return resultSymptom != null ? new Diagnosis(DIAGNOSIS_DATA_SKEW.text(), resultSymptom) : null;
}
Aggregations