| How do you handle the index synchronization between your two nodes? Moving to a clustered architecture is not just a matter of sharing the index, you also have to take care to synchronize writes to the index so that two simultaneous writes would not corrupt the index. There is a variety of ways to achieve this, described in the official documentation: https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#_backend Please give us more information:
- describe in more details which method you chose
- tell us how exactly you are sharing the index between nodes (shared drive mounted over each node? periodic synchronization?)
- give us the detailed Hibernate Search configuration (the "hibernate.search.*" configuration properties)
|