2013-01-18 12:00:49 +01:00
|
|
|
/*
|
2014-01-06 22:48:02 +01:00
|
|
|
* Licensed to Elasticsearch 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
|
2013-01-18 12:00:49 +01:00
|
|
|
*
|
|
|
|
* 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;
|
2014-02-17 02:23:38 +01:00
|
|
|
import org.apache.lucene.index.IndexReader;
|
2013-01-18 12:00:49 +01:00
|
|
|
import org.apache.lucene.index.SegmentReader;
|
2014-05-21 16:34:37 +02:00
|
|
|
import org.elasticsearch.common.logging.ESLogger;
|
2014-01-12 22:27:19 +01:00
|
|
|
import org.elasticsearch.common.lucene.SegmentReaderUtils;
|
2014-02-17 02:23:38 +01:00
|
|
|
import org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalsIndexFieldData;
|
2013-01-24 11:38:18 +01:00
|
|
|
import org.elasticsearch.index.mapper.FieldMapper;
|
2013-04-07 18:30:24 -07:00
|
|
|
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;
|
2014-04-01 16:18:56 +07:00
|
|
|
import org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCacheListener;
|
2013-01-18 12:00:49 +01:00
|
|
|
|
2014-04-01 16:18:56 +07:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2013-01-18 12:00:49 +01:00
|
|
|
import java.util.concurrent.Callable;
|
|
|
|
|
|
|
|
/**
|
2013-04-07 18:30:24 -07:00
|
|
|
* 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;
|
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
<IFD extends IndexFieldData.WithOrdinals<?>> IFD load(final IndexReader indexReader, final IFD indexFieldData) throws Exception;
|
|
|
|
|
2013-04-07 18:30:24 -07:00
|
|
|
/**
|
|
|
|
* Clears all the field data stored cached in on this index.
|
|
|
|
*/
|
|
|
|
void clear();
|
2013-01-18 12:00:49 +01:00
|
|
|
|
2013-04-07 18:30:24 -07: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
|
|
|
|
2013-10-18 15:41:37 +02:00
|
|
|
void clear(Object coreCacheKey);
|
2013-01-22 15:30:05 +01:00
|
|
|
|
2013-01-24 11:38:18 +01:00
|
|
|
interface Listener {
|
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
void onLoad(FieldMapper.Names fieldNames, FieldDataType fieldDataType, RamUsage ramUsage);
|
2013-01-24 11:38:18 +01:00
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
void onUnload(FieldMapper.Names fieldNames, FieldDataType fieldDataType, boolean wasEvicted, long sizeInBytes);
|
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.
|
|
|
|
*/
|
2014-02-17 02:23:38 +01:00
|
|
|
static abstract class FieldBased implements IndexFieldDataCache, SegmentReader.CoreClosedListener, RemovalListener<FieldBased.Key, RamUsage>, IndexReader.ReaderClosedListener {
|
2013-04-07 18:30:24 -07:00
|
|
|
private final IndexService indexService;
|
2013-01-24 11:38:18 +01:00
|
|
|
private final FieldMapper.Names fieldNames;
|
|
|
|
private final FieldDataType fieldDataType;
|
2014-02-17 02:23:38 +01:00
|
|
|
private final Cache<Key, RamUsage> cache;
|
2014-04-01 16:18:56 +07:00
|
|
|
private final IndicesFieldDataCacheListener indicesFieldDataCacheListener;
|
2014-05-21 16:34:37 +02:00
|
|
|
private final ESLogger logger;
|
2013-01-18 12:00:49 +01:00
|
|
|
|
2014-05-21 16:34:37 +02:00
|
|
|
protected FieldBased(ESLogger logger, IndexService indexService, FieldMapper.Names fieldNames, FieldDataType fieldDataType, CacheBuilder cache, IndicesFieldDataCacheListener indicesFieldDataCacheListener) {
|
2014-04-02 16:28:51 +02:00
|
|
|
assert indexService != null;
|
2014-05-21 16:34:37 +02:00
|
|
|
this.logger = logger;
|
2013-04-07 18:30:24 -07:00
|
|
|
this.indexService = indexService;
|
2013-01-24 11:38:18 +01:00
|
|
|
this.fieldNames = fieldNames;
|
|
|
|
this.fieldDataType = fieldDataType;
|
2014-04-01 16:18:56 +07:00
|
|
|
this.indicesFieldDataCacheListener = indicesFieldDataCacheListener;
|
2013-01-24 11:38:18 +01:00
|
|
|
cache.removalListener(this);
|
2013-11-20 09:31:19 -08:00
|
|
|
//noinspection unchecked
|
2013-01-24 11:38:18 +01:00
|
|
|
this.cache = cache.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-17 02:23:38 +01:00
|
|
|
public void onRemoval(RemovalNotification<Key, RamUsage> notification) {
|
2014-04-02 16:28:51 +02:00
|
|
|
final Key key = notification.getKey();
|
2014-04-01 16:18:56 +07:00
|
|
|
assert key != null && key.listeners != null;
|
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
final RamUsage value = notification.getValue();
|
2013-11-20 09:31:19 -08:00
|
|
|
long sizeInBytes = key.sizeInBytes;
|
2014-04-02 16:28:51 +02:00
|
|
|
assert sizeInBytes >= 0 || value != null : "Expected size [" + sizeInBytes + "] to be positive or value [" + value + "] to be non-null";
|
2013-11-20 09:31:19 -08:00
|
|
|
if (sizeInBytes == -1 && value != null) {
|
|
|
|
sizeInBytes = value.getMemorySizeInBytes();
|
|
|
|
}
|
2014-04-01 16:18:56 +07:00
|
|
|
for (Listener listener : key.listeners) {
|
2014-05-21 16:34:37 +02:00
|
|
|
try {
|
|
|
|
listener.onUnload(fieldNames, fieldDataType, notification.wasEvicted(), sizeInBytes);
|
|
|
|
} catch (Throwable e) {
|
|
|
|
logger.error("Failed to call listener on field data cache unloading", e);
|
|
|
|
}
|
2014-04-01 16:18:56 +07:00
|
|
|
}
|
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 {
|
2013-04-07 18:30:24 -07:00
|
|
|
final Key key = new Key(context.reader().getCoreCacheKey());
|
2013-01-18 12:00:49 +01:00
|
|
|
//noinspection unchecked
|
2013-04-07 18:30:24 -07:00
|
|
|
return (FD) cache.get(key, new Callable<AtomicFieldData>() {
|
2013-01-18 12:00:49 +01:00
|
|
|
@Override
|
|
|
|
public AtomicFieldData call() throws Exception {
|
2014-01-12 22:27:19 +01:00
|
|
|
SegmentReaderUtils.registerCoreListener(context.reader(), FieldBased.this);
|
2014-05-21 16:34:37 +02:00
|
|
|
|
2014-04-01 16:18:56 +07:00
|
|
|
key.listeners.add(indicesFieldDataCacheListener);
|
2014-04-02 16:28:51 +02:00
|
|
|
final ShardId shardId = ShardUtils.extractShardId(context.reader());
|
|
|
|
if (shardId != null) {
|
|
|
|
final IndexShard shard = indexService.shard(shardId.id());
|
|
|
|
if (shard != null) {
|
|
|
|
key.listeners.add(shard.fieldData());
|
2013-04-07 18:30:24 -07:00
|
|
|
}
|
|
|
|
}
|
2014-05-21 16:34:37 +02:00
|
|
|
final AtomicFieldData fieldData = indexFieldData.loadDirect(context);
|
|
|
|
key.sizeInBytes = fieldData.getMemorySizeInBytes();
|
2014-04-01 16:18:56 +07:00
|
|
|
for (Listener listener : key.listeners) {
|
2014-05-21 16:34:37 +02:00
|
|
|
try {
|
|
|
|
listener.onLoad(fieldNames, fieldDataType, fieldData);
|
|
|
|
} catch (Throwable e) {
|
|
|
|
// load anyway since listeners should not throw exceptions
|
|
|
|
logger.error("Failed to call listener on atomic field data loading", e);
|
|
|
|
}
|
2013-04-07 18:30:24 -07:00
|
|
|
}
|
2013-01-24 11:38:18 +01:00
|
|
|
return fieldData;
|
2013-01-18 12:00:49 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
public <IFD extends IndexFieldData.WithOrdinals<?>> IFD load(final IndexReader indexReader, final IFD indexFieldData) throws Exception {
|
|
|
|
final Key key = new Key(indexReader.getCoreCacheKey());
|
|
|
|
//noinspection unchecked
|
|
|
|
return (IFD) cache.get(key, new Callable<RamUsage>() {
|
|
|
|
@Override
|
|
|
|
public GlobalOrdinalsIndexFieldData call() throws Exception {
|
|
|
|
indexReader.addReaderClosedListener(FieldBased.this);
|
2014-05-21 16:34:37 +02:00
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
key.listeners.add(indicesFieldDataCacheListener);
|
|
|
|
final ShardId shardId = ShardUtils.extractShardId(indexReader);
|
|
|
|
if (shardId != null) {
|
|
|
|
IndexShard shard = indexService.shard(shardId.id());
|
|
|
|
if (shard != null) {
|
|
|
|
key.listeners.add(shard.fieldData());
|
|
|
|
}
|
|
|
|
}
|
2014-05-21 16:34:37 +02:00
|
|
|
GlobalOrdinalsIndexFieldData ifd = (GlobalOrdinalsIndexFieldData) indexFieldData.localGlobalDirect(indexReader);
|
|
|
|
key.sizeInBytes = ifd.getMemorySizeInBytes();
|
2014-02-17 02:23:38 +01:00
|
|
|
for (Listener listener : key.listeners) {
|
2014-05-21 16:34:37 +02:00
|
|
|
try {
|
|
|
|
listener.onLoad(fieldNames, fieldDataType, ifd);
|
|
|
|
} catch (Throwable e) {
|
|
|
|
// load anyway since listeners should not throw exceptions
|
|
|
|
logger.error("Failed to call listener on global ordinals loading", e);
|
|
|
|
}
|
2014-02-17 02:23:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ifd;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-01-18 12:00:49 +01:00
|
|
|
@Override
|
2013-04-07 18:30:24 -07:00
|
|
|
public void clear() {
|
2013-01-18 12:00:49 +01:00
|
|
|
cache.invalidateAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-04-07 18:30:24 -07:00
|
|
|
public void clear(String fieldName) {
|
2013-01-18 12:00:49 +01:00
|
|
|
cache.invalidateAll();
|
|
|
|
}
|
2013-01-22 15:30:05 +01:00
|
|
|
|
|
|
|
@Override
|
2013-10-18 15:41:37 +02:00
|
|
|
public void clear(Object coreCacheKey) {
|
|
|
|
cache.invalidate(new Key(coreCacheKey));
|
2013-04-07 18:30:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-10-18 15:41:37 +02:00
|
|
|
public void onClose(Object coreCacheKey) {
|
|
|
|
cache.invalidate(new Key(coreCacheKey));
|
2013-04-07 18:30:24 -07:00
|
|
|
}
|
|
|
|
|
2014-02-17 02:23:38 +01:00
|
|
|
@Override
|
|
|
|
public void onClose(IndexReader reader) {
|
|
|
|
cache.invalidate(reader.getCoreCacheKey());
|
|
|
|
}
|
|
|
|
|
2013-04-07 18:30:24 -07:00
|
|
|
static class Key {
|
|
|
|
final Object readerKey;
|
2014-04-02 12:14:35 +07:00
|
|
|
final List<Listener> listeners = new ArrayList<>();
|
2013-04-07 18:30:24 -07:00
|
|
|
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-22 15:30:05 +01:00
|
|
|
}
|
2013-01-18 12:00:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static class Resident extends FieldBased {
|
|
|
|
|
2014-05-21 16:34:37 +02:00
|
|
|
public Resident(ESLogger logger, IndexService indexService, FieldMapper.Names fieldNames, FieldDataType fieldDataType, IndicesFieldDataCacheListener indicesFieldDataCacheListener) {
|
|
|
|
super(logger, indexService, fieldNames, fieldDataType, CacheBuilder.newBuilder(), indicesFieldDataCacheListener);
|
2013-01-18 12:00:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static class Soft extends FieldBased {
|
|
|
|
|
2014-05-21 16:34:37 +02:00
|
|
|
public Soft(ESLogger logger, IndexService indexService, FieldMapper.Names fieldNames, FieldDataType fieldDataType, IndicesFieldDataCacheListener indicesFieldDataCacheListener) {
|
|
|
|
super(logger, indexService, fieldNames, fieldDataType, CacheBuilder.newBuilder().softValues(), indicesFieldDataCacheListener);
|
2013-01-18 12:00:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|