blob: 1d176405dbb948569d2f941f982137f096a3c1a1 [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.mr.history.parser;
import org.apache.eagle.jpm.mr.history.MRHistoryJobConfig;
import org.apache.eagle.jpm.mr.history.crawler.EagleOutputCollector;
import org.apache.eagle.jpm.mr.history.crawler.JobHistoryContentFilter;
import org.apache.hadoop.conf.Configuration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Map;
public class JHFParserFactory {
private static final Logger LOG = LoggerFactory.getLogger(JHFParserFactory.class);
public static JHFParserBase getParser(Map<String, String> baseTags,
Configuration configuration,
JobHistoryContentFilter filter,
MRHistoryJobConfig appConfig) {
MRHistoryJobConfig.EagleServiceConfig eagleServiceConfig = appConfig.getEagleServiceConfig();
JHFMRVer2EventReader reader2 = new JHFMRVer2EventReader(baseTags, configuration, filter, appConfig);
// add HistoryJobEntityCreationListener
reader2.addListener(new JobEntityCreationEagleServiceListener(appConfig));
reader2.addListener(new TaskFailureListener(eagleServiceConfig));
reader2.addListener(new TaskAttemptCounterListener(eagleServiceConfig));
reader2.addListener(new JobConfigurationCreationServiceListener(eagleServiceConfig));
// add HistoryJobEntityLifecycleListener
reader2.register(new JobEntityLifecycleAggregator());
JHFParserBase parser = new JHFMRVer2Parser(reader2);
return parser;
}
}