Re: Solr 8.3

2020-01-02 Thread Sankar Panda
Hi Vishal, You can .go to the collection in admin console.mannually changed the ip address as you want.Remove the replica and add it as per your requirements.This option provides by the solr cloud. Thanks Sankar panda On Fri, Jan 3, 2020, 11:33 vishal patel wrote: > I do not want to change the

Re: Solr 8.3

2020-01-02 Thread vishal patel
I do not want to change the IP of the existing replica. I want to fix the IP for the first time creating a collection. I have 4 machines. my IP of each machine is below machine1 10.38.33.28 machine2 10.38.33.29 machine3 10.38.33.30 machine4 10.38.33.31 I have created solr instance on each

Re: Performance of Bulk Importing TSV File in Solr 8

2020-01-02 Thread Mikhail Khludnev
Hello, Joseph. This rate looks good to me, although if the node is idling and has a plenty of free RAM, you can dissect this file by unix tools and submit these partitions for import in parallel. Hanging connection seems like a bug. On Thu, Jan 2, 2020 at 10:09 PM Joseph Lorenzini wrote: > Hi

Performance of Bulk Importing TSV File in Solr 8

2020-01-02 Thread Joseph Lorenzini
Hi all, I have TSV file that contains 1.2 million rows. I want to bulk import this file into solr where each row becomes a solr document. The TSV has 24 columns. I am using the streaming API like so: curl -v '

Re: understanding solr metrics

2020-01-02 Thread Edward Ribeiro
Just adding some tidbits of info to Jason's answer: meanRate measures the mean rate of event (requests) since the timer got created. See: https://metrics.dropwizard.io/3.1.0/apidocs/com/codahale/metrics/Timer.html#getMeanRate-- Particularly, I don't think this metric is all that meaningful for

Re: Facing jwt authentication problem using solr 8.1.1

2020-01-02 Thread Jan Høydahl
Don’t think so - you need to register Solr as a client with your IdP according to the docs. Jan > 2. jan. 2020 kl. 13:01 skrev lakshgupta29 : > > Can i use GitHub Provider authentication for admin UI support. > > > > -- > Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: understanding solr metrics

2020-01-02 Thread Jason Gerlowski
Hi Akhil, I'm not an expert on these metrics, but the way I've been reading them: "meanRate" is a measure of how many requests come in per some unit of time. It has nothing to do with how long individual requests take. "mean_ms" is the average time taken by requests (in milliseconds). Hope

understanding solr metrics

2020-01-02 Thread akhil dutt
Hi, I'm trying to understand solr metrics and was looking at request/response dispatch rate. I want to understand what meanRate signify. As per below values, am I to suppose that each request takes 300 seconds (1/ meanRate )? org.eclipse.jetty.server.handler.DefaultHandler.dispatches: { -

Re: Solr 8.3

2020-01-02 Thread Erick Erickson
No, you cannot change the IP of an existing replica. Either do as Sankar mentioned when you first create the collection or use the MOVREPLICA collections API command. MOVEREPLICA has existed for quite a long time, but if it’s not available, you can do the same with the ADDREPLICA command to

Re: Solr 8.3

2020-01-02 Thread Sankar Panda
Hi Vishal, You can create a empty nodeset and manually configure in the collection as desired in the admin page Thanks Sankar Panda On Thu, Jan 2, 2020, 14:36 vishal patel wrote: > My created collection in solr cloud below > > 10.38.33.24 is shard and its replica is 10.38.33.27. > 10.38.33.227

Re: Facing jwt authentication problem using solr 8.1.1

2020-01-02 Thread lakshgupta29
Can i use GitHub Provider authentication for admin UI support. -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr 8.3

2020-01-02 Thread vishal patel
My created collection in solr cloud below [cid:4461af25-67be-4647-b9e5-766d3e2a2602] 10.38.33.24 is shard and its replica is 10.38.33.27. 10.38.33.227 is shard and its replica is 10.38.33.219. I want to create a new collection on the Same. can not change the shard IP for the new collection. How

Re: Solr 8.3

2020-01-02 Thread sudhir kumar
sample url to create collection: http//host:8080/solr/admin/collections?action=CREATE=collectionname=2=3=2= host:8080_solr,host:8080_solr,host:8080_solr,host:8080_solr =collectionconfig On Thu, Jan 2, 2020 at 1:56 PM sudhir kumar wrote: > Hey Vishal, > > You can use createNodeSet property

Re: Solr 8.3

2020-01-02 Thread sudhir kumar
Hey Vishal, You can use createNodeSet property while creating collection which will allows you to create shards on specified IP. /admin/collections?action=CREATE=*name*=*number* =*number*&*maxShardsPerNode*=*number*&*createNodeSet*= *nodelist*=*configname* Thanks, Sudhir On Thu, Jan 2, 2020

Solr 8.3

2020-01-02 Thread vishal patel
When I am creating 2 shards and 2 replicas using admin panel, automatic assign a shard or replica to any IP. I want to make the specific shard or replica to solr instance at the time of creating a collection. Can I? Regards, Vishal