hdinsight pig作业提交502错误

z0qdvdin  于 2021-06-04  发布在  Hadoop
关注(0)|答案(3)|浏览(427)

向hdinsight集群提交pig作业时出现502错误。关于如何修复集群有什么想法吗?上次我得到这个错误,我删除了集群,并再次创建它,希望找到一个更好的方法来修复错误。下面是我得到的错误:

Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.Library.WebRequest.HttpLayerException: Request failed with code:BadGateway
Content:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>502 - Web server received an invalid response while acting as a gateway or proxy server.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 

# header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;

background-color:#555555;}

# content{margin:0 0 0 2%;position:relative;}

.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>502 - Web server received an invalid response while acting as a gateway or proxy server.</h2>
  <h3>There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server.</h3>
 </fieldset></div>
</div>
</body>
</html>

Server stack trace: 
   at Microsoft.Hadoop.Client.WebHCatRest.HadoopRemoteJobSubmissionRestClient.<SendRequestWithErrorChecking>d__2f.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at Microsoft.Hadoop.Client.WebHCatRest.HadoopRemoteJobSubmissionRestClient.<MakeAsyncJobSubmissionRequest>d__25.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at Microsoft.Hadoop.Client.WebHCatRest.HadoopRemoteJobSubmissionRestClient.<SubmitPigJob>d__14.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at Microsoft.Hadoop.Client.HadoopJobSubmissionPocoClient.RemoteHadoop.RemoteHadoopJobSubmissionPocoClient.<SubmitPigJob>d__1d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at Microsoft.WindowsAzure.Management.HDInsight.JobSubmission.PocoClient.HDInsightJobSubmissionPocoClient.<SubmitPigJob>d__10.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at Microsoft.WindowsAzure.Management.HDInsight.JobSubmission.HDInsightHadoopClient.<CreatePigJobAsync>d__16.MoveNext()

Exception rethrown at [0]: 
   at Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.Library.TaskExtensions.WaitForResult[T](Task`1 task, TimeSpan timeout)
   at Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.Library.TaskExtensions.WaitForResult[T](Task`1 task)
   at Microsoft.WindowsAzure.Management.HDInsight.JobSubmission.HDInsightHadoopClient.CreatePigJob(PigJobCreateParameters pigJobCreateParameters)
2w3rbyxf

2w3rbyxf1#

很抱歉给你添麻烦了,这不应该发生。你还在经历这种行为吗?如果可能的话,您可以通过电子邮件(微软的mwinkle)或通过支持门户打开支持票证与我联系吗

b0zn9rqh

b0zn9rqh2#

msdn上已经提出了这个问题。在轻负载集群上,您似乎遇到了hdinsight和azure存储之间的已知错误。有关修复程序的文档,请参见此链接:https://social.msdn.microsoft.com/forums/en-us/c6bd04e9-e69b-4e96-b2ef-fa8f3bbc3/502-error-in-hbase-cluster?forum=hdinsight

6l7fqoea

6l7fqoea3#

我也有同样的问题,但是关于Hive。为了解决我的问题,我重新启动了head节点上的apache服务。
通过azure启用远程连接
登录到服务器
打开任务管理器
打开“服务”选项卡
按描述排序
用apache hadoop的描述重新启动服务。。。
完成这些步骤后,请尝试提交作业。

相关问题