[ 
https://issues.apache.org/jira/browse/AMBARI-17991?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hurley reopened AMBARI-17991:
--------------------------------------

Causes 2 severe losses of service:

- Web client requests fail with the following exception:
{code:title=FLUME metrics.json}
com.google.gson.JsonSyntaxException: 
com.google.gson.stream.MalformedJsonException: Invalid escape sequence at line 
221 column 70 path $..[0].metrics..
{code}

- When deploying views (I'm guessing views is using Jetty 9 to compile while we 
use Jetty 8 to deploy as of this patch)
{code}
05 Aug 2016 18:00:03,006  WARN [main] AbstractLifeCycle:204 - FAILED 
org.apache.ambari.server.controller.AmbariHandlerList@749a3925: 
java.lang.NoSuchFieldError: IS_SECURITY_ENABLED
java.lang.NoSuchFieldError: IS_SECURITY_ENABLED
  at 
org.apache.jasper.compiler.JspRuntimeContext.<init>(JspRuntimeContext.java:197)
  at org.apache.jasper.servlet.JspServlet.init(JspServlet.java:150)
  at org.eclipse.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:532)
  at org.eclipse.jetty.servlet.ServletHolder.doStart(ServletHolder.java:344)
  at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
  at 
org.eclipse.jetty.servlet.ServletHandler.initialize(ServletHandler.java:793)
  at 
org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:265)
  at 
org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1242)
  at 
org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:717)
  at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:494)
  at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
  at 
org.eclipse.jetty.server.handler.HandlerCollection.doStart(HandlerCollection.java:229)
  at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
  at 
org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:95)
  at org.eclipse.jetty.server.Server.doStart(Server.java:282)
  at 
org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:64)
  at org.apache.ambari.server.controller.AmbariServer.run(AmbariServer.java:616)
  at 
org.apache.ambari.server.controller.AmbariServer.main(AmbariServer.java:925)
{code}

> Ambari agent unable to register with server when server response is too big
> ---------------------------------------------------------------------------
>
>                 Key: AMBARI-17991
>                 URL: https://issues.apache.org/jira/browse/AMBARI-17991
>             Project: Ambari
>          Issue Type: Bug
>          Components: ambari-server
>    Affects Versions: 2.4.0
>            Reporter: Dmytro Sen
>            Assignee: Dmytro Sen
>            Priority: Blocker
>             Fix For: 2.4.0
>
>         Attachments: AMBARI-17991.patch, AMBARI-17991_2.patch
>
>
> Ambari agent is unable to register with ambari server, failing with:
> {code}
> INFO 2016-06-09 11:22:00,964 security.py:147 - Encountered communication 
> error. Details: SSLError('The read operation timed out',)
> ERROR 2016-06-09 11:22:00,965 Controller.py:196 - Unable to connect to: 
> https://localhost:8441/agent/v1/register/dvtcbdqd02.corp.cox.com
> Traceback (most recent call last):
>   File "/usr/lib/python2.6/site-packages/ambari_agent/Controller.py", line 
> 150, in registerWithServer
>     ret = self.sendRequest(self.registerUrl, data)
>   File "/usr/lib/python2.6/site-packages/ambari_agent/Controller.py", line 
> 423, in sendRequest
>     raise IOError('Request to {0} failed due to {1}'.format(url, 
> str(exception)))
> IOError: Request to https://server1:8441/agent/v1/register/host1 failed due 
> to Error occured during connecting to the server: The read operation timed out
> ERROR 2016-06-09 11:22:00,965 Controller.py:197 - Error:Request to 
> https://server1:8441/agent/v1/register/host1 failed due to Error occured 
> during connecting to the server: The read operation timed out
> {code}
> The problem was fixed by modifying the timeout in  
> /usr/lib/python2.6/site-packages/ambari_agent/security.py:
> {code}
> def create_connection(self):
>     if self.sock:
>       self.sock.close()
>     logger.info("SSL Connect being called.. connecting to the server")
>     sock = socket.create_connection((self.host, self.port), 120)
> {code}
> Use Jetty 8 instead of 9 in Ambari 2.4.0



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to