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

org.apache.solr.core.CoresLocator Maven / Gradle / Ivy

There is a newer version: 9.6.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.solr.core;

import java.util.List;

/** Manage the discovery and persistence of core definitions across Solr restarts */
public interface CoresLocator {

  /**
   * Make new cores available for discovery
   *
   * @param cc the CoreContainer
   * @param coreDescriptors CoreDescriptors to persist
   */
  void create(CoreContainer cc, CoreDescriptor... coreDescriptors);

  /**
   * Ensure that the core definitions from the passed in CoreDescriptors will persist across
   * container restarts.
   *
   * @param cc the CoreContainer
   * @param coreDescriptors CoreDescriptors to persist
   */
  void persist(CoreContainer cc, CoreDescriptor... coreDescriptors);

  /**
   * Ensure that the core definitions from the passed in CoreDescriptors are not available for
   * discovery
   *
   * @param cc the CoreContainer
   * @param coreDescriptors CoreDescriptors of the cores to remove
   */
  void delete(CoreContainer cc, CoreDescriptor... coreDescriptors);

  /**
   * Persist the new name of a renamed core
   *
   * @param cc the CoreContainer
   * @param oldCD the CoreDescriptor of the core before renaming
   * @param newCD the CoreDescriptor of the core after renaming
   */
  void rename(CoreContainer cc, CoreDescriptor oldCD, CoreDescriptor newCD);

  /**
   * Swap two core definitions
   *
   * @param cc the CoreContainer
   * @param cd1 the core descriptor of the first core, after swapping
   * @param cd2 the core descriptor of the second core, after swapping
   */
  void swap(CoreContainer cc, CoreDescriptor cd1, CoreDescriptor cd2);

  /**
   * Load all the CoreDescriptors from persistence store
   *
   * @param cc the CoreContainer
   * @return a list of all CoreDescriptors found
   */
  List discover(CoreContainer cc);

  /**
   * Reload a core descriptor.
   *
   * @param cd the old core descriptor
   * @param cc the CoreContainer
   * @return a new core descriptor
   */
  CoreDescriptor reload(CoreDescriptor cd, CoreContainer cc);

  /**
   * Returns a new instance of {@link CoresLocator}, depending on provided config.
   *
   * @param nodeConfig Solr configuration.
   */
  static CoresLocator instantiate(NodeConfig nodeConfig) {
    final String coresLocatorClass = nodeConfig.getCoresLocatorClass();
    return nodeConfig
        .getSolrResourceLoader()
        .newInstance(
            coresLocatorClass,
            CoresLocator.class,
            null,
            new Class[] {NodeConfig.class},
            new Object[] {nodeConfig});
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy