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

org.apache.james.backends.es.ElasticSearchHealthCheck Maven / Gradle / Ivy

The 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.james.backends.es;

import java.io.IOException;
import java.util.Set;

import javax.inject.Inject;

import org.apache.commons.lang3.NotImplementedException;
import org.apache.james.core.healthcheck.ComponentName;
import org.apache.james.core.healthcheck.HealthCheck;
import org.apache.james.core.healthcheck.Result;
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest;
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.Requests;
import org.elasticsearch.client.RestHighLevelClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.annotations.VisibleForTesting;


public class ElasticSearchHealthCheck implements HealthCheck {
    private static final Logger LOGGER = LoggerFactory.getLogger(ElasticSearchHealthCheck.class);
    private static final ComponentName COMPONENT_NAME = new ComponentName("ElasticSearch Backend");

    private final Set indexNames;
    private final RestHighLevelClient client;

    @Inject
    ElasticSearchHealthCheck(RestHighLevelClient client, Set indexNames) {
        this.client = client;
        this.indexNames = indexNames;
    }

    @Override
    public ComponentName componentName() {
        return COMPONENT_NAME;
    }

    @Override
    public Result check() {
        String[] indices = indexNames.stream()
            .map(IndexName::getValue)
            .toArray(String[]::new);
        ClusterHealthRequest request = Requests.clusterHealthRequest(indices);

        try {
            ClusterHealthResponse response = client.cluster()
                .health(request, RequestOptions.DEFAULT);

            return toHealthCheckResult(response);
        } catch (IOException e) {
            LOGGER.error("Error while contacting cluster", e);
            return Result.unhealthy(COMPONENT_NAME, "Error while contacting cluster. Check James server logs.");
        }
    }

    @VisibleForTesting
    Result toHealthCheckResult(ClusterHealthResponse response) {
        switch (response.getStatus()) {
            case GREEN:
            case YELLOW:
                return Result.healthy(COMPONENT_NAME);
            case RED:
                return Result.unhealthy(COMPONENT_NAME, response.getClusterName() + " status is RED");
            default:
                throw new NotImplementedException("Un-handled ElasticSearch cluster status");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy