Hello,
I have implemented a master / slave configuration for our application and the lucene index.
Currently our config has the master index replicating the index every 1min.
Sometimes when I start the application, I receive a '
Code:
No current marker in source directory
' error. On startup this is fatal and the application needs to be restarted. I have also noticed that this can happen during the application running, but will only log an error and continue on.
My guess is that when the application starts up, if replication is in process, the current marker may be changing and the application can't determine the correct lucene directory.
My question is if there are any settings that can force my application to retry determining the current lucene directory. I know that if we made the replication time longer that there is a better chance of this not occurring but, I'd like to keep the time quite low for now.
Any help on this issue would be appreciated.