Has anyone done any work on this?
https://issues.apache.org/jira/browse/SOLR-433
Thanks.
Doug
Ryan McKinley wrote:
OG: Yes, I think that makes sense - distribute everything for a given
core, not just its index. And the spellchecker could then also have
its data dir (and only index/ underneath really) and be replicated in
the same fashion.
Right?
Yes, that was my thought. If an arbitrary directory could be
distributed, then you could have
/path/to/dist/index/...
/path/to/dist/spelling-index/...
/path/to/dist/foo
and that would all get put into a snapshot. This would also let you put
multiple cores within a single distribution:
/path/to/dist/core0/index/...
/path/to/dist/core0/spelling-index/...
/path/to/dist/core0/foo
/path/to/dist/core1/index/...
/path/to/dist/core1/spelling-index/...
/path/to/dist/core1/foo
ryan