OpenSearch/src/main/java/org/elasticsearch/index/fielddata/IndexFieldDataCache.java

185 lines
6.9 KiB
Java
Raw Normal View History

2013-01-18 12:00:49 +01:00
/*
* Licensed to ElasticSearch and Shay Banon under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. ElasticSearch 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.fielddata;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
2013-01-24 11:38:18 +01:00
import com.google.common.cache.RemovalListener;
import com.google.common.cache.RemovalNotification;
2013-01-18 12:00:49 +01:00
import org.apache.lucene.index.AtomicReaderContext;
import org.apache.lucene.index.IndexReader;
2013-01-18 12:00:49 +01:00
import org.apache.lucene.index.SegmentReader;
import org.elasticsearch.common.Nullable;
2013-01-24 11:38:18 +01:00
import org.elasticsearch.index.mapper.FieldMapper;
import org.elasticsearch.index.service.IndexService;
import org.elasticsearch.index.shard.ShardId;
import org.elasticsearch.index.shard.ShardUtils;
import org.elasticsearch.index.shard.service.IndexShard;
2013-01-18 12:00:49 +01:00
import java.util.concurrent.Callable;
/**
* A simple field data cache abstraction on the *index* level.
2013-01-18 12:00:49 +01:00
*/
public interface IndexFieldDataCache {
<FD extends AtomicFieldData, IFD extends IndexFieldData<FD>> FD load(AtomicReaderContext context, IFD indexFieldData) throws Exception;
/**
* Clears all the field data stored cached in on this index.
*/
void clear();
2013-01-18 12:00:49 +01:00
/**
* Clears all the field data stored cached in on this index for the specified field name.
*/
void clear(String fieldName);
2013-01-18 12:00:49 +01:00
void clear(IndexReader reader);
2013-01-24 11:38:18 +01:00
interface Listener {
void onLoad(FieldMapper.Names fieldNames, FieldDataType fieldDataType, AtomicFieldData fieldData);
2013-01-24 11:38:18 +01:00
void onUnload(FieldMapper.Names fieldNames, FieldDataType fieldDataType, boolean wasEvicted, long sizeInBytes, @Nullable AtomicFieldData fieldData);
2013-01-24 11:38:18 +01:00
}
2013-01-18 12:00:49 +01:00
/**
* The resident field data cache is a *per field* cache that keeps all the values in memory.
*/
static abstract class FieldBased implements IndexFieldDataCache, SegmentReader.CoreClosedListener, RemovalListener<FieldBased.Key, AtomicFieldData> {
@Nullable
private final IndexService indexService;
2013-01-24 11:38:18 +01:00
private final FieldMapper.Names fieldNames;
private final FieldDataType fieldDataType;
private final Cache<Key, AtomicFieldData> cache;
2013-01-18 12:00:49 +01:00
protected FieldBased(@Nullable IndexService indexService, FieldMapper.Names fieldNames, FieldDataType fieldDataType, CacheBuilder cache) {
this.indexService = indexService;
2013-01-24 11:38:18 +01:00
this.fieldNames = fieldNames;
this.fieldDataType = fieldDataType;
cache.removalListener(this);
this.cache = cache.build();
}
@Override
public void onRemoval(RemovalNotification<Key, AtomicFieldData> notification) {
if (notification.getKey() != null) {
long sizeInBytes = notification.getKey().sizeInBytes;
if (sizeInBytes == -1 && notification.getValue() != null) {
sizeInBytes = notification.getValue().getMemorySizeInBytes();
}
notification.getKey().listener.onUnload(fieldNames, fieldDataType, notification.wasEvicted(), sizeInBytes, notification.getValue());
}
2013-01-18 12:00:49 +01:00
}
@Override
public <FD extends AtomicFieldData, IFD extends IndexFieldData<FD>> FD load(final AtomicReaderContext context, final IFD indexFieldData) throws Exception {
final Key key = new Key(context.reader().getCoreCacheKey());
2013-01-18 12:00:49 +01:00
//noinspection unchecked
return (FD) cache.get(key, new Callable<AtomicFieldData>() {
2013-01-18 12:00:49 +01:00
@Override
public AtomicFieldData call() throws Exception {
if (context.reader() instanceof SegmentReader) {
((SegmentReader) context.reader()).addCoreClosedListener(FieldBased.this);
}
2013-01-24 11:38:18 +01:00
AtomicFieldData fieldData = indexFieldData.loadDirect(context);
key.sizeInBytes = fieldData.getMemorySizeInBytes();
if (indexService != null) {
ShardId shardId = ShardUtils.extractShardId(context.reader());
if (shardId != null) {
IndexShard shard = indexService.shard(shardId.id());
if (shard != null) {
key.listener = shard.fieldData();
}
}
}
if (key.listener != null) {
key.listener.onLoad(fieldNames, fieldDataType, fieldData);
}
2013-01-24 11:38:18 +01:00
return fieldData;
2013-01-18 12:00:49 +01:00
}
});
}
@Override
public void clear() {
2013-01-18 12:00:49 +01:00
cache.invalidateAll();
}
@Override
public void clear(String fieldName) {
2013-01-18 12:00:49 +01:00
cache.invalidateAll();
}
@Override
public void clear(IndexReader reader) {
cache.invalidate(new Key(reader.getCoreCacheKey()));
}
@Override
public void onClose(SegmentReader owner) {
cache.invalidate(new Key(owner.getCoreCacheKey()));
}
static class Key {
final Object readerKey;
@Nullable
Listener listener; // optional stats listener
long sizeInBytes = -1; // optional size in bytes (we keep it here in case the values are soft references)
Key(Object readerKey) {
this.readerKey = readerKey;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
Key key = (Key) o;
if (!readerKey.equals(key.readerKey)) return false;
return true;
}
@Override
public int hashCode() {
return readerKey.hashCode();
}
}
2013-01-18 12:00:49 +01:00
}
static class Resident extends FieldBased {
public Resident(@Nullable IndexService indexService, FieldMapper.Names fieldNames, FieldDataType fieldDataType) {
super(indexService, fieldNames, fieldDataType, CacheBuilder.newBuilder());
2013-01-18 12:00:49 +01:00
}
}
static class Soft extends FieldBased {
public Soft(@Nullable IndexService indexService, FieldMapper.Names fieldNames, FieldDataType fieldDataType) {
super(indexService, fieldNames, fieldDataType, CacheBuilder.newBuilder().softValues());
2013-01-18 12:00:49 +01:00
}
}
}