org.apache.flink.runtime.webmonitor.WebSubmissionExtension 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.flink.runtime.webmonitor;
import org.apache.flink.annotation.VisibleForTesting;
import org.apache.flink.api.common.time.Time;
import org.apache.flink.api.java.tuple.Tuple2;
import org.apache.flink.client.deployment.application.ApplicationRunner;
import org.apache.flink.client.deployment.application.DetachedApplicationRunner;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.runtime.dispatcher.DispatcherGateway;
import org.apache.flink.runtime.rest.handler.RestHandlerSpecification;
import org.apache.flink.runtime.webmonitor.handlers.JarDeleteHandler;
import org.apache.flink.runtime.webmonitor.handlers.JarDeleteHeaders;
import org.apache.flink.runtime.webmonitor.handlers.JarListHandler;
import org.apache.flink.runtime.webmonitor.handlers.JarListHeaders;
import org.apache.flink.runtime.webmonitor.handlers.JarPlanGetHeaders;
import org.apache.flink.runtime.webmonitor.handlers.JarPlanHandler;
import org.apache.flink.runtime.webmonitor.handlers.JarPlanPostHeaders;
import org.apache.flink.runtime.webmonitor.handlers.JarRunHandler;
import org.apache.flink.runtime.webmonitor.handlers.JarRunHeaders;
import org.apache.flink.runtime.webmonitor.handlers.JarUploadHandler;
import org.apache.flink.runtime.webmonitor.handlers.JarUploadHeaders;
import org.apache.flink.runtime.webmonitor.retriever.GatewayRetriever;
import org.apache.flink.util.concurrent.ExecutorThreadFactory;
import org.apache.flink.util.concurrent.SeparateThreadExecutor;
import org.apache.flink.shaded.netty4.io.netty.channel.ChannelInboundHandler;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executor;
import java.util.function.Supplier;
/** Container for the web submission handlers. */
public class WebSubmissionExtension implements WebMonitorExtension {
private final ArrayList>
webSubmissionHandlers;
// for easier access during testing
private final JarUploadHandler jarUploadHandler;
private final JarRunHandler jarRunHandler;
public WebSubmissionExtension(
Configuration configuration,
GatewayRetriever extends DispatcherGateway> leaderRetriever,
Map responseHeaders,
CompletableFuture localAddressFuture,
Path jarDir,
Executor executor,
Time timeout)
throws Exception {
this(
configuration,
leaderRetriever,
responseHeaders,
localAddressFuture,
jarDir,
executor,
timeout,
() -> new DetachedApplicationRunner(true));
}
@VisibleForTesting
WebSubmissionExtension(
Configuration configuration,
GatewayRetriever extends DispatcherGateway> leaderRetriever,
Map responseHeaders,
CompletableFuture localAddressFuture,
Path jarDir,
Executor executor,
Time timeout,
Supplier applicationRunnerSupplier)
throws Exception {
webSubmissionHandlers = new ArrayList<>();
final Executor jarRunExecutor =
new SeparateThreadExecutor(
new ExecutorThreadFactory.Builder()
.setPoolName("flink-jar-runner")
.build());
jarUploadHandler =
new JarUploadHandler(
leaderRetriever,
timeout,
responseHeaders,
JarUploadHeaders.getInstance(),
jarDir,
executor);
final JarListHandler jarListHandler =
new JarListHandler(
leaderRetriever,
timeout,
responseHeaders,
JarListHeaders.getInstance(),
localAddressFuture,
jarDir.toFile(),
configuration,
executor);
jarRunHandler =
new JarRunHandler(
leaderRetriever,
timeout,
responseHeaders,
JarRunHeaders.getInstance(),
jarDir,
configuration,
jarRunExecutor,
applicationRunnerSupplier);
final JarDeleteHandler jarDeleteHandler =
new JarDeleteHandler(
leaderRetriever,
timeout,
responseHeaders,
JarDeleteHeaders.getInstance(),
jarDir,
executor);
final JarPlanHandler jarPlanHandler =
new JarPlanHandler(
leaderRetriever,
timeout,
responseHeaders,
JarPlanGetHeaders.getInstance(),
jarDir,
configuration,
jarRunExecutor);
final JarPlanHandler postJarPlanHandler =
new JarPlanHandler(
leaderRetriever,
timeout,
responseHeaders,
JarPlanPostHeaders.getInstance(),
jarDir,
configuration,
executor);
webSubmissionHandlers.add(Tuple2.of(JarUploadHeaders.getInstance(), jarUploadHandler));
webSubmissionHandlers.add(Tuple2.of(JarListHeaders.getInstance(), jarListHandler));
webSubmissionHandlers.add(Tuple2.of(JarRunHeaders.getInstance(), jarRunHandler));
webSubmissionHandlers.add(Tuple2.of(JarDeleteHeaders.getInstance(), jarDeleteHandler));
webSubmissionHandlers.add(Tuple2.of(JarPlanGetHeaders.getInstance(), jarPlanHandler));
webSubmissionHandlers.add(Tuple2.of(JarPlanPostHeaders.getInstance(), postJarPlanHandler));
}
@Override
public CompletableFuture closeAsync() {
return CompletableFuture.completedFuture(null);
}
@Override
public Collection> getHandlers() {
return webSubmissionHandlers;
}
@VisibleForTesting
JarUploadHandler getJarUploadHandler() {
return jarUploadHandler;
}
@VisibleForTesting
JarRunHandler getJarRunHandler() {
return jarRunHandler;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy