blob: cf768eaeb066d264143701252f516d423b858955 [file] [log] [blame]
/*
* 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.jackrabbit.oak.benchmark.util;
import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticConnection;
import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticIndexNameHelper;
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
import org.elasticsearch.action.support.master.AcknowledgedResponse;
import org.elasticsearch.client.GetAliasesResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.cluster.metadata.AliasMetadata;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.Map;
import java.util.Set;
public class TestHelper {
private static final Logger LOG = LoggerFactory.getLogger(TestHelper.class);
/**
* Generates a unique index name from the given suggestion.
* @param name name suggestion
* @return unique index name
*/
public static String getUniqueIndexName(String name) {
return name + System.currentTimeMillis();
}
/*
Deletes the remote elastic index from the elastic server.
*/
public static void cleanupRemoteElastic(ElasticConnection connection, String indexName) throws IOException {
String alias = ElasticIndexNameHelper.getIndexAlias(connection.getIndexPrefix(), "/oak:index/" + indexName);
// get and delete the indexes which this alias is pointing to
GetAliasesRequest getAliasesRequest = new GetAliasesRequest(alias);
GetAliasesResponse aliasesResponse = connection.getClient().indices().getAlias(getAliasesRequest, RequestOptions.DEFAULT);
Map<String, Set<AliasMetadata>> aliases = aliasesResponse.getAliases();
for (String remoteIndexName : aliases.keySet()) {
AcknowledgedResponse deleteIndexResponse = connection.getClient().indices().
delete(new DeleteIndexRequest(remoteIndexName), RequestOptions.DEFAULT);
if (!deleteIndexResponse.isAcknowledged()) {
LOG.warn("Delete index call not acknowledged for index " + remoteIndexName + " .Please check if remote index deleted or not.");
}
}
}
}