xception.ErrorCode.SERVER_ERROR,
> e);
> >
> > }
> >
> > keyGen.initialize(512);
> >
> >
> >
> > I pulled down the Solr code, changed the hard-coded value to 1024,
> rebuilt
> > it, and this now everything seems to work great.
> >
> >
> >
> > Would this be a valid code change to request? I'm happy to create the
> JIRA
> > ticket and supply a patch file.
> >
> >
> >
> > Thanks,
> >
> > Jeremy
>
--
Regards,
*Adnan Yaqoob*
>>
> >> With Regards
> >> Aman Tandon
> >>
> >> On Mon, Mar 23, 2015 at 9:09 PM, Vishal Swaroop
> >> wrote:
> >>
> >> > Hi,
> >> >
> >> > We are planning to configure new linux server for latest SOLR release
> >> i.e.
> >> > 5.0.0
> >> >
> >> > Please suggest which Tomcat version will be best compatible with
> SOLR5...
> >> > latest Tomcat release is 8.0
> >> >
> >> > Thanks
> >> >
> >>
>
--
Regards,
*Adnan Yaqoob*
Yes. Just before your email I was able to figure out. My project was set to
user solrj 4.10.3 everything was working fine except cloud so I didn't
noticed.
After I switched to Solrj 5 it's working now
Thanks everyone for supporting
ind any command for this. Please help.
>
--
Regards,
*Adnan Yaqoob*
; actually create the collection.
>
> What steps did you follow to create the collection in SolrCloud? It's
> possible you have the wrong ZK root somehow I suppose.
>
> Best,
> Erick
>
> On Wed, Mar 18, 2015 at 12:32 PM, Adnan Yaqoob wrote:
> > I'm ge
aultCollection("gettingstarted");
SolrInputDocument doc = new SolrInputDocument();
doc.addField("id", id);
doc.addField("name", name);
server.add(doc);
server.commit();
Not sure what I'm missing. My Zookeeper is runnin
I am using Solrcloud with zookeeper setup. but when I try to make query using
following code snippet I get exception
code:
CloudSolrServer server = new CloudSolrServer("localhost:2181");
server.setDefaultCollection("gettingstarted");
server.connect();
SolrQuery query = new SolrQuery();