当我在独立模式下运行以下内容时,
15/12/06 22:45:45 INFO client.RMProxy: Connecting to ResourceManager at
localhost/127.0.0.1:8032
15/12/06 22:45:46 INFO ipc.Client: Retrying connect to server:
localhost/127.0.0.1:8032.
Already tried 0 time(s); retry policy is
RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
15/12/06 22:45:47 INFO ipc.Client: Retrying connect to server: localhost/127.0.0.1:8032.
Already tried 1 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10,
sleepTime=1000 MILLISECONDS)
它给了我以下错误,
def fit_func(x,a,b,c):
return a * (x)**b + c
我使用了所有默认设置。我正在尝试以下页面中提到的用于独立模式的相同步骤。 https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/SingleCluster.html#Standalone_Operation
注意:根据我的理解,我们不需要在独立模式下启动任何守护进程。
答案 0 :(得分:1)
我发现了这个问题。问题出在mapred-site.xml上。在独立模式下,mapreduce.framework.name属性应该是本地的。我在那里提到纱线。一旦我改变它,它工作正常。