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

org.apache.bookkeeper.server.http.service.AutoRecoveryStatusService Maven / Gradle / Ivy

There is a newer version: 4.17.1
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.bookkeeper.server.http.service;

import com.google.common.collect.ImmutableMap;
import com.google.common.util.concurrent.UncheckedExecutionException;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.Collections;
import java.util.Map;
import org.apache.bookkeeper.common.util.JsonUtil;
import org.apache.bookkeeper.conf.ServerConfiguration;
import org.apache.bookkeeper.http.HttpServer;
import org.apache.bookkeeper.http.service.HttpEndpointService;
import org.apache.bookkeeper.http.service.HttpServiceRequest;
import org.apache.bookkeeper.http.service.HttpServiceResponse;
import org.apache.bookkeeper.meta.LedgerUnderreplicationManager;
import org.apache.bookkeeper.meta.MetadataDrivers;
import org.apache.commons.lang3.ObjectUtils;

/**
 * HttpEndpointService that handles Autorecovery status related http requests.
 *
 * 

The GET method returns the current status of Autorecovery. The output would be like {"enabled" : true}. * *

The PUT method requires a parameter 'enabled', and enables Autorecovery if its value is 'true', * and disables Autorecovery otherwise. The behaviour is idempotent if Autorecovery status is already * the same as desired. The output would be the current status after the action. * */ @SuppressFBWarnings("RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE") public class AutoRecoveryStatusService implements HttpEndpointService { protected final ServerConfiguration conf; public AutoRecoveryStatusService(ServerConfiguration conf) { this.conf = conf; } @Override public HttpServiceResponse handle(HttpServiceRequest request) throws Exception { return MetadataDrivers.runFunctionWithLedgerManagerFactory(conf, ledgerManagerFactory -> { try (LedgerUnderreplicationManager ledgerUnderreplicationManager = ledgerManagerFactory .newLedgerUnderreplicationManager()) { switch (request.getMethod()) { case GET: return handleGetStatus(ledgerUnderreplicationManager); case PUT: return handlePutStatus(request, ledgerUnderreplicationManager); default: return new HttpServiceResponse("Not found method. Should be GET or PUT method", HttpServer.StatusCode.NOT_FOUND); } } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new UncheckedExecutionException(e); } catch (Exception e) { throw new UncheckedExecutionException(e); } }); } private HttpServiceResponse handleGetStatus(LedgerUnderreplicationManager ledgerUnderreplicationManager) throws Exception { String body = JsonUtil.toJson(ImmutableMap.of("enabled", ledgerUnderreplicationManager.isLedgerReplicationEnabled())); return new HttpServiceResponse(body, HttpServer.StatusCode.OK); } private HttpServiceResponse handlePutStatus(HttpServiceRequest request, LedgerUnderreplicationManager ledgerUnderreplicationManager) throws Exception { Map params = ObjectUtils.defaultIfNull(request.getParams(), Collections.emptyMap()); String enabled = params.get("enabled"); if (enabled == null) { return new HttpServiceResponse("Param 'enabled' not found in " + params, HttpServer.StatusCode.BAD_REQUEST); } if (Boolean.parseBoolean(enabled)) { if (!ledgerUnderreplicationManager.isLedgerReplicationEnabled()) { ledgerUnderreplicationManager.enableLedgerReplication(); } } else { if (ledgerUnderreplicationManager.isLedgerReplicationEnabled()) { ledgerUnderreplicationManager.disableLedgerReplication(); } } // use the current status as the response String body = JsonUtil.toJson(ImmutableMap.of("enabled", ledgerUnderreplicationManager.isLedgerReplicationEnabled())); return new HttpServiceResponse(body, HttpServer.StatusCode.OK); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy