Joey Dale created SOLR-6777:
-------------------------------

             Summary: Create convenience methods in CloudSolrServer to specify 
the collection to act on, on a per request basis.
                 Key: SOLR-6777
                 URL: https://issues.apache.org/jira/browse/SOLR-6777
             Project: Solr
          Issue Type: Improvement
          Components: clients - java
            Reporter: Joey Dale
            Priority: Minor


As a user of solrcloud as a NoSQL datastore, with components of my complex data 
model stored in many collections, I would like to easily pass in the collection 
name for each query/add/delete statement via an overloaded method that accepts 
a String equal to the name of the collection.

Currently there exists methods to set the default collection for a 
CloudSolrServer instance. This losses its luster in a multithreaded 
environment. The work arounds to date are passing in a SolrParam on the Update 
handlers, but on the Query handles you are forced to basically maintain a 
CloudSolrServer instance for each collection you want to interact with, and 
never call setDefaultCollect after creation.

Here are some examples:

CloudSolrServer solr = new CloudSolr(zkHost);
solr.addBeans(beans, collection);
solr.addBeans(beans, collection, commitWithin);
solr.commit(collection, commitWithin);
solr.optimize(collection);

SolrQuery query = new SolrQuery();
query.setQuery("*:*");
QueryResponse rsp = solr.query(query, collection);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to