Re: Creating a collection in Solr standalone mode using solrj

2018-07-20 Thread Arunan Sugunakumar
Hi Jason and Shawn, As you mentioned, I've mixed up the concept of a collection and core. Thank you for clearing up. Thank you, Arunan On 20 July 2018 at 20:31, Shawn Heisey wrote: > On 7/20/2018 12:09 AM, Arunan Sugunakumar wrote: > > I would like to know whether it is possible to create a c

Re: Creating a collection in Solr standalone mode using solrj

2018-07-20 Thread Shawn Heisey
On 7/20/2018 12:09 AM, Arunan Sugunakumar wrote: > I would like to know whether it is possible to create a collection in Solr > through SolrJ. I tried to create and it throws me an error saying that > "Solr instance is not running in SolrCloud mode. A "collection" is a SolrCloud concept.  Collecti

Re: Creating a collection in Solr standalone mode using solrj

2018-07-20 Thread Jason Gerlowski
Hi Arunan, Solr runs in one of two main modes: "Cloud" mode or "Standalone" mode. Collections can only be created in Cloud mode. Standalone mode doesn't allow creation of collections; it uses cores instead. From your error message above, it looks like the problem is that you're trying to create

Creating a collection in Solr standalone mode using solrj

2018-07-19 Thread Arunan Sugunakumar
Hi, I would like to know whether it is possible to create a collection in Solr through SolrJ. I tried to create and it throws me an error saying that "Solr instance is not running in SolrCloud mode. " I am trying to upgrade a system to use solr which used lucene library in the past. In lucene, eve