Hi,Otis Thank you for your suggestion! I'm considering the "a single index" solution. Best Regards! Monton ----- Original Message ----- From: "Otis Gospodnetic" <otis.gospodne...@gmail.com> To: <solr-user@lucene.apache.org> Sent: Wednesday, September 26, 2012 10:26 AM Subject: Re: How can I create about 100000 independent indexes in Solr?
Hi, Have a look at ElasticSearch. While it's probably no better at handling 100K cores than Solr it, ES has document and query routing functionality that can help you route documents and queries to specific shards, thus avoiding needing to query all 100K users' data. I think Solr doesn't have this feature yet, but I'm sure it will in the future. Otis -- Search Analytics - http://sematext.com/search-analytics/index.html Performance Monitoring - http://sematext.com/spm/index.html On Tue, Sep 25, 2012 at 10:20 PM, 韦震宇 <weizhe...@win-trust.com> wrote: > Hi,Tom > I'm prefer performance, so if the performance of "single index" solution > is better than "mutilcore" solution, I would choice the former. > Best Regards! > ----- Original Message ----- > From: "Tom Mortimer" <tom.m.f...@gmail.com> > To: <solr-user@lucene.apache.org> > Sent: Tuesday, September 25, 2012 6:06 PM > Subject: Re: How can I create about 100000 independent indexes in Solr? > > > Hi, > > Why do you think that the indexes should be independent? What would be the > problem with using a single index and filter queries? > > Tom > > On 25 Sep 2012, at 03:21, 韦震宇 <weizhe...@win-trust.com> wrote: > >> Dear all, >> The company I'm working in have a website to server more than 100000 >> customers, and every customer should have it's own search cataegory. So I >> should create independent index for every customer. >> The site http://wiki.apache.org/solr/MultipleIndexes give some solution >> to create multiple indexes. >> I want to use multicore solution. But i'm afraid that Solr can't support >> so many indexes in this solution. >> The other solution "Flattening data into a single index" is a choice, but >> i think it's best to keep all indexes indepent. >> Could you tell me how to create about 100000 independent indexes in Solr? >> Thank you all for reply!