Re: /solr/admin/ping causing exceptions in log?

2016-02-09 Thread Shawn Heisey
On 2/9/2016 7:01 AM, Daniel Pool wrote: > Did you ever get to the bottom of this issue? I'm encountering exactly the > same problem with haproxy 1.6.2; health checks throwing occasional errors and > the connection being closed by haproxy. Your message did not include any quotes from the original

Re: /solr/admin/ping causing exceptions in log?

2016-02-09 Thread Daniel Pool
Nathan, Did you ever get to the bottom of this issue? I'm encountering exactly the same problem with haproxy 1.6.2; health checks throwing occasional errors and the connection being closed by haproxy. Daniel Pool This electronic message contains information from CACI International Inc or subs

Re: HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Steven White
I found the issue. With GET, the legacy code I'm calling into was written like so: clientResponse = resource.contentType("application/atom+xml").accept("application/atom+xml").get(); This is a bug, and should have been: clientResponse = resource.accept("application/atom+xml").get(); Go

Re: HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Steven White
Yes, my application is in Java, no I cannot switch to SolrJ because I'm working off legacy code for which I don't have the luxury to refactor.. If my application is sending the wrong Content-Type HTTP header, which part is it and why the same header is working for the other query paths such as: "/

Re: HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Shawn Heisey
On 8/3/2015 11:34 AM, Steven White wrote: > Hi Everyone, > > I cannot figure out why I'm getting HTTP Error 500 off the following code: > Ping query caused exception: Bad contentType for search handler > :application/atom+xml Your application is sending an incorrect Content-Type HTTP header tha

HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Steven White
Hi Everyone, I cannot figure out why I'm getting HTTP Error 500 off the following code: // Using: org.apache.wink.client String contentType = "application/atom+xml"; URI uri = new URI("http://localhost:8983"; + "/solr/db/admin/ping?wt=xml");

Re: /solr/admin/ping causing exceptions in log?

2014-07-28 Thread Nathan Neulinger
almost instantaneous reset sent by the client. I'm only seeing this on traffic to/from haproxy checks. If I do a simple: while [ true ]; do curl -s http://host:8983/solr/admin/ping; done from the same box, that flood runs with generally 10-20ms request times and zero errors. I won't

Re: /solr/admin/ping causing exceptions in log?

2014-07-27 Thread Shawn Heisey
ffic to/from haproxy checks. If I do a simple: > > while [ true ]; do curl -s http://host:8983/solr/admin/ping; done > > from the same box, that flood runs with generally 10-20ms request times > and zero errors. I won't claim to understand what's going on here, but i

Re: /solr/admin/ping causing exceptions in log?

2014-07-27 Thread Nathan Neulinger
g this on traffic to/from haproxy checks. If I do a simple: while [ true ]; do curl -s http://host:8983/solr/admin/ping; done from the same box, that flood runs with generally 10-20ms request times and zero errors. -- Nathan On 07/27/2014 07:12 PM, Nathan Neulinger wrote: Cool. That's li

Re: /solr/admin/ping causing exceptions in log?

2014-07-27 Thread Nathan Neulinger
e GET request, acked, then the http/1.1 200 Ok response from Solr, a single ack, and then an almost instantaneous reset sent by the client. I'm only seeing this on traffic to/from haproxy checks. If I do a simple: while [ true ]; do curl -s http://host:8983/solr/admin/ping; done from

Re: /solr/admin/ping causing exceptions in log?

2014-07-27 Thread Nathan Neulinger
Cool. That's likely exactly it, since I don't have one set, it's using the check interval, and occasionally must just be too short. Thank you! -- Nathan I assume that this is the httpchk config to make sure that the server is operational. If so, you need to increase the "timeout check" valu

Re: /solr/admin/ping causing exceptions in log?

2014-07-27 Thread Shawn Heisey
On 7/26/2014 5:15 PM, Nathan Neulinger wrote: > Recently deployed haproxy in front of my solr instances, and seeing a > large number of exceptions in the logs now... Example below. I can pound > the server with requests against /solr/admin/ping via curl, with no > obvious issue, but

Re: /solr/admin/ping causing exceptions in log?

2014-07-26 Thread Nathan Neulinger
, Jul 26, 2014 at 6:15 PM, Nathan Neulinger wrote: > Recently deployed haproxy in front of my solr instances, and seeing a > large number of exceptions in the logs now... Example below. I can pound > the server with requests against /solr/admin/ping via curl, with no obvious > is

/solr/admin/ping causing exceptions in log?

2014-07-26 Thread Nathan Neulinger
Recently deployed haproxy in front of my solr instances, and seeing a large number of exceptions in the logs now... Example below. I can pound the server with requests against /solr/admin/ping via curl, with no obvious issue, but the haproxy checks appear to be aggravating something. Solr

Re: What is 503 Status For Admin Ping

2013-05-16 Thread Shawn Heisey
path=/admin/ping params={action=status&_=1368715926563&wt=json} status=503 QTime=0 When a ping request failed, older Solr versions logged a huge java stacktrace and an error, and most of the time that information was not very helpful. Can you share your ping handler definition? I wou

