(from github.com/remoblaser)
Hey there!
I’d like to use fess as a crawler for elasticsearch, thus crawling multiple domains. Is there a possibility to tell a Web Crawler in which ES index the data should be saved? e.g. Web crawler for google.com saves Data in index “google” instead of fess.
(from github.com/marevol)
Index locations in fess_config.properties are as below:
index.document.search.index=fess.search
index.document.update.index=fess.update
index.document.suggest.index=fess
index.document.crawler.index=.crawler
index.config.index=.fess_config
index.user.index=.fess_user
index.log.index=fess_log
(from github.com/remoblaser)
But i guess i cannot define a seperate index per web crawler?
(from github.com/marevol)
It’s to better to launch multiple Fess instances.
If you want to start standalone Fess Crawler, read CrawlJob.
(from github.com/remoblaser)
Aight, thank you marevol!