Re: near realtime search and dih

2012-08-09 Thread giovanni.bricc...@banzai.it
Thank you, this is very interesting, I will try with solr cloud + autosoftcommit. Il 09/08/12 14:45, Tomás Fernández Löbbe ha scritto: Master-Slave architectures don't get along very well with NRT. One minute may be achieved if your index is small and you don't have many updates per minute, bu

Re: near realtime search and dih

2012-08-09 Thread Tomás Fernández Löbbe
Master-Slave architectures don't get along very well with NRT. One minute may be achieved if your index is small and you don't have many updates per minute, but in other case, I would go with Solr Cloud and distributed indexing (you can run DIH in one of the nodes and every document will be indexed

Re: near realtime search and dih

2012-08-09 Thread Mark Miller
Not sure what options DiH has in terms of controlling params - but at the least you could add an update proc that added a commitWithin param. commitWithin is a soft commit on Solr 4. You could also use autoSoftCommit and set it to n seconds. Sent from my iPhone On Aug 9, 2012, at 6:02 AM, "g

near realtime search and dih

2012-08-09 Thread giovanni.bricc...@banzai.it
I would like to understand if near realtime search is applicable to my configuration, or if I should change the way I load data. Currently my application uses data import handler to load new documents every 15 minutes. This is acceptable, but it would be interesting to bring online some chan