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

org.apache.bookkeeper.server.http.service.RecoveryBookieService 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 static com.google.common.base.Preconditions.checkNotNull;
import static org.apache.bookkeeper.meta.MetadataDrivers.runFunctionWithRegistrationManager;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.concurrent.ExecutorService;
import org.apache.bookkeeper.bookie.Cookie;
import org.apache.bookkeeper.client.BookKeeperAdmin;
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.net.BookieId;
import org.apache.bookkeeper.versioning.Versioned;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * HttpEndpointService that handle Bookkeeper recovery related http request.
 *
 * 

The PUT method will recovery bookie with provided parameter. * The parameter of input body should be like this format: * { * "bookie_src": [ "bookie_src1", "bookie_src2"... ], * "delete_cookie": <bool_value> * } */ public class RecoveryBookieService implements HttpEndpointService { static final Logger LOG = LoggerFactory.getLogger(RecoveryBookieService.class); protected ServerConfiguration conf; protected BookKeeperAdmin bka; protected ExecutorService executor; public RecoveryBookieService(ServerConfiguration conf, BookKeeperAdmin bka, ExecutorService executor) { checkNotNull(conf); this.conf = conf; this.bka = bka; this.executor = executor; } /* * Example body as this: * { * "bookie_src": [ "bookie_src1", "bookie_src2"... ], * "delete_cookie": * } */ static class RecoveryRequestJsonBody { @JsonProperty("bookie_src") public List bookieSrc; @JsonProperty("delete_cookie") public boolean deleteCookie; } @Override public HttpServiceResponse handle(HttpServiceRequest request) throws Exception { HttpServiceResponse response = new HttpServiceResponse(); String requestBody = request.getBody(); RecoveryRequestJsonBody requestJsonBody; if (requestBody == null) { response.setCode(HttpServer.StatusCode.NOT_FOUND); response.setBody("No request body provide."); return response; } try { requestJsonBody = JsonUtil.fromJson(requestBody, RecoveryRequestJsonBody.class); if (LOG.isDebugEnabled()) { LOG.debug("bookie_src: [" + requestJsonBody.bookieSrc.get(0) + "], delete_cookie: [" + requestJsonBody.deleteCookie + "]"); } } catch (JsonUtil.ParseJsonException e) { LOG.error("Meet Exception: ", e); response.setCode(HttpServer.StatusCode.NOT_FOUND); response.setBody("ERROR parameters: " + e.getMessage()); return response; } if (HttpServer.Method.PUT == request.getMethod() && !requestJsonBody.bookieSrc.isEmpty()) { runFunctionWithRegistrationManager(conf, rm -> { final String bookieSrcSerialized = requestJsonBody.bookieSrc.get(0); executor.execute(() -> { try { BookieId bookieSrc = BookieId.parse(bookieSrcSerialized); boolean deleteCookie = requestJsonBody.deleteCookie; LOG.info("Start recovering bookie."); bka.recoverBookieData(bookieSrc); if (deleteCookie) { Versioned cookie = Cookie.readFromRegistrationManager(rm, bookieSrc); cookie.getValue().deleteFromRegistrationManager(rm, bookieSrc, cookie.getVersion()); } LOG.info("Complete recovering bookie"); } catch (Exception e) { LOG.error("Exception occurred while recovering bookie", e); } }); return null; }); response.setCode(HttpServer.StatusCode.OK); response.setBody("Success send recovery request command."); return response; } else { response.setCode(HttpServer.StatusCode.NOT_FOUND); response.setBody("Not found method. Should be PUT method"); return response; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy