All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.runtime.rest.handler.AbstractHandler Maven / Gradle / Ivy

There is a newer version: 1.13.6
Show 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.flink.runtime.rest.handler;

import org.apache.flink.api.common.time.Time;
import org.apache.flink.runtime.concurrent.FutureUtils;
import org.apache.flink.runtime.rest.FileUploadHandler;
import org.apache.flink.runtime.rest.FlinkHttpObjectAggregator;
import org.apache.flink.runtime.rest.handler.router.RoutedRequest;
import org.apache.flink.runtime.rest.handler.util.HandlerUtils;
import org.apache.flink.runtime.rest.messages.ErrorResponseBody;
import org.apache.flink.runtime.rest.messages.MessageParameters;
import org.apache.flink.runtime.rest.messages.RequestBody;
import org.apache.flink.runtime.rest.messages.UntypedResponseMessageHeaders;
import org.apache.flink.runtime.rest.util.RestMapperUtils;
import org.apache.flink.runtime.webmonitor.RestfulGateway;
import org.apache.flink.runtime.webmonitor.retriever.GatewayRetriever;
import org.apache.flink.util.AutoCloseableAsync;
import org.apache.flink.util.ExceptionUtils;
import org.apache.flink.util.Preconditions;

import org.apache.flink.shaded.guava18.com.google.common.base.Ascii;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.core.JsonParseException;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.databind.JsonMappingException;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.flink.shaded.netty4.io.netty.buffer.ByteBuf;
import org.apache.flink.shaded.netty4.io.netty.buffer.ByteBufInputStream;
import org.apache.flink.shaded.netty4.io.netty.channel.ChannelHandlerContext;
import org.apache.flink.shaded.netty4.io.netty.handler.codec.http.FullHttpRequest;
import org.apache.flink.shaded.netty4.io.netty.handler.codec.http.HttpRequest;
import org.apache.flink.shaded.netty4.io.netty.handler.codec.http.HttpResponseStatus;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Map;
import java.util.concurrent.CompletableFuture;

