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

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

     [ https://issues.apache.org/jira/browse/SOLR-6777?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shawn Heisey updated SOLR-6777:
-------------------------------
    Attachment: SOLR-6777.patch

First crack at a patch.

I opted to keep the number of new methods as small as I could by only duplicating the most expressive version of each overloaded method.


> 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
>              Labels: newbie
>         Attachments: SOLR-6777.patch
>
>
> 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