org.apache.kylin.rest.controller.NSystemController 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.controller;
import static org.apache.kylin.common.constant.Constants.METADATA_FILE;
import static org.apache.kylin.common.constant.HttpConstant.HTTP_VND_APACHE_KYLIN_JSON;
import static org.apache.kylin.common.constant.HttpConstant.HTTP_VND_APACHE_KYLIN_V4_PUBLIC_JSON;
import static org.apache.kylin.common.exception.KylinException.CODE_SUCCESS;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.collections.CollectionUtils;
import org.apache.kylin.common.KylinConfig;
import org.apache.kylin.common.exception.KylinException;
import org.apache.kylin.common.persistence.lock.DeadLockInfo;
import org.apache.kylin.common.persistence.transaction.UnitOfWork;
import org.apache.kylin.common.persistence.transaction.UnitOfWorkParams;
import org.apache.kylin.common.util.AddressUtil;
import org.apache.kylin.guava30.shaded.common.annotations.VisibleForTesting;
import org.apache.kylin.metadata.project.EnhancedUnitOfWork;
import org.apache.kylin.metadata.project.ProjectInstance;
import org.apache.kylin.rest.request.MetadataBackupRequest;
import org.apache.kylin.rest.response.EnvelopeResponse;
import org.apache.kylin.rest.service.FileService;
import org.apache.kylin.rest.service.ProjectService;
import org.apache.kylin.rest.service.ScheduleService;
import org.apache.kylin.rest.service.SystemService;
import org.apache.kylin.rest.util.AclEvaluate;
import org.apache.kylin.tool.util.ToolUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import io.swagger.annotations.ApiOperation;
import lombok.val;
import lombok.extern.slf4j.Slf4j;
@Controller
@RequestMapping(value = "/api/system", produces = { HTTP_VND_APACHE_KYLIN_JSON, HTTP_VND_APACHE_KYLIN_V4_PUBLIC_JSON })
@Slf4j
public class NSystemController extends NBasicController {
@Autowired
@Qualifier("systemService")
private SystemService systemService;
@Autowired
private AclEvaluate aclEvaluate;
@Autowired
private ScheduleService scheduleService;
@Autowired
@Qualifier("projectService")
private ProjectService projectService;
@Autowired
private FileService fileService;
@VisibleForTesting
public void setAclEvaluate(AclEvaluate aclEvaluate) {
this.aclEvaluate = aclEvaluate;
}
@VisibleForTesting
public AclEvaluate getAclEvaluate() {
return this.aclEvaluate;
}
@PutMapping(value = "/roll_event_log")
@ResponseBody
public EnvelopeResponse rollEventLog() {
if (ToolUtil.waitForSparderRollUp()) {
return new EnvelopeResponse<>(CODE_SUCCESS, "", "");
}
return new EnvelopeResponse<>(KylinException.CODE_UNDEFINED, "", "Rollup sparder eventLog failed.");
}
@ApiOperation(value = "host", tags = { "DW" })
@GetMapping(value = "/host")
@ResponseBody
public EnvelopeResponse getHostname() {
return new EnvelopeResponse<>(CODE_SUCCESS, AddressUtil.getLocalInstance(), "");
}
@ApiOperation(value = "reload metadata", tags = { "MID" })
@PostMapping(value = "/metadata/reload")
@ResponseBody
public EnvelopeResponse reloadMetadata() throws IOException {
systemService.reloadMetadata();
return new EnvelopeResponse<>(CODE_SUCCESS, "", "");
}
//add UnitOfWork simulator
@PostMapping(value = "/transaction/simulation")
@ResponseBody
public EnvelopeResponse simulateUnitOfWork(String project, int seconds) {
aclEvaluate.checkProjectAdminPermission(project);
if (KylinConfig.getInstanceFromEnv().isUnitOfWorkSimulationEnabled()) {
EnhancedUnitOfWork.doInTransactionWithCheckAndRetry(() -> {
long index = 0;
while (index < seconds) {
index++;
Thread.sleep(1000L);
}
return index;
}, project);
}
return new EnvelopeResponse<>(CODE_SUCCESS, "", "");
}
@ApiOperation(value = "cleanup garbage", tags = { "MID" })
@PostMapping(value = "/do_cleanup_garbage")
@ResponseBody
public EnvelopeResponse doCleanupGarbage(final HttpServletRequest request) throws Exception {
scheduleService.routineTask();
return new EnvelopeResponse<>(CODE_SUCCESS, "", "");
}
@PostMapping(value = "/transaction/simulation/insert_meta")
@ResponseBody
public EnvelopeResponse simulateInsertMeta(
@RequestParam(value = "count", required = false, defaultValue = "5") int count,
@RequestParam(value = "sleepSec", required = false, defaultValue = "20") long sleepSec) {
if (KylinConfig.getInstanceFromEnv().isUnitOfWorkSimulationEnabled()) {
val projectList = IntStream.range(0, 5).mapToObj(i -> "simulation" + i).collect(Collectors.toList());
projectList.forEach(p -> {
if (CollectionUtils.isNotEmpty(projectService.getReadableProjects(p, true))) {
EnhancedUnitOfWork.doInTransactionWithCheckAndRetry(() -> {
projectService.dropProject(p);
return null;
}, p);
}
});
log.debug("insert_meta begin to create project");
EnhancedUnitOfWork.doInTransactionWithCheckAndRetry(UnitOfWorkParams.