org.apache.kylin.rest.service.task.MetaUpdateJob Maven / Gradle / Ivy
The newest version!
/*
* 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.kylin.rest.service.task;
import java.util.concurrent.ExecutionException;
import org.apache.kylin.job.JobContext;
import org.apache.kylin.job.exception.ExecuteException;
import org.apache.kylin.job.execution.AbstractExecutable;
import org.apache.kylin.job.execution.DefaultExecutable;
import org.apache.kylin.job.execution.ExecuteResult;
import org.apache.kylin.job.factory.JobFactory;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class MetaUpdateJob extends AbstractExecutable {
static class MetaUpdateJobFactory extends JobFactory {
MetaUpdateJobFactory() {
}
@Override
protected DefaultExecutable create(JobBuildParams jobBuildParams) {
return MetaUpdateJob.create(jobBuildParams);
}
}
public MetaUpdateJob() {
super();
}
public MetaUpdateJob(Object notSetId) {
super(notSetId);
}
public static DefaultExecutable create(JobFactory.JobBuildParams jobBuildParams) {
DefaultExecutable job = new DefaultExecutable();
MetaUpdateJob innerJob = new MetaUpdateJob();
innerJob.setParam(PARENT_ID, job.getJobId());
job.addTask(innerJob);
job.setJobType(jobBuildParams.getJobType());
return job;
}
@Override
protected ExecuteResult doWork(JobContext context) throws ExecuteException {
String project = this.getProject();
QueryHistoryMetaUpdateScheduler scheduler = QueryHistoryMetaUpdateScheduler.getInstance();
try {
scheduler.scheduleImmediately(scheduler.new QueryHistoryMetaUpdateRunner(project)).get();
} catch (InterruptedException e) {
log.warn("Meta update task is interrupted.", e);
Thread.currentThread().interrupt();
throw new ExecuteException("Failed to update meta via QueryHistory", e);
} catch (ExecutionException e) {
log.error("Failed to update meta via QueryHistory", e);
throw new ExecuteException("Failed to update meta via QueryHistory", e);
}
return ExecuteResult.createSucceed();
}
}