/* * 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.solr.cloud; import java.lang.invoke.MethodHandles; import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; import org.apache.solr.common.SolrException; import org.apache.solr.common.cloud.Aliases; import org.apache.solr.common.cloud.ClusterState; import org.apache.solr.common.cloud.ZkNodeProps; import org.apache.solr.common.cloud.ZkStateReader; import org.apache.solr.common.util.NamedList; import org.apache.solr.common.util.Utils; import org.apache.solr.util.TimeOut; import org.apache.zookeeper.KeeperException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import static org.apache.solr.common.params.CommonParams.NAME; public class DeleteAliasCmd implements OverseerCollectionMessageHandler.Cmd { private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); private final OverseerCollectionMessageHandler ocmh; public DeleteAliasCmd(OverseerCollectionMessageHandler ocmh) { this.ocmh = ocmh; } @Override public void call(ClusterState state, ZkNodeProps message, NamedList results) throws Exception { String aliasName = message.getStr(NAME); Map<String,Map<String,String>> newAliasesMap = new HashMap<>(); Map<String,String> newCollectionAliasesMap = new HashMap<>(); ZkStateReader zkStateReader = ocmh.zkStateReader; newCollectionAliasesMap.putAll(zkStateReader.getAliases().getCollectionAliasMap()); newCollectionAliasesMap.remove(aliasName); newAliasesMap.put("collection", newCollectionAliasesMap); Aliases newAliases = new Aliases(newAliasesMap); byte[] jsonBytes = null; if (newAliases.collectionAliasSize() > 0) { // only sub map right now jsonBytes = Utils.toJSON(newAliases.getAliasMap()); } try { zkStateReader.getZkClient().setData(ZkStateReader.ALIASES, jsonBytes, true); checkForAliasAbsence(aliasName); // some fudge for other nodes Thread.sleep(100); } catch (KeeperException e) { log.error("", e); throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, e); } catch (InterruptedException e) { log.warn("", e); throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, e); } } private void checkForAliasAbsence(String name) { TimeOut timeout = new TimeOut(30, TimeUnit.SECONDS); boolean success = false; Aliases aliases = null; while (! timeout.hasTimedOut()) { aliases = ocmh.zkStateReader.getAliases(); String collections = aliases.getCollectionAlias(name); if (collections == null) { success = true; break; } } if (!success) { log.warn("Timeout waiting to be notified of Alias change..."); } } }