我有一个本地单节点托管的 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 启用了防火墙。提前致谢。帮助将不胜感激