Re: Automated Index Creation

2008-07-09 Thread Norberto Meijome
On Wed, 9 Jul 2008 08:48:35 +0530 Shalin Shekhar Mangar [EMAIL PROTECTED] wrote: Yes, SOLR-350 added that capability. Look at http://wiki.apache.org/solr/MultiCore for details. ahh loving SOLR more every day :P thx _ {Beto|Norberto|Numard} Meijome I used to hate

Automated Index Creation

2008-07-08 Thread Willie Wong
Hi, Sorry if this question sounds daft but I was wondering if there was anything built into Solr that allows you to automate the creation of new indexes once they reach a certain size or point in time. I looked briefly at the documentation on CollectionDestribution, but it seems more

Re: Automated Index Creation

2008-07-08 Thread Ryan McKinley
nothing to automatically create a new index, but check the multicore stuff to see how you could implement this: http://wiki.apache.org/solr/MultiCore On Jul 8, 2008, at 10:25 AM, Willie Wong wrote: Hi, Sorry if this question sounds daft but I was wondering if there was anything built

Re: Automated Index Creation

2008-07-08 Thread Shalin Shekhar Mangar
Hi Willie, If you want to have backups (point-in-time snapshots) then you'd need something similar to the snapshooter script used in replication. I believe it creates hard links to files of the current index in a new directory marked with the timestamp. You can either use snapshooter itself or

Re: Automated Index Creation

2008-07-08 Thread Ryan McKinley
re-reading your post... Shalin is correct, just use the snapshooter script to create a point- in-time snapshot of the index. The multicore stuff will not help with this. ryan On Jul 8, 2008, at 11:09 AM, Shalin Shekhar Mangar wrote: Hi Willie, If you want to have backups (point-in-time

Re: Automated Index Creation

2008-07-08 Thread Ryan McKinley
@lucene.apache.org To solr-user@lucene.apache.org cc Subject Re: Automated Index Creation re-reading your post... Shalin is correct, just use the snapshooter script to create a point- in-time snapshot of the index. The multicore stuff will not help with this. ryan On Jul 8, 2008, at 11:09 AM

Re: Automated Index Creation

2008-07-08 Thread Norberto Meijome
On Tue, 8 Jul 2008 12:05:45 -0400 Willie Wong [EMAIL PROTECTED] wrote: I think the snapshooter will work fine for creating the indexes and then I can use the multicore capabilities to make them available to users one final question though, after snapshot has been created is there a way

Re: Automated Index Creation

2008-07-08 Thread Shalin Shekhar Mangar
Yes, SOLR-350 added that capability. Look at http://wiki.apache.org/solr/MultiCore for details. On Wed, Jul 9, 2008 at 6:26 AM, Norberto Meijome [EMAIL PROTECTED] wrote: On Tue, 8 Jul 2008 12:05:45 -0400 Willie Wong [EMAIL PROTECTED] wrote: I think the snapshooter will work fine for