Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.0.1
Hello everyone,
I am interested if someone have tried to use hibernate search in a cluster with the Lucene back end. How should hibernate search be configured in this case (must e.g. NativeFSLockFactory be used)?
The documentation of hibernate search, section Architecture Lucene says, quote:
Quote:
"In this mode, all index update operations applied on a given node (JVM) will be executed to the Lucene directories
(through the directory providers) by the same node. This mode is typically used in non-clustered environment
or in clustered environments where the directory store is shared."
I am asking this, because in clustered environments where the directory store is shared, Lucene does not support parallel index modification from different processes(
see the Lucene FAQ here ). I suppose the author has meant the master - slave approach with a single hibernate search master node and many hibernate search slave nodes, as the one and only configuration. I personally find this a limitation, since not all
cluster configurations (in case of ActiveMQ) are supported.
Hibernate search would scale very easy if the Solr back end was supported. Are there any plans to support this back end? (In my opinion the out-of-the-box clustering is a strong argument for its support)
Thank you in advance.