disable column cache by default

This commit is contained in:
Xavier Léauté 2014-08-11 18:10:33 -07:00
parent 69f4c2677f
commit a1bcff49c5
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ public abstract class DruidProcessingConfig extends ExecutorServiceConfig implem
@Config(value = "${base_path}.columnCache.sizeBytes")
public int columnCacheSizeBytes()
{
return 1024 * 1024;
return 0;
}
}