You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Joey Dale (JIRA)" <ji...@apache.org> on 2014/11/22 17:52:33 UTC

[jira] [Created] (SOLR-6777) Create convenience methods in CloudSolrServer to specify the collection to act on, on a per request basis.

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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org