Re: Solr support for multi-tenant applications

2015-01-07 Thread Jack Krupansky
Indeed, it is all about the numbers. So, Danesh, what are your numbers - number of tenants and number of documents per tenant. What is the expected distribution curve of documents per tenant? The only "limit" I would suggest is that you not have more than "low hundreds" of cores/tenants. Will ten

Re: Solr support for multi-tenant applications

2015-01-07 Thread Bram Van Dam
One possibility is to have separate core for each tenant domain. You could do that, and it's probably the way to go if you have a lot of data. However, if you don't have much data, you can achieve multi-tenancy by adding a filter to all your queries, for instance: query = userQuery filterQ

Solr support for multi-tenant applications

2015-01-07 Thread Danesh Kuruppu
Hi all, I need to use solr for multi-tenant application. What is the best way I could achieve multi tenancy with solr? One possibility is to have separate core for each tenant domain. 1. Is it recommended to do it? 2. Are there any issues with have a large number of Solr Cores? Please sug