checn the default byte buffer cache to 200mb, now that its global per node

This commit is contained in:
kimchy 2010-07-06 17:58:30 +03:00
parent 070cb5b295
commit 2908418d37
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class ByteBufferCache extends AbstractComponent {
super(settings);
this.bufferSizeInBytes = (int) componentSettings.getAsBytesSize("buffer_size", new ByteSizeValue(100, ByteSizeUnit.KB)).bytes();
long cacheSizeInBytes = componentSettings.getAsBytesSize("cache_size", new ByteSizeValue(20, ByteSizeUnit.MB)).bytes();
long cacheSizeInBytes = componentSettings.getAsBytesSize("cache_size", new ByteSizeValue(200, ByteSizeUnit.MB)).bytes();
this.direct = componentSettings.getAsBoolean("direct", true);
boolean warmCache = componentSettings.getAsBoolean("warm_cache", false);