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

org.elasticsearch.index.store.memory.ByteBufferDirectory Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
/*
 * Licensed to Elastic Search and Shay Banon under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Elastic Search 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.elasticsearch.index.store.memory;

import org.apache.lucene.store.Directory;
import org.apache.lucene.store.IndexInput;
import org.apache.lucene.store.IndexOutput;
import org.apache.lucene.store.SingleInstanceLockFactory;
import org.elasticsearch.cache.memory.ByteBufferCache;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * A memory based directory that uses {@link java.nio.ByteBuffer} in order to store the directory content.
 *
 * 

The benefit of using {@link java.nio.ByteBuffer} is the fact that it can be stored in "native" memory * outside of the JVM heap, thus not incurring the GC overhead of large in memory index. * *

Each "file" is segmented into one or more byte buffers. * *

Since its good practice to cache byte buffers, it also provide a simple mechanism to define a cache * of byte buffers that are reused when possible. * * @author kimchy (shay.banon) */ public class ByteBufferDirectory extends Directory { final ByteBufferCache byteBufferCache; private final Map files = new ConcurrentHashMap(); /** * Constructs a new byte buffer directory. */ public ByteBufferDirectory(ByteBufferCache byteBufferCache) { this.byteBufferCache = byteBufferCache; setLockFactory(new SingleInstanceLockFactory()); } public int bufferSizeInBytes() { return byteBufferCache.bufferSizeInBytes(); } @Override public String[] listAll() throws IOException { return files.keySet().toArray(new String[0]); } @Override public boolean fileExists(String name) throws IOException { return files.containsKey(name); } @Override public long fileModified(String name) throws IOException { ByteBufferFile file = files.get(name); if (file == null) throw new FileNotFoundException(name); return file.lastModified(); } @Override public void touchFile(String name) throws IOException { ByteBufferFile file = files.get(name); if (file == null) throw new FileNotFoundException(name); long ts2, ts1 = System.currentTimeMillis(); do { try { Thread.sleep(0, 1); } catch (InterruptedException ie) { // In 3.0 we will change this to throw // InterruptedException instead Thread.currentThread().interrupt(); throw new RuntimeException(ie); } ts2 = System.currentTimeMillis(); } while (ts1 == ts2); file.lastModified(ts2); } @Override public void deleteFile(String name) throws IOException { ByteBufferFile file = files.remove(name); if (file == null) throw new FileNotFoundException(name); file.clean(); } @Override public long fileLength(String name) throws IOException { ByteBufferFile file = files.get(name); if (file == null) throw new FileNotFoundException(name); return file.length(); } @Override public IndexOutput createOutput(String name) throws IOException { ByteBufferFile file = new ByteBufferFile(this); ByteBufferFile existing = files.put(name, file); if (existing != null) { existing.clean(); } return new ByteBufferIndexOutput(this, file); } @Override public IndexInput openInput(String name) throws IOException { ByteBufferFile file = files.get(name); if (file == null) throw new FileNotFoundException(name); return new ByteBufferIndexInput(this, file); } @Override public void close() throws IOException { String[] files = listAll(); for (String file : files) { deleteFile(file); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy