Deleting or closing an index doesn't clean the memory properly
fixes #3232
This commit is contained in:
parent
b91cb8b779
commit
cbe18608ef
|
@ -28,6 +28,7 @@ import org.apache.lucene.document.Field;
|
||||||
import org.apache.lucene.document.FieldType;
|
import org.apache.lucene.document.FieldType;
|
||||||
import org.apache.lucene.index.IndexableField;
|
import org.apache.lucene.index.IndexableField;
|
||||||
import org.apache.lucene.search.Filter;
|
import org.apache.lucene.search.Filter;
|
||||||
|
import org.apache.lucene.util.CloseableThreadLocal;
|
||||||
import org.elasticsearch.common.Booleans;
|
import org.elasticsearch.common.Booleans;
|
||||||
import org.elasticsearch.common.Nullable;
|
import org.elasticsearch.common.Nullable;
|
||||||
import org.elasticsearch.common.Preconditions;
|
import org.elasticsearch.common.Preconditions;
|
||||||
|
@ -227,7 +228,7 @@ public class DocumentMapper implements ToXContent {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private ThreadLocal<ParseContext> cache = new ThreadLocal<ParseContext>() {
|
private CloseableThreadLocal<ParseContext> cache = new CloseableThreadLocal<ParseContext>() {
|
||||||
@Override
|
@Override
|
||||||
protected ParseContext initialValue() {
|
protected ParseContext initialValue() {
|
||||||
return new ParseContext(index, indexSettings, docMapperParser, DocumentMapper.this, new ContentPath(0));
|
return new ParseContext(index, indexSettings, docMapperParser, DocumentMapper.this, new ContentPath(0));
|
||||||
|
@ -687,7 +688,7 @@ public class DocumentMapper implements ToXContent {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void close() {
|
public void close() {
|
||||||
cache.remove();
|
cache.close();
|
||||||
rootObjectMapper.close();
|
rootObjectMapper.close();
|
||||||
for (RootMapper rootMapper : rootMappersOrdered) {
|
for (RootMapper rootMapper : rootMappersOrdered) {
|
||||||
rootMapper.close();
|
rootMapper.close();
|
||||||
|
|
|
@ -22,6 +22,7 @@ package org.elasticsearch.index.query;
|
||||||
import com.google.common.collect.ImmutableMap;
|
import com.google.common.collect.ImmutableMap;
|
||||||
import org.apache.lucene.search.Filter;
|
import org.apache.lucene.search.Filter;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
|
import org.apache.lucene.util.CloseableThreadLocal;
|
||||||
import org.elasticsearch.ElasticSearchException;
|
import org.elasticsearch.ElasticSearchException;
|
||||||
import org.elasticsearch.common.Nullable;
|
import org.elasticsearch.common.Nullable;
|
||||||
import org.elasticsearch.common.bytes.BytesReference;
|
import org.elasticsearch.common.bytes.BytesReference;
|
||||||
|
@ -61,7 +62,7 @@ public class IndexQueryParserService extends AbstractIndexComponent {
|
||||||
public static final String FILTER_PREFIX = "index.queryparser.filter";
|
public static final String FILTER_PREFIX = "index.queryparser.filter";
|
||||||
}
|
}
|
||||||
|
|
||||||
private ThreadLocal<QueryParseContext> cache = new ThreadLocal<QueryParseContext>() {
|
private CloseableThreadLocal<QueryParseContext> cache = new CloseableThreadLocal<QueryParseContext>() {
|
||||||
@Override
|
@Override
|
||||||
protected QueryParseContext initialValue() {
|
protected QueryParseContext initialValue() {
|
||||||
return new QueryParseContext(index, IndexQueryParserService.this);
|
return new QueryParseContext(index, IndexQueryParserService.this);
|
||||||
|
@ -157,7 +158,7 @@ public class IndexQueryParserService extends AbstractIndexComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void close() {
|
public void close() {
|
||||||
cache.remove();
|
cache.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
public String defaultField() {
|
public String defaultField() {
|
||||||
|
|
|
@ -0,0 +1,139 @@
|
||||||
|
/*
|
||||||
|
* 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.test.integration.indices.leaks;
|
||||||
|
|
||||||
|
import org.elasticsearch.common.inject.Injector;
|
||||||
|
import org.elasticsearch.common.settings.ImmutableSettings;
|
||||||
|
import org.elasticsearch.index.mapper.DocumentMapper;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
|
import org.elasticsearch.index.service.IndexService;
|
||||||
|
import org.elasticsearch.index.shard.service.IndexShard;
|
||||||
|
import org.elasticsearch.indices.IndicesService;
|
||||||
|
import org.elasticsearch.node.Node;
|
||||||
|
import org.elasticsearch.node.internal.InternalNode;
|
||||||
|
import org.elasticsearch.test.integration.AbstractNodesTests;
|
||||||
|
import org.testng.annotations.AfterMethod;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
import java.lang.ref.WeakReference;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static org.hamcrest.Matchers.nullValue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public class IndicesLeaksTests extends AbstractNodesTests {
|
||||||
|
|
||||||
|
|
||||||
|
@AfterMethod
|
||||||
|
public void closeNodes() {
|
||||||
|
closeAllNodes();
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings({"ConstantConditions", "unchecked"})
|
||||||
|
@Test
|
||||||
|
public void testIndexShardLifecycleLeak() throws Exception {
|
||||||
|
Node node = startNode("node1");
|
||||||
|
|
||||||
|
node.client().admin().indices().prepareCreate("test")
|
||||||
|
.setSettings(ImmutableSettings.builder().put("index.number_of_shards", 1).put("index.number_of_replicas", 0))
|
||||||
|
.execute().actionGet();
|
||||||
|
|
||||||
|
node.client().admin().cluster().prepareHealth().setWaitForGreenStatus().execute().actionGet();
|
||||||
|
|
||||||
|
IndicesService indicesService = ((InternalNode) node).injector().getInstance(IndicesService.class);
|
||||||
|
IndexService indexService = indicesService.indexServiceSafe("test");
|
||||||
|
Injector indexInjector = indexService.injector();
|
||||||
|
IndexShard shard = indexService.shardSafe(0);
|
||||||
|
Injector shardInjector = indexService.shardInjector(0);
|
||||||
|
|
||||||
|
performCommonOperations(node);
|
||||||
|
|
||||||
|
List<WeakReference> indexReferences = new ArrayList<WeakReference>();
|
||||||
|
List<WeakReference> shardReferences = new ArrayList<WeakReference>();
|
||||||
|
|
||||||
|
// TODO if we could iterate over the already created classes on the injector, we can just add them here to the list
|
||||||
|
// for now, we simple add some classes that make sense
|
||||||
|
|
||||||
|
// add index references
|
||||||
|
indexReferences.add(new WeakReference(indexService));
|
||||||
|
indexReferences.add(new WeakReference(indexInjector));
|
||||||
|
indexReferences.add(new WeakReference(indexService.mapperService()));
|
||||||
|
for (DocumentMapper documentMapper : indexService.mapperService()) {
|
||||||
|
indexReferences.add(new WeakReference(documentMapper));
|
||||||
|
}
|
||||||
|
indexReferences.add(new WeakReference(indexService.aliasesService()));
|
||||||
|
indexReferences.add(new WeakReference(indexService.analysisService()));
|
||||||
|
indexReferences.add(new WeakReference(indexService.fieldData()));
|
||||||
|
indexReferences.add(new WeakReference(indexService.queryParserService()));
|
||||||
|
|
||||||
|
|
||||||
|
// add shard references
|
||||||
|
shardReferences.add(new WeakReference(shard));
|
||||||
|
shardReferences.add(new WeakReference(shardInjector));
|
||||||
|
|
||||||
|
indexService = null;
|
||||||
|
indexInjector = null;
|
||||||
|
shard = null;
|
||||||
|
shardInjector = null;
|
||||||
|
|
||||||
|
node.client().admin().indices().prepareDelete().execute().actionGet();
|
||||||
|
|
||||||
|
for (int i = 0; i < 100; i++) {
|
||||||
|
System.gc();
|
||||||
|
int indexNotCleared = 0;
|
||||||
|
for (WeakReference indexReference : indexReferences) {
|
||||||
|
if (indexReference.get() != null) {
|
||||||
|
indexNotCleared++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int shardNotCleared = 0;
|
||||||
|
for (WeakReference shardReference : shardReferences) {
|
||||||
|
if (shardReference.get() != null) {
|
||||||
|
shardNotCleared++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logger.info("round {}, indices {}/{}, shards {}/{}", i, indexNotCleared, indexReferences.size(), shardNotCleared, shardReferences.size());
|
||||||
|
if (indexNotCleared == 0 && shardNotCleared == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Thread.sleep(1000000);
|
||||||
|
|
||||||
|
for (WeakReference indexReference : indexReferences) {
|
||||||
|
assertThat("dangling index reference: " + indexReference.get(), indexReference.get(), nullValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
for (WeakReference shardReference : shardReferences) {
|
||||||
|
assertThat("dangling shard reference: " + shardReference.get(), shardReference.get(), nullValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void performCommonOperations(Node node) {
|
||||||
|
node.client().prepareIndex("test", "type", "1").setSource("field1", "value", "field2", 2, "field3", 3.0f).execute().actionGet();
|
||||||
|
node.client().admin().indices().prepareRefresh().execute().actionGet();
|
||||||
|
node.client().prepareSearch("test").setQuery(QueryBuilders.queryString("field1:value")).execute().actionGet();
|
||||||
|
node.client().prepareSearch("test").setQuery(QueryBuilders.termQuery("field1", "value")).execute().actionGet();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue