Re: Is there any particular reason why ExternalFileField is read from data directory

2017-07-04 Thread apoorvqwerty
Thanks a lot, for now I've written a listener to read from redis instead. But might not scale well since the map is kept in memory. -- View this message in context: http://lucene.472066.n3.nabble.com/Is-there-any-particular-reason-why-ExternalFileField-is-read-from-data-directory-tp4343374p4344

Re: Is there any particular reason why ExternalFileField is read from data directory

2017-06-29 Thread Koji Sekiguchi
Hi, ExternalFileField was introduced via SOLR-351. https://issues.apache.org/jira/browse/SOLR-351 The author thought values could optionally be updated often... I think it describes why it is read from not config, but datadir. Koji On 2017/06/29 17:17, apoorvqwerty wrote: Hi, As per the doc

Re: Is there any particular reason why ExternalFileField is read from data directory

2017-06-29 Thread Erick Erickson
Should be OK if you put it in your conf directory of your configset. Do note that each and every time you start Solr, each and every replica will download it. So if it's a large file you'll have problems. The default limit for jute.maxbuffer is 1M so you'd also have to bump that up. Frankly, thoug