RE: What is proper way to re-init index?

2006-03-24 Thread Chris Hostetter
: After some fiddling around the base problem is that it takes my new schema, : implies that the update went fine, but it didn't. Of no great surprise, the : problem is that the schema for some reason doesn't match my data. It doesn't : write out any data. Reconfiging with the example (old) data (

RE: What is proper way to re-init index?

2006-03-24 Thread John Mohr
After some fiddling around the base problem is that it takes my new schema, implies that the update went fine, but it didn't. Of no great surprise, the problem is that the schema for some reason doesn't match my data. It doesn't write out any data. Reconfiging with the example (old) data (and old s

RE: Multiple updates possible?

2006-03-24 Thread Chris Hostetter
: In this case we are looking at having multiple tomcats to provide us : with load balancing and failover. We are not looking at a master/slave : index solution. We'll also be working on windows. I'm not very faimilar with windows, but if your goal is to have load balanced servers for failover,

Re: What is proper way to re-init index?

2006-03-24 Thread Chris Hostetter
: index to be more of what I'd like to see, generated my own xml files to : index, blew away the old index/directories, restarted with the new schema : file and it only creates the index and segment directories but not the : complete index. Luke tells me I have a corrupted index. What is the proper

Re: What is proper way to re-init index?

2006-03-24 Thread Bill Au
If you don't care about saving any data, you can just remove the index directory. Solr will create a new one if it does not already exist. You will need to repopulate your data. Bill On 3/24/06, John Mohr <[EMAIL PROTECTED]> wrote: > > I've been working with Solr for just a few days. Initially I

What is proper way to re-init index?

2006-03-24 Thread John Mohr
I've been working with Solr for just a few days. Initially I ran the exampldocs and things worked fine. I've now redefined the layout of the index to be more of what I'd like to see, generated my own xml files to index, blew away the old index/directories, restarted with the new schema file and it

Re: To cluster, or not to cluster...

2006-03-24 Thread jason rutherglen
No because the data would be on the slave servers which would continue to server data. You could easily have mirrored master machines if you were worried about losing updates. Updates of a specific division or stripe would occur to both mirrored servers or not at all. Or fancier configuration

RE: To cluster, or not to cluster...

2006-03-24 Thread Robert Haycock
Hi Jason, Would that not mean if one of the master indexes went down then a subset of data would be offline? Rob. -Original Message- From: jason rutherglen [mailto:[EMAIL PROTECTED] Sent: 24 March 2006 18:32 To: solr-user@lucene.apache.org Subject: Re: To cluster, or not to cluster...

Re: To cluster, or not to cluster...

2006-03-24 Thread jason rutherglen
It should be possible to do clustering if you divide your master index over multiple master servers. Then write a wrapper around the SolrClient API using something like MultiSearcher. From what I know this would work, could be wrong. - Original Message From: Clay Webster <[EMAIL PROTE

RE: Multiple updates possible?

2006-03-24 Thread Robert Haycock
In this case we are looking at having multiple tomcats to provide us with load balancing and failover. We are not looking at a master/slave index solution. We'll also be working on windows. Rob. -Original Message- From: Chris Hostetter [mailto:[EMAIL PROTECTED] Sent: 24 March 2006 18:2

Re: Multiple updates possible?

2006-03-24 Thread Chris Hostetter
: We're looking at having multiple instances of Solr looking at a single : lucene index. Would there be a problem if all instances updated the : index at the same time? I'm 99% sure it won't be possible to have multiple server instances using the same index directory and making modifications --

Multiple updates possible?

2006-03-24 Thread Robert Haycock
Hello again, We're looking at having multiple instances of Solr looking at a single lucene index. Would there be a problem if all instances updated the index at the same time? Rob.

RE: To cluster, or not to cluster...

2006-03-24 Thread Robert Haycock
That's great, cheers. Rob. -Original Message- From: Clay Webster [mailto:[EMAIL PROTECTED] Sent: 24 March 2006 16:55 To: solr-user@lucene.apache.org Subject: Re: To cluster, or not to cluster... On 3/24/06, Robert Haycock <[EMAIL PROTECTED]> wrote: > > Is it/will it be possible to clust

Re: To cluster, or not to cluster...

2006-03-24 Thread Clay Webster
On 3/24/06, Robert Haycock <[EMAIL PROTECTED]> wrote: > > Is it/will it be possible to cluster solr? > > We have a distributed system and it would be nice if we could replicate > the index to improve performance. > > Solr does not have replication. But it does have a very nice index distribution s

To cluster, or not to cluster...

2006-03-24 Thread Robert Haycock
Hi, Is it/will it be possible to cluster solr? We have a distributed system and it would be nice if we could replicate the index to improve performance. Rob.