diff options
| author | Michael Peter Christen <mc@yacy.net> | 2013-01-16 14:35:37 +0100 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2013-01-16 14:35:37 +0100 |
| commit | f53703df62296b4da8fc9c6c1616b696d3c3e28c (patch) | |
| tree | a25f24a870a18b7287d1b2b043315656bb1708e3 /defaults/solr | |
| parent | db49e917247742cfed139b93d2efe8b70620c31d (diff) | |
using MMapDirectoryFactory as solution for ClosedChannelException given
in https://issues.apache.org/jira/browse/SOLR-2247
Diffstat (limited to 'defaults/solr')
| -rwxr-xr-x | defaults/solr/solrconfig.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/defaults/solr/solrconfig.xml b/defaults/solr/solrconfig.xml index 09a01e4aa..cad12cb72 100755 --- a/defaults/solr/solrconfig.xml +++ b/defaults/solr/solrconfig.xml @@ -118,8 +118,9 @@ solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. --> - <directoryFactory name="DirectoryFactory" - class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}"/> + <!-- <directoryFactory name="DirectoryFactory" class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}"/> --> + <directoryFactory name="DirectoryFactory" class="${solr.directoryFactory:solr.MMapDirectoryFactory}"/> + <!-- using MMapDirectoryFactory as solution for ClosedChannelException given in https://issues.apache.org/jira/browse/SOLR-2247 --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Index Config - These settings control low-level behavior of indexing |
