Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to have a single instance of Solr, protected by some sort of authentication, that operated against different indexes based on the credentials used for that authentication. The type of authentication is flexible, although I'd prefer to work with open standards (existing or emerging), if possible.

The core problem I'm attempting to solve is that different users of the application (potentially) have access to different data stored in it, and a user should not be able to search over inaccessible data. Building an index for each user seems the easiest way to guarantee that one user doesn't see forbidden data. Is there, perhaps, an easier way? One that would obviate the need for Solr to have a way to map users to indexes?

Thanks.

share|improve this question

1 Answer

up vote 8 down vote accepted

The Solr guys have a pretty exhaustive overview of what is possible, see http://wiki.apache.org/solr/MultipleIndexes

share|improve this answer
That was a real help on the multiple indexes front, especially wiki.apache.org/solr/…. Do you know of any access control resource for solr? – Hank Gay Dec 30 '08 at 17:16
No, sorry, we're using Solr strictly as service and do access control before going to Solr. – mark Dec 31 '08 at 10:59
So your install of Solr responds to any HTTP request and you rely on URI obfuscation and/or firewalling to prevent 3rd parties from accessing the service, or the service is meant to be open? – Hank Gay Dec 31 '08 at 13:21
Kind of. The Solr service runs within its own environment, can only be reached from the internal network, has no public accessible IP address, if that is what your're asking for. – mark Jan 7 '09 at 23:38
hey @Hank ...how did "wiki.apache.org/solr/MultipleIndexes"; work..??..i am trying to do the same..but it is not working..Please read my question and help me.. "stackoverflow.com/questions/9564812/…; – Ramandeep Singh Mar 5 '12 at 11:15
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.