/**
 * Super class for netty-based handlers that work with {@link RequestBody}.
 *
 * 

Subclasses must be thread-safe * * @param type of the leader gateway * @param type of the incoming request * @param type of the message parameters */ public abstract class AbstractHandler extends LeaderRetrievalHandler implements AutoCloseableAsync { protected final Logger log = LoggerFactory.getLogger(getClass()); protected static final ObjectMapper MAPPER = RestMapperUtils.getStrictObjectMapper(); /** * Other response payload overhead (in bytes). * If we truncate response payload, we should leave enough buffer for this overhead. */ private static final int OTHER_RESP_PAYLOAD_OVERHEAD = 1024; private final UntypedResponseMessageHeaders untypedResponseMessageHeaders; /** * Used to ensure that the handler is not closed while there are still in-flight requests. */ private final InFlightRequestTracker inFlightRequestTracker; protected AbstractHandler( @Nonnull GatewayRetriever leaderRetriever, @Nonnull Time timeout, @Nonnull Map responseHeaders, @Nonnull UntypedResponseMessageHeaders untypedResponseMessageHeaders) { super(leaderRetriever, timeout, responseHeaders); this.untypedResponseMessageHeaders = Preconditions.checkNotNull(untypedResponseMessageHeaders); this.inFlightRequestTracker = new InFlightRequestTracker(); } @Override protected void respondAsLeader(ChannelHandlerContext ctx, RoutedRequest routedRequest, T gateway) { HttpRequest httpRequest = routedRequest.getRequest(); if (log.isTraceEnabled()) { log.trace("Received request " + httpRequest.uri() + '.'); } FileUploads uploadedFiles = null; try { inFlightRequestTracker.registerRequest(); if (!(httpRequest instanceof FullHttpRequest)) { // The RestServerEndpoint defines a HttpObjectAggregator in the pipeline that always returns // FullHttpRequests. log.error("Implementation error: Received a request that wasn't a FullHttpRequest."); throw new RestHandlerException("Bad request received.", HttpResponseStatus.BAD_REQUEST); } final ByteBuf msgContent = ((FullHttpRequest) httpRequest).content(); uploadedFiles = FileUploadHandler.getMultipartFileUploads(ctx); if (!untypedResponseMessageHeaders.acceptsFileUploads() && !uploadedFiles.getUploadedFiles().isEmpty()) { throw new RestHandlerException("File uploads not allowed.", HttpResponseStatus.BAD_REQUEST); } R request; if (msgContent.capacity() == 0) { try { request = MAPPER.readValue("{}", untypedResponseMessageHeaders.getRequestClass()); } catch (JsonParseException | JsonMappingException je) { throw new RestHandlerException("Bad request received. Request did not conform to expected format.", HttpResponseStatus.BAD_REQUEST, je); } } else { try { InputStream in = new ByteBufInputStream(msgContent); request = MAPPER.readValue(in, untypedResponseMessageHeaders.getRequestClass()); } catch (JsonParseException | JsonMappingException je) { throw new RestHandlerException( String.format("Request did not match expected format %s.", untypedResponseMessageHeaders.getRequestClass().getSimpleName()), HttpResponseStatus.BAD_REQUEST, je); } } final HandlerRequest handlerRequest; try { handlerRequest = new HandlerRequest( request, untypedResponseMessageHeaders.getUnresolvedMessageParameters(), routedRequest.getRouteResult().pathParams(), routedRequest.getRouteResult().queryParams(), uploadedFiles.getUploadedFiles()); } catch (HandlerRequestException hre) { log.error("Could not create the handler request.", hre); throw new RestHandlerException( String.format("Bad request, could not parse parameters: %s", hre.getMessage()), HttpResponseStatus.BAD_REQUEST, hre); } log.trace("Starting request processing."); CompletableFuture requestProcessingFuture = respondToRequest( ctx, httpRequest, handlerRequest, gateway); final FileUploads finalUploadedFiles = uploadedFiles; requestProcessingFuture .whenComplete((Void ignored, Throwable throwable) -> { if (throwable != null) { handleException(ExceptionUtils.stripCompletionException(throwable), ctx, httpRequest) .whenComplete((Void ignored2, Throwable throwable2) -> finalizeRequestProcessing(finalUploadedFiles)); } else { finalizeRequestProcessing(finalUploadedFiles); } }); } catch (Throwable e) { final FileUploads finalUploadedFiles = uploadedFiles; handleException(e, ctx, httpRequest) .whenComplete((Void ignored, Throwable throwable) -> finalizeRequestProcessing(finalUploadedFiles)); } } private void finalizeRequestProcessing(FileUploads uploadedFiles) { inFlightRequestTracker.deregisterRequest(); cleanupFileUploads(uploadedFiles); } private CompletableFuture handleException(Throwable throwable, ChannelHandlerContext ctx, HttpRequest httpRequest) { FlinkHttpObjectAggregator flinkHttpObjectAggregator = ctx.pipeline().get(FlinkHttpObjectAggregator.class); int maxLength = flinkHttpObjectAggregator.maxContentLength() - OTHER_RESP_PAYLOAD_OVERHEAD; if (throwable instanceof RestHandlerException) { RestHandlerException rhe = (RestHandlerException) throwable; String stackTrace = ExceptionUtils.stringifyException(rhe); String truncatedStackTrace = Ascii.truncate(stackTrace, maxLength, "..."); if (log.isDebugEnabled()) { log.error("Exception occurred in REST handler.", rhe); } else { log.error("Exception occurred in REST handler: {}", rhe.getMessage()); } return HandlerUtils.sendErrorResponse( ctx, httpRequest, new ErrorResponseBody(truncatedStackTrace), rhe.getHttpResponseStatus(), responseHeaders); } else { log.error("Unhandled exception.", throwable); String stackTrace = String.format("", ExceptionUtils.stringifyException(throwable)); String truncatedStackTrace = Ascii.truncate(stackTrace, maxLength, "..."); return HandlerUtils.sendErrorResponse( ctx, httpRequest, new ErrorResponseBody(Arrays.asList("Internal server error.", truncatedStackTrace)), HttpResponseStatus.INTERNAL_SERVER_ERROR, responseHeaders); } } @Override public final CompletableFuture closeAsync() { return FutureUtils.composeAfterwards(closeHandlerAsync(), inFlightRequestTracker::awaitAsync); } protected CompletableFuture closeHandlerAsync() { return CompletableFuture.completedFuture(null); } private void cleanupFileUploads(@Nullable FileUploads uploadedFiles) { if (uploadedFiles != null) { try { uploadedFiles.close(); } catch (IOException e) { log.warn("Could not cleanup uploaded files.", e); } } } /** * Respond to the given {@link HandlerRequest}. * * @param ctx channel handler context to write the response * @param httpRequest original http request * @param handlerRequest typed handler request * @param gateway leader gateway * @return Future which is completed once the request has been processed * @throws RestHandlerException if an exception occurred while responding */ protected abstract CompletableFuture respondToRequest( ChannelHandlerContext ctx, HttpRequest httpRequest, HandlerRequest handlerRequest, T gateway) throws RestHandlerException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy