org.apache.kylin.rest.config.cloud.AlluxioExtension Maven / Gradle / Ivy
/*
* 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.config.cloud;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.io.IOUtils;
import org.apache.hadoop.fs.Path;
import org.apache.http.HttpHeaders;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.kylin.common.KapConfig;
import org.apache.kylin.common.KylinConfig;
import org.apache.kylin.job.model.SnapshotBuildFinishedEvent;
import io.kyligence.kap.guava20.shaded.common.collect.Lists;
import io.kyligence.kap.guava20.shaded.common.eventbus.KylinEventException;
import io.kyligence.kap.guava20.shaded.common.eventbus.Subscribe;
import io.kyligence.kap.shaded.curator.org.apache.curator.framework.CuratorFramework;
import io.kyligence.kap.shaded.curator.org.apache.curator.framework.CuratorFrameworkFactory;
import io.kyligence.kap.shaded.curator.org.apache.curator.retry.ExponentialBackoffRetry;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class AlluxioExtension {
private static Pattern IP_PATTERN = Pattern
.compile("((25[0-5]|2[0-4]\\d|1\\d{2}|[1-9]?\\d)\\.){3}(25[0-5]|2[0-4]\\d|1\\d{2}|[1-9]?\\d)");
@Subscribe
public void onSnapshotFinished(SnapshotBuildFinishedEvent finished) throws Exception {
if (finished.getSelectedPartCol() == null || !finished.isIncrementalBuild()) {
return;
}
try {
refreshCacheIfNecessary(finished.getTableDesc().getLastSnapshotPath());
} catch (Exception e) {
log.error("refresh alluxio failed", e);
throw new KylinEventException("refresh alluxio failed", e);
}
}
private void refreshCacheIfNecessary(String snapshotPath) throws Exception {
KylinConfig config = KylinConfig.getInstanceFromEnv();
if (config.skipFreshAlluxio()) {
return;
}
List hosts = acquireAlluxioAddress();
log.info("alluxio hosts: {}", hosts);
String rootPath = new Path(KapConfig.wrap(config).getMetadataWorkingDirectory()).toUri().getPath();
String snapshotAbsolutePath = rootPath + "/" + snapshotPath;
boolean success = false;
for (String hostName : hosts) {
if (tryFreshCache(hostName, snapshotAbsolutePath)) {
success = true;
break;
}
}
if (!success) {
throw new RuntimeException(String.format(Locale.ROOT, "try all alluxio host %s failed", hosts));
}
}
private boolean tryFreshCache(String alluxioHost, String snapshotAbsolutePath) {
String listUrl = String.format(Locale.ROOT, "HTTP://%s:39999/api/v1/paths/%s/list-status", alluxioHost,
snapshotAbsolutePath);
log.info("list url: {}", listUrl);
// post request
try (CloseableHttpClient httpClient = HttpClients.createDefault()) {
HttpPost listAlwaysPost = constructListPost(listUrl, "ALWAYS");
HttpPost listOncePost = constructListPost(listUrl, "ONCE");
chainPost(httpClient, listAlwaysPost, listOncePost);
} catch (Throwable e) {
log.warn(String.format(Locale.ROOT, "use alluxio host %s to refresh snapshot failed", alluxioHost), e);
return false;
}
return true;
}
private void chainPost(CloseableHttpClient httpClient, HttpPost... postRequests) throws IOException {
for (HttpPost postRequest : postRequests) {
HttpResponse response = httpClient.execute(postRequest);
int code = response.getStatusLine().getStatusCode();
if (code != HttpStatus.SC_OK) {
InputStream inputStream = response.getEntity().getContent();
String responseContent = IOUtils.toString(inputStream);
log.warn("request to url, info: {}", postRequest.getURI(), responseContent);
}
}
}
private HttpPost constructListPost(String listUrl, String type) {
HttpPost listPost = new HttpPost(listUrl);
listPost.addHeader(HttpHeaders.CONTENT_TYPE, "application/json");
listPost.setEntity(
new StringEntity(String.format(Locale.ROOT, "{\"recursive\":true,\"loadMetadataType\":\"%s\"}", type),
StandardCharsets.UTF_8));
return listPost;
}
private List acquireAlluxioAddress() throws Exception {
KylinConfig config = KylinConfig.getInstanceFromEnv();
if (config.isEmbeddedEnable()) {
return acquireAlluxioAddressFromConfig();
} else {
return acquireAlluxioAddressFromZK();
}
}
private List acquireAlluxioAddressFromConfig() {
KylinConfig config = KylinConfig.getInstanceFromEnv();
List hosts = Lists.newArrayList();
Matcher m = IP_PATTERN.matcher(config.getParquetReadFileSystem());
while (m.find()) {
hosts.add(m.group());
}
return hosts;
}
private List acquireAlluxioAddressFromZK() throws Exception {
KylinConfig config = KylinConfig.getInstanceFromEnv();
String workSpace = getWorkSpace(config);
log.info("get workspace name : {}", workSpace);
// zk url
String zkPath = String.format(Locale.ROOT, "/alluxio/%s/leader", workSpace);
log.info("zkPath is : {}", zkPath);
CuratorFramework client = CuratorFrameworkFactory.builder().connectString(config.getZookeeperConnectString())
.sessionTimeoutMs(3000).connectionTimeoutMs(5000).retryPolicy(new ExponentialBackoffRetry(1000, 3))
.build();
client.start();
List children = client.getChildren().forPath(zkPath);
log.info("zk children : " + children.toString());
String hostName = children.get(0).split(":")[0];
log.info("get alluxio host {} from zk ", hostName);
client.close();
return Arrays.asList(hostName);
}
private String getWorkSpace(KylinConfig config) {
String workSpace = config.getMetadataUrlPrefix();
log.info("original workspace is {}", workSpace);
String workSpaceSuffix = "_kylin";
if (workSpace.endsWith(workSpaceSuffix)) {
workSpace = workSpace.substring(0, workSpace.length() - workSpaceSuffix.length());
}
return workSpace;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy