blob: dd1980b81c8f2259d3a9dc5cd4a6dfb6a001219c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.eagle.jpm.aggregation.mr;
import org.apache.eagle.jpm.aggregation.AggregationConfig;
import org.apache.eagle.jpm.aggregation.common.MetricAggregator;
import org.apache.eagle.jpm.aggregation.common.MetricsAggregateContainer;
import org.apache.eagle.jpm.mr.historyentity.JobProcessTimeStampEntity;
import org.apache.eagle.jpm.util.Constants;
import org.apache.eagle.log.entity.GenericServiceAPIResponseEntity;
import org.apache.eagle.service.client.IEagleServiceClient;
import org.apache.eagle.service.client.impl.EagleServiceClientImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.apache.eagle.jpm.aggregation.AggregationConfig.EagleServiceConfig;
public class MRMetricsAggregateContainer implements MetricsAggregateContainer, Serializable {
private static final Logger LOG = LoggerFactory.getLogger(MRMetricsAggregateContainer.class);
private Map<String, MetricAggregator> metricAggregators;
private AggregationConfig appConfig;
public MRMetricsAggregateContainer(Map<String, List<List<String>>> metrics, AggregationConfig appConfig) {
this.metricAggregators = new HashMap<>();
//metric name, aggregate columns
for (String metric : metrics.keySet()) {
this.metricAggregators.put(metric, new MRMetricAggregator(metric, metrics.get(metric), appConfig));
}
this.appConfig = appConfig;
}
@Override
public long fetchLatestJobProcessTime() {
try {
EagleServiceConfig eagleServiceConfig = appConfig.getEagleServiceConfig();
IEagleServiceClient client = new EagleServiceClientImpl(
eagleServiceConfig.eagleServiceHost,
eagleServiceConfig.eagleServicePort,
eagleServiceConfig.username,
eagleServiceConfig.password);
String query = String.format("%s[@site=\"%s\"]<@site>{max(currentTimeStamp)}",
Constants.JPA_JOB_PROCESS_TIME_STAMP_NAME,
appConfig.getStormConfig().site);
GenericServiceAPIResponseEntity response = client
.search(query)
.startTime(0L)
.endTime(System.currentTimeMillis())
.pageSize(10)
.send();
List<Map<List<String>, List<Double>>> results = response.getObj();
long currentProcessTimeStamp = results.get(0).get("value").get(0).longValue();
client.close();
return currentProcessTimeStamp;
} catch (Exception e) {
LOG.warn("{}", e);
}
return 0L;
}
@Override
public boolean aggregate(long startTime, long endTime) {
for (String metric : this.metricAggregators.keySet()) {
MetricAggregator metricAggregator = this.metricAggregators.get(metric);
if (!metricAggregator.aggregate(startTime, endTime)) {
return false;
}
}
return true;
}
}