NOTICE: This version of the NSF Unidata web site (archive.unidata.ucar.edu) is no longer being updated.
Current content can be found at unidata.ucar.edu.

To learn about what's going on, see About the Archive Site.

Re: [thredds] Help with error

  • To: Robert Casey <rob@xxxxxxxxxxxxxxxxxxx>
  • Subject: Re: [thredds] Help with error
  • From: tom cook <tmcook@xxxxxxxx>
  • Date: Wed, 7 Mar 2018 12:00:00 -0800
  • Ironport-phdr: 9a23:bJTa2BwZaKp3zHPXCy+O+j09IxM/srCxBDY+r6Qd2ukfIJqq85mqBkHD//Il1AaPAd2Araocw8Pt8InYEVQa5piAtH1QOLdtbDQizfssogo7HcSeAlf6JvO5JwYzHcBFSUM3tyrjaRsdF8nxfUDdrWOv5jAOBBr/KRB1JuPoEYLOksi7ze+/94HdbglSmDaxfa55IQmrownWqsQYm5ZpJLwryhvOrHtIeuBWyn1tKFmOgRvy5dq+8YB6/ShItP0v68BPUaPhf6QlVrNYFygpM3o05MLwqxbOSxaE62YGXWUXlhpIBBXF7A3/U5zsvCb2qvZx1S+HNsDtU7s6RSqt4LtqSB/wiScIKTg58H3MisdtiK5XuQ+tqwBjz4LRZoyeKfhwcb7Hfd4CR2VBUMZfWSJCDI2hcYUAE/EMMvxEo4TnvVYCsQeyCAuqCejyyjFInHj23agi3uQ9FgHG2RErEM4JsHTTr9X+KaAfUfywzKbUyjXDaPBW1Czg6IfUaRAuvOuAUqxtfsrM0EQiER7OgFuXqYzgJTyV1+INvnCG7+V8T+2vkXQrpB9srTiy3ssjkJHJiZgJxVDE6yp12oE1Jce3SEJjet6kDIFfuD2ZN4txXMMtXXtouCg+yr0Bt5+3ZjQFyJMixxLHdfOHbZaH4hXjVOqLJzd4gHRoc6+8iRaq6UWs1+PxWteu3FpUoCdIlsPAum4C2hHX8MSLVOdx8l+/1TqT0w3f8OJJLEAumabFNpIszaQ8m5ocvEnFAyT4gl/5jLWMeUUh4uWo7uPnbaj4qZKELI90jx3+MrwpmsyiHeQ0KggOUHaf+eS7zLDs51H2QKlTgvItj6nZvp7aKtoBpq6+Hg9Vzp8v5AyiAzu8zdQXgWIHI09fdB2ZkofpJknCIPH+Dfihn1ShiCpnyv7YMrH7HJnAIHzOnK3/cbty70NQ0hQ/wcxH65JREL4BIfbzWkHrtNzfCx80KxC0w+P7B9V60YMeWnmCArKFP6PJrFCE/PwgLPSRZIMNojbyN+Al5+LyjX8+gVIdYamp3YEJZ3+lA/tmOF6UYWfqgtcADGgFpBY+Q/bwhF2fTTFcfWyyU7gi6T4mFYL1RbrFXZ2n1bydwD/pWdpJeX8AF1aNHX70fsOZUP4WLi+eP4hkmz0AVL6ufIsgzg2181zGzO9dKeDZ4DFQnpv42ck9s/fUnzkz7z1vSduUyGGMSW5omWVOSjMrivNRu0t4n0uE1OBzhPtbXYhP4vhOVQQSKJXHw6p3B82kCVGJRcuAVFvzGobuOjo2VN9khoZWO0s=
Thanks Rob, I've been having some hassles working with tomcat, nginx,
docker and and the ufw python firewall thing that ships with CentOS. A
blocked port could certainly be a possibility and I'll start there with my
troubleshooting.
Tom

On Wed, Mar 7, 2018 at 10:12 AM, Robert Casey <rob@xxxxxxxxxxxxxxxxxxx>
wrote:

>
>         I did a little Stack Overflow poking around since this was an
> intriguing error.  If the poster for this issue is correct:
>
> https://stackoverflow.com/questions/39710180/apr-error-730054/
>
>         This is a Tomcat connection error and the code can point to
> something in this list of constants:
>
> https://tomcat.apache.org/tomcat-8.0-doc/api/constant-values.html
>
>         I am not sure about the negative value, but a positive 120001 is
> equal to TIMEUP.
>
>         The -32 might be a APR_POLLHUP, but there are so many 32's it's
> hard to be sure.
>
>         APR is the Apache Portable Runtime and can be used as an option
> for your HTTP connectors and thread management.  I haven't seen this as
> much in use, but it's supposed to be pretty performant because it bypasses
> Java.  I wonder if the docker image has its OpenSSL library properly
> installed?  Could also just be a blocked port that needs to be opened
> through Docker.  More information on Tomcat connectors here.  We typically
> use NIO.
>
>         https://blog.eveoh.nl/2012/04/some-notes-on-tomcat-
> connector-performance/
>
>
>         -Rob
>
>
>
> > On Mar 7, 2018, at 9:24 AM, tom cook <tmcook@xxxxxxxx> wrote:
> >
> > Hi,
> > I'm seeing a bunch of these errors.
> >
> > ERROR - thredds.server.ncss.controller.AbstractNcssController -
> Uncaught exception
> > org.apache.catalina.connector.ClientAbortException:
> java.io.IOException: APR error: -120001
> >
> > and
> >
> > ERROR - thredds.server.ncss.controller.AbstractNcssController -
> Uncaught exception
> > org.apache.catalina.connector.ClientAbortException:
> java.io.IOException: APR error: -32
> >
> > These often precede
> >
> > ERROR - thredds.server.ncss.controller.AbstractNcssController -
> Uncaught exception
> > org.springframework.web.util.NestedServletException: Handler dispatch
> failed; nested exception is java.lang.OutOfMemoryError: Java heap space
> >
> >
> > I understand the OutOfMemoryError error, but I don't understand the APR
> error and can't find those codes listed anywhere.
> > I running the latest TDS docker image (4.6.12-SNAPSHOT).
> >
> > Thanks,
> > Tom
> > _______________________________________________
> > NOTE: All exchanges posted to Unidata maintained email lists are
> > recorded in the Unidata inquiry tracking system and made publicly
> > available through the web.  Users who post to any of the lists we
> > maintain are reminded to remove any personal information that they
> > do not want to be made public.
> >
> >
> > thredds mailing list
> > thredds@xxxxxxxxxxxxxxxx
> > For list information or to unsubscribe,  visit:
> http://www.unidata.ucar.edu/mailing_lists/
>
>
  • 2018 messages navigation, sorted by:
    1. Thread
    2. Subject
    3. Author
    4. Date
    5. ↑ Table Of Contents
  • Search the thredds archives: