0

我有一个本地单节点托管的 hadoop。我的名字和datanode是一样的。

我正在尝试使用 python 库创建一个文件。

self.hdfs = PyWebHdfsClient(host='192.168.231.130', port='9870', user_name='kush',
                                    base_uri_pattern="http://192.168.231.130:9870/webhdfs/v1/", timeout=1)
        if not self.hdfs.exists_file_dir(path):
            self.hdfs.make_dir(path)
error-->self.hdfs.create_file("{}/results_{}.csv".format(path, name),
                              'word,negative,neutral,positive,compound\n')

该文件存在并且 make_dir 正常工作。但是我的创建文件不断抛出错误我得到的异常是:

requests.exceptions.ConnectionError: HTTPConnectionPool(host='kush', port=9864): Max retries exceeded with url: /webhdfs/v1/user/kush/data/results_4104.csv?op=CREATE&user.name=kush&namenoderpcaddress=192.168.231.130:9000&createflag=&createparent=true&overwrite=false (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000001F8C3FB1C40>: Failed to establish a new connection: [WinError 10061] No connection could be made because the target machine actively refused it'))

我已经为 9000 、 9870 和 9864 启用了防火墙。提前致谢。帮助将不胜感激

4

1 回答 1

0

显然我只需要将“kush”添加到 /etc/hosts 但一个问题是我的主机名和机器名相同,所以我更改了我的机器名,然后将它添加到我的 /etc/hosts Windows 和 linux 和瞧!

于 2020-08-03T14:40:58.137 回答