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

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

There is a newer version: 9.7.0
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.io.IOException;
import java.lang.invoke.MethodHandles;
import java.nio.file.Path;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.LockFactory;
import org.apache.lucene.store.MMapDirectory;
import org.apache.solr.common.params.SolrParams;
import org.apache.solr.common.util.NamedList;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Directly provide MMapDirectory instead of relying on {@link
 * org.apache.lucene.store.FSDirectory#open}.
 *
 * 

Can set the following parameters: * *

    *
  • unmap -- See {@link MMapDirectory#setUseUnmap(boolean)} *
  • preload -- See {@link MMapDirectory#setPreload(boolean)} *
  • maxChunkSize -- The Max chunk size. See {@link MMapDirectory#MMapDirectory(Path, * LockFactory, long)} *
*/ public class MMapDirectoryFactory extends StandardDirectoryFactory { private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); boolean preload; private long maxChunk; @Override public void init(NamedList args) { super.init(args); SolrParams params = args.toSolrParams(); maxChunk = params.getLong("maxChunkSize", MMapDirectory.DEFAULT_MAX_CHUNK_SIZE); if (maxChunk <= 0) { throw new IllegalArgumentException("maxChunk must be greater than 0"); } if (params.get("unmap") != null) { log.warn( "It is no longer possible to configure unmapping of index files on DirectoryFactory level in solrconfig.xml."); log.warn( "To disable unmapping, pass -Dorg.apache.lucene.store.MMapDirectory.enableUnmapHack=false on Solr's command line."); } preload = params.getBool("preload", false); // default turn-off } @Override protected Directory create(String path, LockFactory lockFactory, DirContext dirContext) throws IOException { MMapDirectory mapDirectory = new MMapDirectory(Path.of(path), lockFactory, maxChunk); mapDirectory.setPreload(preload); return mapDirectory; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy