Re: Solrcloud admin not asking for login

2018-09-22 Thread Sushant Vengurlekar
Any one have any ideas as to what could be going wrong. Thank you On Fri, Sep 21, 2018 at 10:43 PM Sushant Vengurlekar < svengurle...@curvolabs.com> wrote: > I followed the guide over here to setup basic auth for solrcloud > > http://lucene.apache.org/solr/guide/7_4/basic

Solrcloud admin not asking for login

2018-09-21 Thread Sushant Vengurlekar
I followed the guide over here to setup basic auth for solrcloud http://lucene.apache.org/solr/guide/7_4/basic-authentication-plugin.html Our solrcloud version is 7.4. We have a 3 ensemble zookeeper with 3 solr nodes. I restarted the zookeepers and the solr nodes but I still don't get prompted

Re: Solrcloud collection file location on zookeeper

2018-08-31 Thread Sushant Vengurlekar
Any idea where this database is stored on the file system. I don’t want to read it but just know where it resides. Thanks On Fri, Aug 31, 2018 at 7:15 AM Shawn Heisey wrote: > On 8/30/2018 10:15 PM, Sushant Vengurlekar wrote: > > Where does zookeeper store the collection info

Solrcloud collection file location on zookeeper

2018-08-30 Thread Sushant Vengurlekar
Where does zookeeper store the collection info on local filesystem on zookeeper? Thank you

Dataimport not working on solrcloud

2018-08-20 Thread Sushant Vengurlekar
I have a dataimport working on standalone solr instance but the same doesn't work on solrcloud. I keep on hitting this error Full Import failed:java.lang.RuntimeException: java.lang.RuntimeException: org.apache.solr.handler.dataimport.DataImportHandlerException: Exception in invoking url The

Re: Question about updating indexes on solrcloud with single instance solr

2018-08-20 Thread Sushant Vengurlekar
gt; build out the collection. > > There's no way to say "reconcile this arbitrary index I built with > stand-alone with my SolrCloud collection", so it'a all manual. > > Best, > Erick > > On Mon, Aug 20, 2018 at 12:38 PM, Sushant Vengurlekar > wrote: > > I hav

Question about updating indexes on solrcloud with single instance solr

2018-08-20 Thread Sushant Vengurlekar
I have a question regarding updating the indexes on solrcloud with indexes from a standalone solr server. We have a solrcloud which is running. We have couple of cores on that standalone solr instance which are also present on the solrcloud as collections. I need to bring in updated indexes from

Authentication between solr-exporter and solrcloud

2018-08-15 Thread Sushant Vengurlekar
I have followed this guide for monitoring the solrcloud https://lucene.apache.org/solr/guide/7_3/monitoring-solr-with-prometheus-and-grafana.html I have basic authentication enabled for the solrcloud. How do I configure the solr-exporter to authenticate with the set username and password. Thank

Re: increase timeout before zookeeper times out on startup

2018-07-06 Thread Sushant Vengurlekar
How do I subscribe to the zk mailing list? Thanks On Fri, Jul 6, 2018 at 8:11 AM Shawn Heisey wrote: > On 7/6/2018 6:20 AM, Sushant Vengurlekar wrote: > > I am setting up zookeeper ensemble on aws ecs and due to the difference > in > > time at which all the zookeeper

Re: Use fqdn instead of IP address with zookeeper ensemble

2018-07-06 Thread Sushant Vengurlekar
er.1=zk-1.example.local:2888:3888 > server.2=zk-2.example.local:2888:3888 > server.3=zk-3.example.local:2888:3888 > > > On Fri, Jul 6, 2018 at 3:03 PM Sushant Vengurlekar < > svengurle...@curvolabs.com> wrote: > > > I want to use a FQDN of each of the zookeeper instances inst

Use fqdn instead of IP address with zookeeper ensemble

2018-07-06 Thread Sushant Vengurlekar
I want to use a FQDN of each of the zookeeper instances instead of the IP address in the zookeeper config. has anyone done this before and can point to some examples. Thank you

increase timeout before zookeeper times out on startup

2018-07-06 Thread Sushant Vengurlekar
I am setting up zookeeper ensemble on aws ecs and due to the difference in time at which all the zookeeper instances come up they timeout during the election process and all of them fail one after another. how can I make sure that there is some delay before they all start or how to increase the

Re: Solrcloud collection sharding and querying

2018-07-02 Thread Sushant Vengurlekar
u need and let Solr do the rest > of the work. Why do you think you need to specify how docs > are routed based on some field? > > Best, > Erick > > On Mon, Jul 2, 2018 at 6:06 PM, Sushant Vengurlekar > wrote: > > I want to split a collection based on one field. How do I do

Solrcloud collection sharding and querying

2018-07-02 Thread Sushant Vengurlekar
I want to split a collection based on one field. How do I do it and then query based off that. Ex: collection1. Field to split off col1 Thank you

Re: Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
aware. > > If you were using "CloudSolrClient" in SolrJ, it _is_ Zookeeper > aware and you would not need a load balancer. But again > that's because it knows the cluster topology (it registers its own > watchers) and can "do the right thing" if something goes a

Re: Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
f you were using "CloudSolrClient" in SolrJ, it _is_ Zookeeper > aware and you would not need a load balancer. But again > that's because it knows the cluster topology (it registers its own > watchers) and can "do the right thing" if something goes away. > Zook

Re: Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
an > probably keep a list of Solr nodes in configuration and randomly choose > one. A better implementation would be to setup a load balancer and put all > Solr nodes behind it and query the load balancer URL in your application. > > On Sat, Jun 30, 2018 at 7:31 AM Sushant Vengurleka

Querying in Solrcloud

2018-06-29 Thread Sushant Vengurlekar
I have a question regarding querying in solrcloud. I am working on php code to query solrcloud for search results. Do I send the query to zookeeper or send it to a particular solr node? How does the querying process work in general. Thank you

Re: How to split index more than 2GB in size

2018-06-20 Thread Sushant Vengurlekar
se time requirements. > > Best, > Erick > > On Wed, Jun 20, 2018 at 10:39 AM, Sushant Vengurlekar > wrote: > > The index size is small because this is my local development copy. The > > production index is more than 20GB. So I am working on getting the index >

Re: How to split index more than 2GB in size

2018-06-20 Thread Sushant Vengurlekar
t; Best, > Erick > > On Wed, Jun 20, 2018 at 9:40 AM, Sushant Vengurlekar > wrote: > > How can I resolve this error? > > > > On Wed, Jun 20, 2018 at 9:11 AM, Alexandre Rafalovitch < > arafa...@gmail.com> > > wrote: > > > >> This seem

Re: How to split index more than 2GB in size

2018-06-20 Thread Sushant Vengurlekar
How can I resolve this error? On Wed, Jun 20, 2018 at 9:11 AM, Alexandre Rafalovitch wrote: > This seems more related to an old index upgraded to latest Solr rather than > the split itself. > > Regards, > Alex > > On Wed, Jun 20, 2018, 12:07 PM Sushant Vengu

Re: How to split index more than 2GB in size

2018-06-20 Thread Sushant Vengurlekar
, > Alex > > On Wed, Jun 20, 2018, 12:07 PM Sushant Vengurlekar, < > svengurle...@curvolabs.com> wrote: > > > Thanks for the reply Alessandro! Appreciate it. > > > > Below is the full request and the error received > > > > curl ' > > >

Re: How to split index more than 2GB in size

2018-06-20 Thread Sushant Vengurlekar
Thanks for the reply Alessandro! Appreciate it. Below is the full request and the error received curl ' http://localhost:8081/solr/admin/collections?action=SPLITSHARD=dev-transactions=shard1 ' { "responseHeader":{ "status":500, "QTime":7920}, "success":{

How to split index more than 2GB in size

2018-06-19 Thread Sushant Vengurlekar
How do I split indexes which are more than 2GB in size. I get this error when I try to use SPLITSHARD on a collection of size more than 2GB 2018-06-20 02:25:49.810 ERROR (qtp1025799482-19) [ ] o.a.s.s.HttpSolrCall null:org.apache.solr.common.SolrException: SPLITSHARD failed to invoke SPLIT

Re: Solrcloud doesn't like relative path

2018-06-19 Thread Sushant Vengurlekar
der them, not > a relative path _on Zookeeper_. > > So try putting your synonyms_vendors.txt in > configsets/conf/helpers/synonyms_vendors.txt, then > reference it as helpers/synonyms_vendors.txt. > > Best, > Erick > > On Tue, Jun 19, 2018 at 10:28 AM, Sushant Vengurlek

Re: Import data from standalone solr into a solrcloud collection

2018-06-19 Thread Sushant Vengurlekar
Sushant > > replicationFactor defaults to 1 and is not mandatory. > numShards is mandatory, where you’d equate it to 1. > > Aroop > > > On Jun 19, 2018, at 12:29 PM, Sushant Vengurlekar < > svengurle...@curvolabs.com> wrote: > > > > Thank you Eric. > > > >

Re: Import data from standalone solr into a solrcloud collection

2018-06-19 Thread Sushant Vengurlekar
; > After verifying your setup, use the Collections SPLITSHARD command. > > Best, > Erick > > On Tue, Jun 19, 2018 at 10:50 AM, Sushant Vengurlekar > wrote: > > I created a solr cloud collection with 2 shards and a replication factor > of > > 2. How can

Import data from standalone solr into a solrcloud collection

2018-06-19 Thread Sushant Vengurlekar
I created a solr cloud collection with 2 shards and a replication factor of 2. How can I load data into this collection which I have currently stored in a core on a standalone solr. I used the conf from this core on standalone solr to create the collection on the solrcloud Thank you

Solrcloud doesn't like relative path

2018-06-19 Thread Sushant Vengurlekar
I have this line in my schema.xml synonyms="../../helpers/synonyms_vendors.txt" My current folder structure is solr - helpers synonyms_vendors.txt -configsets - collection1 -conf schema.xml solrconfig.xml I get the below error