Re: What is 503 Status For Admin Ping

2013-05-16 Thread Furkan KAMACI
; > I get that status: > > > > INFO: [collection1] webapp=/solr path=/admin/ping > > params={action=status&_=1368715926563&wt=json} status=503 QTime=0 > > > > > > When I click ping at (just once time )admin page I get that: > > > > May

Re: What is 503 Status For Admin Ping

2013-05-16 Thread Yago Riveiro
at example folder of Solr 4.2.1 When I > start up it just with: > > java -jar start.jar > > I get that status: > > INFO: [collection1] webapp=/solr path=/admin/ping > params={action=status&_=1368715926563&wt=json} status=503 QTime=0 > > > When I click pi

What is 503 Status For Admin Ping

2013-05-16 Thread Furkan KAMACI
I have made some little changes at example folder of Solr 4.2.1 When I start up it just with: java -jar start.jar I get that status: INFO: [collection1] webapp=/solr path=/admin/ping params={action=status&_=1368715926563&wt=json} status=503 QTime=0 When I click ping at (just once tim

Oddity in /admin/ping

2013-01-03 Thread Shawn Heisey
I am seeing something a little weird in Solr branch_4x. It looks like 3.5 may have a similar issue, but I'd like to concentrate on the newer version for now. I am sending a request to /admin/ping. This in turn calls a request handler (using qt) that initiates a distributed search.

Re: error in log INFO org.apache.solr.core.SolrCore - webapp=/solr path=/admin/ping params={} status=0 QTime=1

2011-03-08 Thread Chris Hostetter
: I am using solr under jboss, so this might be more of a jboss config : issue, not really sure. But my logs keep getting spammed, because : solr sends it as ERROR [STDERR] INFO org.apache.solr.core.SolrCore - : webapp=/solr path=/admin/ping params={} status=0 QTime=1 : : Has anyone seen this

error in log INFO org.apache.solr.core.SolrCore - webapp=/solr path=/admin/ping params={} status=0 QTime=1

2011-03-03 Thread Mike Franon
I am using solr under jboss, so this might be more of a jboss config issue, not really sure. But my logs keep getting spammed, because solr sends it as ERROR [STDERR] INFO org.apache.solr.core.SolrCore - webapp=/solr path=/admin/ping params={} status=0 QTime=1 Has anyone seen this and found a

Re: param "version" and diferences in /admin/ping response

2009-11-26 Thread Nestor Oviedo
Tank you Chris... I didn't see it. I was looking for something related with the PingRequestHandler. Regards. Nestor Oviedo On Wed, Nov 25, 2009 at 7:09 PM, Chris Hostetter wrote: > : Hi everyone! > : Can anyone tell me what's the meaning of the param "version" ?? There > : isn't anything about it

Re: param "version" and diferences in /admin/ping response

2009-11-25 Thread Chris Hostetter
: Hi everyone! : Can anyone tell me what's the meaning of the param "version" ?? There : isn't anything about it in the Solr documentation. http://wiki.apache.org/solr/XMLResponseFormat#A.27version.27 -Hoss

param "version" and diferences in /admin/ping response

2009-11-25 Thread Nestor Oviedo
Hi everyone! Can anyone tell me what's the meaning of the param "version" ?? There isn't anything about it in the Solr documentation. When I invoke the /admin/ping url, if the version value is between 0 and 2.1, the response looks like this:

Suppressing logging for /admin/ping requests

2009-01-21 Thread Todd Breiholz
Is there anyway to suppress the logging of the /admin/ping requests? We have HAProxy configured to do health checks to this URI every couple of seconds and it is really cluttering our logs. I'd still like to see the logging from the other requestHandlers. Thanks! Todd

Re: Admin ping

2008-03-07 Thread Chris Hostetter
: another ant target that creates an example dir outside of the tree? The example is just an example - most of our users will never run "ant example" anyway (it's done before the release is packaged up) making "ant example" copy the example configs to ./build/example and the only packaging tht

Re: Admin ping

2008-03-07 Thread Benson Margulies
Suggestion, another ant target that creates an example dir outside of the tree? I was a little bit surprised by the following scenario: 1) svn co 2) ant example 3) edit schema.xml 4) svn st In the future, I'll run cp -r before I start messing with the example. I'm +1 for the work directory. I

Re: Admin ping

2008-03-07 Thread Yonik Seeley
Jetty unpacks the war in a sub-dir of /tmp by default (which can get cleaned by other things). https://issues.apache.org/jira/browse/SOLR-118 devs: any reason we shouldn't create example/work and make sure it gets in the distributions? -Yonik On Fri, Mar 7, 2008 at 7:19 AM, Doug Steigerwald <[E

Admin ping

2008-03-07 Thread Doug Steigerwald
Came in this morning to find some alerts that the admin interface has basically died. Everything was fine until about 4am. No updates or queries going on at that time (this is a QA machine). Anyone know why it might die like this? Solr 1.3 trunk build from Jan 23rd, 4GB heap size, 4x3.2GHz X