blob: 4f2c350bfb2503d51332b9bc13c2ac8326fc49de [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.oozie.service;
import java.sql.Connection;
import java.util.HashMap;
import java.util.Map;
import org.apache.hadoop.conf.Configuration;
import org.apache.oozie.ErrorCode;
import org.apache.oozie.client.WorkflowJob;
import org.apache.oozie.service.SchemaService.SchemaName;
import org.apache.oozie.store.Store;
import org.apache.oozie.store.StoreException;
import org.apache.oozie.store.WorkflowStore;
import org.apache.oozie.util.Instrumentable;
import org.apache.oozie.util.Instrumentation;
import org.apache.oozie.util.XLog;
import org.apache.oozie.workflow.WorkflowLib;
import org.apache.oozie.workflow.lite.DBLiteWorkflowLib;
public class DBLiteWorkflowStoreService extends LiteWorkflowStoreService implements Instrumentable {
private boolean selectForUpdate;
private XLog log;
private int statusWindow;
public static final String CONF_PREFIX = Service.CONF_PREFIX + "DBLiteWorkflowStoreService.";
public static final String CONF_METRICS_INTERVAL_MINS = CONF_PREFIX + "status.metrics.collection.interval";
public static final String CONF_METRICS_INTERVAL_WINDOW = CONF_PREFIX + "status.metrics.window";
private static final String INSTRUMENTATION_GROUP = "jobstatus";
private static final String INSTRUMENTATION_GROUP_WINDOW = "windowjobstatus";
private Map<String, Integer> statusCounts = new HashMap<String, Integer>();
private Map<String, Integer> statusWindowCounts = new HashMap<String, Integer>();
/**
* Gets the number of workflows for each status and populates the hash.
*/
class JobStatusCountCallable implements Runnable {
@Override
public void run() {
WorkflowStore store = null;
try {
store = Services.get().get(WorkflowStoreService.class).create();
store.beginTrx();
WorkflowJob.Status[] wfStatusArr = WorkflowJob.Status.values();
for (WorkflowJob.Status aWfStatusArr : wfStatusArr) {
statusCounts.put(aWfStatusArr.name(), store.getWorkflowCountWithStatus(aWfStatusArr.name()));
statusWindowCounts.put(aWfStatusArr.name(), store.getWorkflowCountWithStatusInLastNSeconds(
aWfStatusArr.name(), statusWindow));
}
store.commitTrx();
}
catch (StoreException e) {
if (store != null) {
store.rollbackTrx();
}
log.warn("Exception while accessing the store", e);
}
catch (Exception ex) {
log.error("Exception, {0}", ex.getMessage(), ex);
if (store != null && store.isActive()) {
try {
store.rollbackTrx();
}
catch (RuntimeException rex) {
log.warn("openjpa error, {0}", rex.getMessage(), rex);
}
}
}
finally {
if (store != null) {
if (!store.isActive()) {
try {
store.closeTrx();
}
catch (RuntimeException rex) {
log.warn("Exception while attempting to close store", rex);
}
}
else {
log.warn("transaction is not committed or rolled back before closing entitymanager.");
}
}
}
}
}
public void init(Services services) throws ServiceException {
Configuration conf = services.getConf();
statusWindow = ConfigurationService.getInt(conf, CONF_METRICS_INTERVAL_WINDOW);
int statusMetricsCollectionInterval = ConfigurationService.getInt(conf, CONF_METRICS_INTERVAL_MINS);
log = XLog.getLog(getClass());
selectForUpdate = false;
WorkflowJob.Status[] wfStatusArr = WorkflowJob.Status.values();
for (WorkflowJob.Status aWfStatusArr : wfStatusArr) {
statusCounts.put(aWfStatusArr.name(), 0);
statusWindowCounts.put(aWfStatusArr.name(), 0);
}
Runnable jobStatusCountCallable = new JobStatusCountCallable();
services.get(SchedulerService.class).schedule(jobStatusCountCallable, 1, statusMetricsCollectionInterval,
SchedulerService.Unit.MIN);
}
public void destroy() {
}
/**
* Return the workflow lib without DB connection. Will be used for parsing purpose.
*
* @return Workflow Library
*/
@Override
public WorkflowLib getWorkflowLibWithNoDB() {
return getWorkflowLib(null);
}
private WorkflowLib getWorkflowLib(Connection conn) {
javax.xml.validation.Schema schema = Services.get().get(SchemaService.class).getSchema(SchemaName.WORKFLOW);
return new DBLiteWorkflowLib(schema, LiteControlNodeHandler.class,
LiteDecisionHandler.class, LiteActionHandler.class, conn);
}
@Override
public WorkflowStore create() throws StoreException {
try {
return new WorkflowStore(selectForUpdate);
}
catch (Exception ex) {
throw new StoreException(ErrorCode.E0600, ex.getMessage(), ex);
}
}
@Override
public <S extends Store> WorkflowStore create(S store) throws StoreException {
try {
return new WorkflowStore(store, selectForUpdate);
}
catch (Exception ex) {
throw new StoreException(ErrorCode.E0600, ex.getMessage(), ex);
}
}
@Override
public void instrument(Instrumentation instr) {
final WorkflowJob.Status[] wfStatusArr = WorkflowJob.Status.values();
for (WorkflowJob.Status aWfStatusArr : wfStatusArr) {
final String statusName = aWfStatusArr.name();
instr.addVariable(INSTRUMENTATION_GROUP, statusName, new Instrumentation.Variable<Long>() {
public Long getValue() {
return statusCounts.get(statusName).longValue();
}
});
instr.addVariable(INSTRUMENTATION_GROUP_WINDOW, statusName, new Instrumentation.Variable<Long>() {
public Long getValue() {
return statusWindowCounts.get(statusName).longValue();
}
});
}
}
}